In regards to the first question about images.
I did it manually and it did work only problem I have is the only way it will load the image is if I click on the canvas, is there a way will auto load without me having to click on the canvas?
Or if not code that would auto click the canvas for me on startup?
In regards to question 2
Once i have the .exe location in field 1 how can I put that info into this command?
Local fname,fhandle,fdetails,ftypes, fpaths,fnames,fextens
@ set the filename of the program to launch
Put 'TO PUT .EXE LOCATION HERE' into fname
@ Get the file handle
FolderItemGetAbs(fname,fhandle,fdetails,ftypes, fpaths,fnames,fextens)
@ Launch the application in the foreground
FolderItemLaunch fhandle,1
any ideas?
Also my field 1 would be located on a hidden card, what command could I use to put this on a hidden card? card number is 4
Local fname,fhandle,fdetails,ctypes,cpaths,cnames,fextens
FileAsk(fname,fhandle,fdetails,ctypes,cpaths,cnames,fextens)
Put line 9 of fdetails into field 1
FolderItemLaunch(fhandle,1)
Im guessing it's something like
"Put line 9 of fdetails into FieldFN(1, 4)"