Post Reply 
saving a graph on the hp prime
12-24-2016, 02:30 AM (This post was last modified: 12-24-2016 02:36 AM by Han.)
Post: #3
RE: saving a graph on the hp prime
You can use AFiles("name"):=<object>

There are several graphics buffers, and G0 is the "current screen" buffer. So as an example:

AFiles("currentscreen.png"):=G0;

This will save the current screen into a file named currentscreen.png. This file can be found using the connectivity kit within whatever app was current when executing the command above. (For example, if you were in the Function app, then look within the Function app folder in the connectivity kit.) The file will be stored within the "Files" subfolder. Simply double click it (in the conn. kit) to open and view the image.

You can also "load" a screenshot in a similar manner. Use:

G0:=AFiles("currentscreen.png");

to load the current screen with the image. You may additionally need:

FREEZE; WAIT(-1);

to actually see the image (to prevent screen refreshes until a key is pressed or until WAIT(-1) times out).

NOTE: This must be done in Home view (if typed manually) or via a non-CAS program.

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: saving a graph on the hp prime - Han - 12-24-2016 02:30 AM
RE: saving a graph on the hp prime - Jan_D - 12-26-2016, 05:39 PM
RE: saving a graph on the hp prime - Jan_D - 01-02-2017, 05:33 PM



User(s) browsing this thread: 1 Guest(s)