Subject:Automate recording
Posted by: korigan
Date:4/7/2005 7:08:23 AM
Hello, I'm trying this appSF.DoMenuAndWait("Special.Transport.Record",false); but it seems it doesn't work. Is there a way to start recording by script ? Thanks for help. |
Subject:RE: Automate recording
Reply by: jetdv
Date:4/7/2005 8:42:26 AM
Try: appSF.DoMenuAndWait("Transport.Record",false); |
Subject:RE: Automate recording
Reply by: _TJ
Date:4/7/2005 4:44:18 PM
You can bring up the Recording dialog using DoMenu, but you can't actually start (or stop) recording via Script at this time. tj |
Subject:RE: Automate recording
Reply by: korigan
Date:4/8/2005 12:00:33 AM
Ok thanks. Just two more question about that 1. In my code the preceding instruction is a "SaveAs" when I call app.DoMenuAndWait("Transport.Record",false). Since my first call has not been completed, "Record" opens a new window. What's the best way to pause until instruction termination before calling "DoMenuAndWait" ? 2. Since I can't start (or stop) recording via Script, Is there a way to know when the record operation has stopped by script ?. Thank for help. |