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 - Adriweb
Pages: 1 ... 59 60 [61] 62 63 ... 115
901
« on: September 25, 2012, 08:25:20 pm »
TI responded with the TI-Nspire CX during Spring 2011, although some sources state that TI had worked on the CX since February 2010. Well, it was not a response, they were indeed developing it before the Prizm was released
904
« on: September 24, 2012, 01:59:02 pm »
Awesome ! (especially calc84maniac ! )
905
« on: September 24, 2012, 05:44:02 am »
906
« on: September 23, 2012, 09:18:03 am »
908
« on: September 22, 2012, 08:22:02 pm »
It should work fine with Wine, Crossover.... directly (as it did with nspire_emu) Anyway nice job hoffa, this is indeed quite easy, just tested and it works well - just a double click is required ! The only issue being the legality of this for people who don't actually own a device and thus don't normally have access to a boot1.
909
« on: September 20, 2012, 09:52:23 am »
Oh, I know it's the CAS+. But I wuldn't say more than a few hundreds worldwide maximum anyway. the prototype clickpad etc. would be rather a few dozens max worldwide
910
« on: September 20, 2012, 06:23:37 am »
Well, probably something around a hundred worldwide Probably TI knows how many based on how many weren't returned as planned...
911
« on: September 18, 2012, 05:51:27 am »
Well if it gets possible to buy separately the wifi cradle, it can be interesting
912
« on: September 16, 2012, 06:57:17 pm »
Look at what MY Nspire can do That's right, Wolfram Alpha
913
« on: September 15, 2012, 03:29:17 am »
Thank you very much! And I can add other lines of text too, right?
Sure, do whatever you want in the Menu:paint(gc) method.
914
« on: September 14, 2012, 10:52:54 am »
I just installed my new modem etc. with my new ISP ("Numericable") for the appartment, and here is the speed test I'm happy x) It looks France is well served for the price (25€/month), which also includes unlimited phone and 20 TV channels. What do you have ?
915
« on: September 14, 2012, 10:01:52 am »
The code you posted works just fine for me (the only error being the undefined Menu, which is normal since you have to do it).
Anyway, try something like this :
Screen = class() function Screen:init() end function Screen:paint(gc) end function Screen:timer() end function Screen:charIn(ch) end function Screen:arrowKey(key) end function Screen:escapeKey() end function Screen:enterKey() end function Screen:tabKey() end function Screen:contextMenu() end function Screen:backtabKey() end function Screen:backspaceKey() end function Screen:clearKey() end function Screen:mouseMove(x, y) end function Screen:mouseDown(x, y) end function Screen:mouseUp() end function Screen:rightMouseDown(x, y) end function Screen:help() end local Screens = {} function PushScreen(screen) table.insert(Screens, screen) platform.window:invalidate() end function PullScreen() if #Screens > 0 then table.remove(Screens) platform.window:invalidate() end end function activeScreen() return Screens[#Screens] and Screens[#Screens] or Screen end -- Link events to ScreenManager function on.paint(gc) for _, screen in pairs(Screens) do screen:paint(gc) end end function on.timer() for _, screen in pairs(Screens) do screen:timer() end end function on.charIn(ch) activeScreen():charIn(ch) end function on.arrowKey(key) activeScreen():arrowKey(key) end function on.escapeKey() activeScreen():escapeKey() end function on.enterKey() activeScreen():enterKey() end function on.tabKey() activeScreen():tabKey() end function on.contextMenu() activeScreen():contextMenu() end function on.backtabKey() activeScreen():backtabKey() end function on.backspaceKey() activeScreen():backspaceKey() end function on.clearKey() activeScreen():clearKey() end function on.mouseDown(x, y) activeScreen():mouseDown(x, y) end function on.mouseUp() activeScreen():mouseUp() end function on.mouseMove(x, y) activeScreen():mouseMove(x, y) end function on.rightMouseDown(x, y) activeScreen():rightMouseDown(x, y) end function on.help() activeScreen():help() end function on.resize() end
Menu = class(Screen)
function Menu:init() print("your init code here") end
function Menu:paint(gc) gc:drawString("Hello from the Menu Screen", 5, 5, "top") end
PushScreen(Menu())
Pages: 1 ... 59 60 [61] 62 63 ... 115
|