T O P I C R E V I E W |
bmmaoso |
Posted - 09/20/2004 : 07:24:21 AM Hello!
I am working with origin 6.0, and I want to know if I can do an autoexecutable project.
Thank you very much for your help.
Maria Isabel |
6 L A T E S T R E P L I E S (Newest First) |
bmmaoso |
Posted - 09/21/2004 : 09:29:29 AM OK easwar, Thanks a lot for your explanation!
Maria Isabel
|
easwar |
Posted - 09/21/2004 : 09:25:00 AM Hi Maria,
Currently there is no such capability of converting an OPJ to EXE so that it can be opened on another computer that does not have Origin installed.
The number QA-3542 refers to an internal database entry - we use a database to track feature suggestions and bug reports. This item is about creating a viewer application for Origin where someone could view the data and graphs (but not do further processing) of Origin OPJs on machines that do not have Origin installed.
Easwar OriginLab
|
bmmaoso |
Posted - 09/21/2004 : 06:42:21 AM Hi Sammi!
I am a new member, Could you tell me please what is QA-3542?
Thanks a lot.
Maria Isabel |
sammi.song |
Posted - 09/21/2004 : 04:25:08 AM Hi Maria Isabel,
Thanks for your suggestion. This issue has been discussed in QA-3542.
Thanks, Sammi |
bmmaoso |
Posted - 09/21/2004 : 03:31:17 AM Hi Mike!
What I want to know is if I have a .OPJ file, can I save it as .EXE?
I would like that when I open my .EXE file in another computer, it would not need to have origin installed. Is that possible? Does origin have something like that?
Thank you very much.
Maria Isabel
Edited by - bmmaoso on 09/21/2004 06:43:05 AM |
Mike Buess |
Posted - 09/20/2004 : 11:19:55 AM Hi Maria,
Depends on what you mean by 'autoexecutable project'.
1. You can run scripts when Origin starts or when you click the 'New Document' button by defining the autoexec macro in Macros.cnf...
def autoexec {run.section(MyFile.ogs,MySection)};
Search for autoexec in your LabTalk guide for details.
2. You can run scripts at startup with command line options...
http://www.nmrtools.com/labtalk/i_startup.html
You can also add the name of a particular project on the command line.
3. You can run scripts automatically after opening any project by using the endOpen macro. (Once again, search for endOpen in your Labtalk guide.)
4. You can run scripts when you open a particular project by adding a text button to one of its windows, opening its Label Control dialog and selecting 'Script, Run after Window Create'. Then launch your scripts from the Label Control's edit box...
run.section(MyFile.ogs,MySection);
Mike Buess Origin WebRing Member |