View Single Post
Old 04-23-2010, 01:59 AM   #4
zorn
Human being with feelings
 
Join Date: Feb 2008
Location: france
Posts: 230
Default

at first, that's what i thought also, so tried this
Code:
desc: big play state
filename:0,stop.png
filename:1,play.png
filename:2,pause.png
filename:3,record.png
filename:4,recordpaused.png

@init
gfx_a = 1;

@block
rstate = play_state;

@gfx 100 100
rstate >= 0 ? (
	gfx_file = rstate;
	rstate >= 5 ? gfx_file-= 2;
	gfx_x = gfx_y = 0;
	gfx_blit(gfx_file, gfx_w/200, 0);
);
with according gfx files (width 200 pix, format png), and the track record armed, this should display the current state.
but Sexan, i think ?, needs all info that is in the big clock plus the play state.
zorn is offline   Reply With Quote