Is it possible to use a generated string as filename??
This is to load a circleX from sdcard and does not work.
What am I doing wrong?
func loadImageDyn(var INTERVAL)
gfx_TransparentColour(YELLOW); gfx_Transparency(ON); var circle; var buffer[10]; to(buffer);print("circle"); to(APPEND);print(INTERVAL); to(APPEND);print(".Dat"); //putstr(buffer);
var buffer2[10]; to(buffer2);print("circle"); to(APPEND);print(INTERVAL); to(APPEND);print(".Dat"); circle := file_LoadImageControl(buffer ,buffer2 ,0); mem_Free(circle);
endfunc
Thanks
Raymond
This is to load a circleX from sdcard and does not work.
What am I doing wrong?
func loadImageDyn(var INTERVAL)
gfx_TransparentColour(YELLOW); gfx_Transparency(ON); var circle; var buffer[10]; to(buffer);print("circle"); to(APPEND);print(INTERVAL); to(APPEND);print(".Dat"); //putstr(buffer);
var buffer2[10]; to(buffer2);print("circle"); to(APPEND);print(INTERVAL); to(APPEND);print(".Dat"); circle := file_LoadImageControl(buffer ,buffer2 ,0); mem_Free(circle);
endfunc
Thanks
Raymond
Comment