0 Members and 1 Guest are viewing this topic.
Ok, now how would I display the appv"TheEnd" ?
Ok I put it in but its not displaying, how would I implement this with my code?
can you do a simple drawing program in axe?if so, do that andthen do:Code: [Select]:If getKey(whatever) //see if press certain key:GetCalc("appvSTAGE",768)->A //appvar for stage created and stored into pointer A:Copy(L6,A,768) //copies buffer (L6) into appvar:Archive "appvSTAGE" //archives it so you don't lose it in RAM clear:Endand then to recall it:Code: [Select]:GetCalc("appvSTAGE",Y0) //gets it :Copy(Y0,L6,768) //copies into bufferis that what you mean?
:If getKey(whatever) //see if press certain key:GetCalc("appvSTAGE",768)->A //appvar for stage created and stored into pointer A:Copy(L6,A,768) //copies buffer (L6) into appvar:Archive "appvSTAGE" //archives it so you don't lose it in RAM clear:End
:GetCalc("appvSTAGE",Y0) //gets it :Copy(Y0,L6,768) //copies into buffer