Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jwalker

Pages: 1 ... 21 22 [23] 24 25 ... 45
331
Computer Usage and Setup Help / Re: odd network problem
« on: May 27, 2012, 06:02:13 pm »
yea, but kerm absolutely hates the Nspire

332
Computer Usage and Setup Help / Re: odd network problem
« on: May 27, 2012, 05:53:39 pm »
I wish there was gossamer for Nspre, or even prizm

333
Lua / Re: Updating WZGUILib
« on: May 27, 2012, 05:53:07 pm »
Just a general update: The textbox is almost complete but i need an idea on how to start out the track bar.

334
Computer Usage and Setup Help / Re: odd network problem
« on: May 27, 2012, 05:45:00 pm »
lol.
anyway reseting the modem worked.

335
Computer Usage and Setup Help / Re: odd network problem
« on: May 27, 2012, 05:41:31 pm »
Ill try to reset the modem first then the router.

and nick, IE is awesome!
*jwalker runs

336
Computer Usage and Setup Help / Re: odd network problem
« on: May 27, 2012, 05:32:53 pm »
lan

337
Computer Usage and Setup Help / odd network problem
« on: May 27, 2012, 05:29:08 pm »
Here is the issues:
1. when trying to access a website, most of the times i have to refresh my browser multiple times to get it to load, I get the standard "Internet Explorer cannot display the webpage"
2. I know it is not my computer because this happens on the other computer and my Ipod.

Could it be in my network or is it just some ISP thing and what should i do.

339
Miscellaneous / Re: Need help to choose something
« on: May 24, 2012, 11:34:20 pm »
2

340
I agree. once you know how to operate one computer, you know how to operate them all.

341
no matter what i do, they always ask if im hacking
no.1 happened before also
someone also asked me to put doom from my nspire to their 84, i found it funny

342
Lua / Re: Updating WZGUILib
« on: May 23, 2012, 04:30:16 pm »
here is textbox V3 beta with smooth scrolling
im also going to add a maxChar property and will have the ability to actualy edit the textbox without having to backspace and loose everything
after this is complete i will also add passwordChar and multiline
just insert the code where the old textbox class was
i will also add more to this class as the day goes on.
Code: [Select]
----------------------textbox-------------------------------------------

textbox = class()

function textbox:init(x, y, width, text, textcolor, tbcolor, parent, selected)
self.parent = parent
self.x = x + parent.x
self.y = y + parent.y
self.xoff = x
self.yoff = y
self.width = width
if self.width < 10 then
self.width = 10
end
self.height = 11
self.text = text
self.textcolor = textcolor
self.tbcolor = tbcolor
self.selected = selected
self.cury = self.y + 1
self.curx = self.x + 1
self.curh = (self.y + self.height) - 1
self.parent = parent
self.type = "txt"
self.stwid = 0

self.dIndex = 1
self.initial = true
self.bsflag = false


table.insert(parent.controls, self)
end
function textbox:paint(gc)

self.stwid = gc:getStringWidth(self.text)

if self.initial == true then
local dtext = self.text
while gc:getStringWidth(dtext) >= self.width - 1 do
dtext = string.sub(dtext, 2)
end
self.initial = false
self.dIndex = string.find(self.text, dtext)
else
while gc:getStringWidth(string.sub(self.text, self.dIndex)) >= self.width and self.bsflag == false do
self.dIndex = self.dIndex + 1
self.dText = string.sub(self.text, self.dIndex)
end
if self.bsflag == true then
self.text = string.sub(self.text, 1, string.len(self.text) - 1)
if string.len(self.text) > string.len(string.sub(self.text, self.dIndex)) then
self.dIndex = self.dIndex - 1
while gc:getStringWidth(string.sub(self.text, self.dIndex)) >= self.width do
self.dIndex = self.dIndex + 1
self.dText = string.sub(self.text, self.dIndex)
end
end
end
end
self.bsflag = false

gc:setColorRGB(unpack(self.tbcolor))
gc:drawRect( self.x, self.y, self.width + 3, self.height)
gc:setColorRGB(unpack(self.textcolor))
gc:setFont("sansserif", "r", 8)
self.stwid =
gc:drawString( string.sub(self.text, self.dIndex), self.x + 4, self.y + 3, "middle")
gc:setColorRGB(unpack(color.black))
self.cury = self.y + 1
self.curx = self.x + gc:getStringWidth(string.sub(self.text, self.dIndex)) + 3
self.curh = (self.y + self.height) - 1
gc:drawLine(self.curx, self.cury, self.curx, self.curh)
end
function textbox:charIn(ch)
if self.selected then
self.text = self.text..ch
end
platform.window:invalidate(self.x, self.y, self.width + 2, self.height)
end
function textbox:backspaceKey()
self.bsflag = true
platform.window:invalidate(self.x, self.y, self.width + 2, self.height)
end

function textbox:click()
if self.selected then
self.selected = false
else
for _, tb in pairs(self.parent.controls) do
if tb.type == "txt" then
tb.selected = false
end
end
self.selected = true
end
end
function textbox:checkClick(x, y)
if y >= self.y and y <= self.y + self.height and x >= self.x and x <= self.x + self.width then
self:click()
end
end

an example:
wndIX = form(1, 1, 160, 160, true, "Title", color.white, color.brickred, true, false, false)
tb1 = textbox(3, 3, 100, "Hello Omnimaga, i now scroll smoothly!", color.black, color.black, wndIX, false)

343
Miscellaneous / Re: There was a gang fight today...
« on: May 11, 2012, 11:17:26 pm »
that is scary

344
Lua / Re: Updating WZGUILib
« on: May 07, 2012, 07:03:24 pm »
Ok, So here is what is going on
I have to move back the project just a little bit,
1. Ti-Nspire 3.2 doesnt come out until june
2. Finals are comming up next week
3. I am having about 3 track meets a weak, so i dont have a lot of time

Expect a release sometime in june
I also may release a small beta release soon on this thread to show what i have done

345
TI-Nspire / Re: C or ASM IDE for the Nspire
« on: May 07, 2012, 06:59:11 pm »
I would totaly use this!

Pages: 1 ... 21 22 [23] 24 25 ... 45