with the Loadpicture() function, what does IsLastpicturetoload mean (not listed in the screenset manual despite the function being listed).
Loadpicture()
Function: void Loadpicture( string pictureupURL, string picturedownURL,
int picturenumber, bool IsLastpicturetoload )
Description: This function loads 2 images into memory; the first 2 parameters are the filenames with the directory path for the image files. The base path is the UCCNC installation /Flashscreen/ path.
Parameters:
• pictureupURL defines the image which is shown when a button is not pressed (i.e. is released)
• picturedownURL defines the image which is shown when the button is being pressed. For screen elements like for backgrounds where only one image is used set both parameters the same and the software will automatically load one instance only into the memory.
• picturenumber defines the numeric identifier for the picture, this identifier can be later used to identify this image when the image has to be rendered onto a screen object like on a button or a background, tab layer etc.
• IsLastpicturetoload defines
Example: AS3.Loadpicture(bitmapfolder + "plus_up.png", bitmapfolder + "plus_down.png", 22, false);