Using Graphics Media
Graphic images, such as JPEGs, BMPs and WMFs may be plotted in the same fashion
as drawing using all the available coordinate modes. Just as in drawing,
images may be placed on the plot or the background.
To make some room:
' Clear plot objects
!POBJ Clear
' Change plot percent
!PPER 80,80
On the plot, an image may be placed using the IMGP
instruction.
(Drawing mode)IMGP x1,y1,x2,y2,path\image_name
For example, to place an image of an LED on the plot:
~IMGP 10a,0a,20a,20a,comp\led_red_1.jpg
To place an image on the background:
~POBJ oBack.Draw=IMGP 80,50,90,60,comp\led_red_0.jpg
IMGO may be used to logically OR the image colors with
those already present.
IMGA may be used to logically AND the image colors with
those already present.

Using Sound Media
WAV files may be played using the PWAV or IWAV instructions. PWAV,
play WAV, will not interrupt any current WAVs being played. IWAV, immediate
WAV, will interrupt the current WAV.
~PWAV gbell
~IWAV whistle

Paths:
By default, the StampPlot Media directory is the default directory. As
in above, gbell.wav resides in this directory. The LED_RED_1.JPG is in the
"comp" subdirectory of Media.
If a macro is being run that does not reside in the root, the
(PATH) value may be used to specify the macros directory should be used.
~PWAV (PATH)my_wav
The full path to media may also be used.
~IMGP 10,10,20,20,c:\my_folder\my_image.jpg