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 - BrownyTCat
Pages: 1 2 3 [4] 5 6 ... 29
46
« on: July 06, 2011, 07:14:00 pm »
Even if you aren't staying much longer, you've come a long way and controlled a site where people meet. People who can talk and be entertaining or people who can break the security of a 90MHz calculation powerhouse. I wasn't active for my first year (or however long I was dead), but I got to see some pretty interesting people and things. I hope the site won't collapse without you.
"Maybe you'll find someone else to help you" -GLaDOS
47
« on: July 06, 2011, 07:07:50 pm »
Even Google is going to be paid or locked up soon.
48
« on: July 06, 2011, 07:06:02 pm »
Possible: Yes Feasible: No And I'm sure Axe programmers wouldn't like it.
49
« on: July 06, 2011, 05:54:57 pm »
I hope if ndless 3 comes out we can have a robust editor with a compiler.
50
« on: July 05, 2011, 06:05:31 pm »
Idling... Where have I seen that before...
51
« on: June 28, 2011, 01:03:04 am »
I would love to be on the coders of tomorrow ^^ But I probably don't have a chance
Nobody has a lower chance than me. That's not physically possible.
52
« on: June 28, 2011, 01:00:36 am »
Looks like Portal X is doomed... and I'm not sure if I'd be accepted due to history
At least you aren't me.
53
« on: June 27, 2011, 11:46:13 pm »
Lots of demotions lately...
54
« on: June 26, 2011, 04:26:33 pm »
Maybe some of the cheaper ones don't include a slidecase and/or student software
Or the calc OS is sold separately
j/k, that would never happen, although sometimes, we never know...
That'd be better for us lol
There are units that INCLUDE a full TI Student Software? If I could afford these maybe I'd have time to do my hilariously slow programming.
55
« on: June 26, 2011, 04:24:01 pm »
BrownyTCat, if you read the whole topic you can see we're talking about the touchpad.
I tested it with the touchpad emulation in Student Software and it worked. Of course otherwise there's no way, since the mouse has no actual definitions where it moves, only if it does. I don't own a touchpad so I have no idea if this works on real hardware.
56
« on: June 26, 2011, 04:21:18 pm »
.app = doesn't exist...
At least on PCs .app exists, it's a Mac program containing resource files and compiled binaries.
57
« on: June 26, 2011, 04:19:44 pm »
You should really get another Rickroll, it's blocked in Germany
Youtube is a sucker for big companies. They'll do anything for money, even promote viral videos that break your ear drums and then get taken down due to some drama.
58
« on: June 26, 2011, 04:12:54 pm »
BrownyTCat, what does that have to do with the objective of this post?
It has the code with the command that was asked for, with a version to show all the keys. I forgot to add the invalidate() though. This won't run on a calc unless you use invalidate.
59
« on: June 25, 2011, 11:42:41 pm »
Try this:
draw_text = false
function on.paint(gc) if draw_text then gc:drawString("Hello", 5, 5, "top") end end
function on.arrowUp() draw_text = true platform.window:invalidate() end
Or for all directions listed on screen:
draw_text = false dir = none
function on.paint(gc) if draw_text then gc:drawString(dir, 5, 5, "top") end end
function on.arrowUp() dir = "up" draw_text = true end
function on.arrowDown() dir = "down" draw_text = true end
function on.arrowLeft() dir = "left" draw_text = true end
function on.arrowRight() dir = "right" draw_text = true end
60
« on: June 25, 2011, 11:03:40 pm »
Right now Omnom isn't even there. This was probably something to do with it disconnecting, thus it never "said" that a user disconnected, but the site "listened" and "heard" a user connect.
Pages: 1 2 3 [4] 5 6 ... 29
|