Hello !
Is there a method to really set the saveimage target folder on Windows ?
This code :
Function Enregistrer_ecran_dessin()
Local Fichier as String
SetFolder ("/")
SetFolder ("media")
SetFolder ("diaporamas")
SetFolder ("diapo5")
Fichier = "dessin" + str(random()) + ".png"
SaveImage (RenderImage_dessin, Fichier)
Playsound (Son_enregistrement_dessin)
EndFunction
Save the file into the app windows folder : C:\Users\pc\AppData\Local\AGKApps\Borne_ehpad_agk\media\diaporamas\diapo5 !
i want save the file to /media/diaporamas/diapo5 ! (into the 'classic' media folder where i read all the other data without problem).
Could you help me ?