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

Pages: 1 ... 168 169 [170] 171 172 ... 424
2536
Site Feedback and Questions / Re: Link to page with uprated posts.
« on: April 08, 2011, 02:52:06 am »
I don't know if it can be done, but I think everyone agrees that it would be nice to know on which posts you got an uprating. Maybe someone could make a link(like 'new posts')that goes to a page where you can see the latestuprated posts.
Or let there be by everyones profile a link called 'View all the uprated/downrated posts of this person'.
I think this would be a great improvement. Ofcourse if this isn't possible or just cant be done, I can understand.


I'd like one for downrated posts, but that others couldn't see... I am ashamed of my downrated posts...

@Stefan: Not sure if it's possible.

2537
Web Programming and Design / Re: Unofficial omnomIRC extension
« on: April 07, 2011, 04:25:35 pm »
JimBauwen is JavaScript GOD around here :D
What about my javascript godlyness?

jBasicOS and Eee:Zor and awesome too, I didn't forget about you :)

2538
News / Re: TI-Nspire OS 3.0 Released!
« on: April 07, 2011, 04:10:45 pm »
Yeah, it seems like we shouldn't install OS 3.0, NOBODY INSTALL IT.

2539
BatLib / Re: BASIC ReCode v2.00
« on: April 07, 2011, 03:53:04 pm »
How would it work? Can you give an example?

As in most PC languages:

Code: [Select]
/*
All these lines are comments
The goal of this program
is to clear the
screen/LCD
*/
dim(40
Fill(0
//The last line clears the screen
Stop

2540
Web Programming and Design / Re: Unofficial omnomIRC extension
« on: April 07, 2011, 03:50:05 pm »
I made an unofficial extension for omnomIRC to chat with colors

Add a bookmark in your bookmark bar with this url:
Code: [Select]
javascript:sig = AJAXSend.toString().split("\n")[21].split("&")[1];usern = AJAXSend.toString().split("\n")[21].split("&")[0].split("\"")[3];setTimeout('function AJAXSend() {
window.frames[0].onMessageSend();window.frames[0].timeIn();var msg_me=document.getElementById("message").value;msg_me = msg_me.replace("[bold]","\x02");msg_me = msg_me.replace("[normal]","\x0F");msg_me = msg_me.replace("[red]","\x0304");msg_me = msg_me.replace("[blue]","\x0302");msg_me = msg_me.replace("[green]","\x0303");msg_me = msg_me.replace("[color]","\x03");var theURL = "/omnomirc/messagebounce.php?name=" + encodeURIComponent(encodeURIComponent(usern)) +"&"+ sig + "&message=" + encodeURIComponent(encodeURIComponent( stripslashes( stripslashes( msg_me ))));document.getElementById("message").value = "";xmlhttp=new XMLHttpRequest();xmlhttp.open("GET", theURL ,false);xmlhttp.send(null);
}',1000);


When you are on  a omnimaga page, click it, and you will be able to use tags like
Code: [Select]
[red] [green] [blue] [color]00-15 [bold] and [normal] in omnomIRC.

If anyone of the mods doesn't like this, I will remove it.

IT WORKED, IT WORKED, I LOVED IT.

JimBauwen is JavaScript GOD around here :D

2541
BatLib / Re: BASIC ReCode v2.00
« on: April 07, 2011, 03:46:34 pm »
Hehe, thanks :) I was actually a little iffy about using //, but it really does look nice :) Also, it only works after a newline and it pretty much just skips the whole line and moves to the next one when it reaches a //

Does anybody else have any coding conventions that I should add?

/*

*/ Maybe for multiline comments.

2542
BatLib / Re: BatLib
« on: April 07, 2011, 02:50:49 pm »
Um, after the Stop, the BASIC parser picks up again :P The BASIC parser reads the next line which is End and it say "What is this?! This doesn't belong here!"

Also, you can use Line( instead of dim(29 in ReCode. It is faster that way ;)

Thanks much for the advice, I'll try not to let the BASIC Parser go crazy.

2543
BatLib / Re: BatLib
« on: April 07, 2011, 01:22:14 pm »
I just managed to create BatLib programs using the same engine as in Axe.

Most Axe games are based on loops:

Code: [Select]
Repeat getKey(15)
Pt-On(X,Y,Pic1
DispGraph
ClrDraw
End

Getkeys, everything is inside that.

BatLib code for it:

Code: [Select]
dim(40
Fill(0
While getKey!=15
dim(29,0,96,0,64,6
DispGraph
End
Stop

However, trying to add getKeys, I got an error:

Code: [Select]
dim(40
Fill(0
While getKey!=15
If getKey=1
Then
Stop
End                        ; I get syntax error here
dim(29,0,96,0,64,6
DispGraph
End
Stop

Any ideas?

2544
BatLib / Re: BatLib Demo Programs
« on: April 07, 2011, 01:03:48 pm »
Hehe, Scout, watch this:


Cool, but I prefer mine, I even optimized its code:

Code: [Select]
dim(40
Fill(0
While getKey!=15
Fill(9,A
DispGraph
Fill(9,A
A*2->A
If A>=256
1->A
Pause A
End
Stop

Good enough, I have an idea though, what if != really works, like the different sign, so that if people try to copy my code and for any other circumstances. What do you think?

2545
BatLib / Re: BatLib Demo Programs
« on: April 07, 2011, 12:44:33 pm »
Sweet, it's easier thay way :D

I also just made the lines animation you coded, but changed it a better to look cleaner :D

2546
BatLib / Re: BatLib
« on: April 07, 2011, 12:37:44 pm »
It worked fine for me... Also, should I add that as a command?

It actually worked now, maybe it was a problem of the whole program.

Here's the little animation you made, no problems with 'Done' here, working perfectly (uses Recode)

2547
TI Z80 / Re: Axe GUI Library
« on: April 07, 2011, 10:11:05 am »
Update



I added a status bar, very similar to Windows's, which can be created by writing:

Code: [Select]
sub(SB,X,"TEXT"

X is the X position of the text, for example, for the image above I wrote sub(SB,62,"GUI DEMO.

I optimized the subroutines and the main code (in the loop) is getting much shorter. The GUI DEMO is only 2000bytes for now :D (the compiled version).

Attached is the source code of the GUI. It works better if compiled with Axe 0.5.1 :D

2548
BatLib / Re: BatLib
« on: April 07, 2011, 09:59:09 am »
I tried this:

dim(22,"FDCB00AEC9

But the 'Done' is still there!, any idea?

2549
BatLib / Re: BatLib Demo Programs
« on: April 07, 2011, 09:58:00 am »
Here's a simple animation using rectangles and very simple code ;)

Pages: 1 ... 168 169 [170] 171 172 ... 424