AGS Pointers for Dummies: Difference between revisions

Line 55: Line 55:
=Assigning A Pointer A Value=
=Assigning A Pointer A Value=


To make it point to a GUI, you assign it the value of the GUI you want it to point to (with the assignment operator, '='). So to make GUIPointer point at the GUI named MYGUI, you would type:
To make a pointer ''point'' to a GUI, you assign it the value of the GUI you want it to point to (with the assignment operator, '='). So to make GUIPointer point at the GUI named MYGUI, you would type:


   GUIPointer = gMygui;
   GUIPointer = gMygui;
Anonymous user