0 Members and 1 Guest are viewing this topic.
to call it.Getcalc("appvBLAH")→A //Call appvBLAH from OS and stores it into pointer ATo display that Picture after you call it:Copy(A,L6,768
2nd question:To Store Pic in appvar:GetCalc("appvBLAH",768)→A //appvBLAH created and stored into pointer A[Pic1]→B //Pic1 in OS Stored into pointer BCopy(B,A,768) //Copies Pic1 into appvBLAHto call it.Getcalc("appvBLAH")→A //Call appvBLAH from OS and stores it into pointer ATo display that Picture after you call it:Copy(A,L6,768
Quote from: yeongJIN_COOL on October 21, 2011, 03:09:30 pmto call it.Getcalc("appvBLAH")→A //Call appvBLAH from OS and stores it into pointer ATo display that Picture after you call it:Copy(A,L6,768And to call it from archive instead of having the appvar unarchived, you do Getcalc("appvBLAH",Y0) Copy(A,Y0,768And if it doesn't work, replace "Copy(A,Y0,768" by For(r1,0,767 {Y0+r1}→L6+r1 End
If you don't understand some of the Asm stuff, just skip it.
prgmSOMETHNG //TI-BASIC PROGRAMAsm(prgmAXEPROGRAMTHATDISPLAYSPICTUREINGRAPHSCREENStorePic 1
:inputStr1
I always wondered how to do that either XP