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 - Adriweb

Pages: 1 ... 59 60 [61] 62 63 ... 115
901
News / Re: Casio new touchscreen calculator, or older idea they had in mind?
« on: September 25, 2012, 08:25:20 pm »
Quote
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 :)

902
Other Calculators / Re: TI-Nspire Prototypes
« on: September 25, 2012, 07:45:25 pm »
Hmm yeah, maybe that's the proof of what was supposed here : http://tiplanet.org/forum/viewtopic.php?f=16&t=5035

903
I have checked, here are some (from people I actually know/met too :P)
Nothing surprising though.

Here are some (with names I know of)

nspire wireless-related : http://www.google.com/patents/US20120102550 (from Todd Wostrel)
multiple equ. graphing : http://www.google.com/patents/US7777744 (from Todd Wostrel)
transfers in network : http://www.google.com/patents/US20090215020  (from Mark Fry)
[ptt] feature configuration : http://www.google.com/patents/US20120041993 (from (Todd Wostrel)
large fonts on nspire : http://www.google.com/patents/US20110219335 (from John Powers)

etc.

904
Art / Re: General purpose art thread
« on: September 24, 2012, 01:59:02 pm »
Awesome !  (especially calc84maniac ! :o)

905
Lua / Re: Lua Q&A
« on: September 24, 2012, 05:44:02 am »
And if you're looking to implement that into a string manager, here's an example :
https://github.com/adriweb/EEPro-for-Nspire/blob/master/Global%20Libraries/widgets.lua#L145

906
Lua / Re: Numstrat - Stumbling into Lua
« on: September 23, 2012, 09:18:03 am »
Well, you can "simply" take this code until line 1440 : https://github.com/adriweb/LuaTowerDefense/blob/master/LuaTowerDefense.lua

907
Lua / Re: Numstrat - Stumbling into Lua
« on: September 23, 2012, 08:04:03 am »
Indeed, that's ETK. Jim created the core of it.
You can find the screen + widgets etc. here 
https://github.com/adriweb/EEPro-for-Nspire/blob/master/Global%20Libraries

But that's far more advanced and probably too complex for simpler usecases than FormulaPro (eepro).

908
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
News / Re: Update or repair your TI-Nspire CAS+
« 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 :P

910
News / Re: Update or repair your TI-Nspire CAS+
« on: September 20, 2012, 06:23:37 am »
Well, probably something around a hundred worldwide :P
Probably TI knows how many based on how many weren't returned as planned...

911
Lua / Re: Look what my Nspire can do
« on: September 18, 2012, 05:51:27 am »
Well if it gets possible to buy separately the wifi cradle, it can be interesting :P

912
Lua / Re: Look what my Nspire can do
« on: September 16, 2012, 06:57:17 pm »
Look at what MY Nspire can do :P




That's right, Wolfram Alpha :)

913
Lua / Re: Trouble with screen managers?
« 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
Miscellaneous / My new internet speed
« 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 :D



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
Lua / Re: Trouble with screen managers?
« 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 :

Code: [Select]
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