T O P I C R E V I E W |
gleeblejim |
Posted - 02/03/2012 : 2:17:51 PM Hello,
I'm running Origin 8.6 SP1. I have a Menu Item that works as a shortcut for making line graphs, but the problem is that Origin always keeps the worksheet on top, but I'd prefer it if I could have it open the graphs with the graphs on top. Is there a quick line or two of labtalk code I can add to do this?
Thank you! |
2 L A T E S T R E P L I E S (Newest First) |
gleeblejim |
Posted - 02/03/2012 : 3:33:54 PM Thanks Bob. |
Drbobshepherd |
Posted - 02/03/2012 : 3:26:03 PM Try:
win -a windowname;
where windowname is the name of your graph window (e.g. Graph1).
If this doesn't work for you, you could use
doc -cp windowseries;
to count your graph windows that begin with windowseries. Then use
win -a windowseries$(count);
to activates last graph window in the series.
DrBobShepherd
|