Quote:Can *SCREENSAVE be used with a variable detailing the filepath? |
|
You can use OSCLI, as listed in the manual:
Code: OSCLI "GSAVE """+file$+""" "+STR$xpos%+","+STR$ypos%+","+ \
\ STR$xsize%+","+STR$ysize%
If only the filepath is variable, you can simplify this to:
Code: OSCLI "GSAVE """+file$+""" xpos,ypos,xsize,ysize"
(*GSAVE is synonymous with *SCREENSAVE)
Richard.