Tutorials?


NoidZ

Mind the world, need for panic
Joined
Apr 2, 2006
Messages
757
Age
35
Location
The Netherlands
Website
Visit site
Hi, I want to make something really simple* for GP2X but where can I find tutorials for Fenix?

*Like a dot or something which I can move across the screen using the d-pad.
 
YEAH! Got this scrolling tutorial working :D That was my first FENIX coding experience! YAY! :D

How can I create more text below it?
 
Yes I know that, but if this is my code:

PROGRAM Graphite;
Begin
x = 0;
while(x < 320)
DELETE_TEXT (0) ;
x += 2;
write (0, x, 100, 0, "1st Coding Attempt") ;
FRAME;
END;
END;

Where do I need to place a new line of text? I probably understand if someone creates that little piece of code.

Thanks!
 
Code:
PROGRAM Graphite;

Begin
  x = 0;
  while(x < 320)

	//Delete all text(0 means all text)
	DELETE_TEXT (0);
	x += 2;

	//Write texts every frame for 160 frames, moving right.
	//write(font,x position, y position, text alignment, "text")
	write (0, x, 100, 0, "1st Coding Attempt");
	write (0, x, 120, 0, "Line below 1st Coding Attempt");
	write (0, x + 150, 100, 0, "Line after 1st Coding Attempt");

	FRAME;
  END;

END

Hmm?
 
Back
Top