Thank you David.
May we go further a little in matter replay
after having done a) sgscatterplot b) gplot with javaimg and c) classical gplot with png
the replay works in rtf
but for html i encounter two problems
1) for a) and c)
this kind of lines in the code
[pre]
img alt="Export en MKtonnes" src="gplot.png" style=" border-width: 0px; height: 600px; width: 800px;" border="0" class="c Graph"
or
img alt="Procédure SGScatter" src="SGScatter2.png" style=" height: 480px; width: 640px;" border="0" class="c"
[/pre]
and for b) the java creation there lines like
[pre]
map name="#LN00046"
Area shape="poly" alt="DATE : 1980
iron/steel exports in million tons : 5.11" title="DATE : 1980
iron/steel exports in million tons : 5.11" coords="723,285,715,285,713,281,710,285,702,285,709,287,706,290,713,288,719,290,717,287,723,285"/
and
img alt="Export en MKtonnes" src="gplot1.png" style=" border-width: 0px; height: 400px; width: 750px;" border="0" usemap="##LN00046" class="c Graph"
[/pre]
but in firefox (it accept generaly java construction but not activex construction)
and IE8
the frames are empty
There is a lack of path
Is there a easy way to indicate it in the replay of every graphics
as all those reference were going in fact inside
d:/My SAS Files/9.2/
TIA
Andre
try code
[pre]
ods listing;
ods document name=WORKA.SGgraphDOC(write) ;
ods graphics /width=800 height=500 imagemap=on;
proc sgscatter data=sashelp.class;
plot height * weight;
run;
ods graphics off;
ods document close;
ods listing;
...
proc document name=usage.SGgraphdoc;
replay ;
run;
[/pre]