How do I display a pic variable in axe? I know you can use the pic in your program by

Code:
[Pic1r]->pointer

But I can't figure out how to display anything but the top left 8*8 section. Sad
[Pic1r] doesn't retrieve the pic at run time. If it sees [Pic1], the compiler simply copies the bytes to your program. To display it, you have to Copy() the bytes onto the screen with Copy(pointer,L6)
Yes, I realize that it just copies the bytes. Smile However, even if I go like this:

Code:
Data(96,94)->Pic3
[Pic1r]
Copy(Pic3,L6)
DispGraph

The screen is just covered with a mess Sad
You dont need the Data(), just do:

Code:

[Pic1]->Pic3
...
Copy(Pic3,L6)
DispGraph

Wink
so not [Pic1r]? Ok, will try it.
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement