live

Post a reply

Confirmation code
Enter the code exactly as it appears. All letters are case insensitive.
Smilies
:D :) :o :? :( ;) :geek: :ugeek: :cool: :eek: :mad: :p :rolleyes: :cry: :lol: :twisted: :evil: :!: :?: :idea: :arrow: :| :mrgreen: :oops:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: live

Re: live

by mr_es335 » Sun Nov 05, 2023 6:19 am

Andrew,

Sure, but as this service really has nothing directly to do with RML Labs, can you email me? Thanks.

Re: live

by andrew b » Sat Nov 04, 2023 11:41 pm

mr_es335 wrote:andrew,

In short, "No!"

However, I have written two scripts, 1) one for disabling [LIVE] mode, and 2) one for enabling [LIVE] mode.

Such scripts are particularly handy if you are employing Bob's suggestion - as stated in the Manual, Startup Command Line Options, page 34, "SAC accepts an .mxs filename on the command line when starting up. This will run the program and automatically load the Mix Session file. The Live engine light will flash letting you know the mixer is ready to go. Check your levels and connections and then start the Live engine by [Right-Clicking] on the Live Light in the top left corner of the Main Window Client Y zone".

Then..."Example: C:\SAC\SAC.exe D:\Mix-Sessions\Test\Test.mxs"

Please note: That you could simply launch SAC:
C:\SAC\SAC.exe

Here is my sample AutoIt! script:

; -----------------------------------------------
#include <AutoItConstants.au3>
; -----------------------------------------------
Local $_app="C:\SAC\SAC64.exe"
; -----------------------------------------------
Run($_app)
Sleep(500)
MouseClick($MOUSE_CLICK_LEFT, 27, 56, 1, 0)
; -----------------------------------------------


What the script does...t
he script...
1) Launches SAC
2) Pauses for 1/2 second
3) Positions the mouse over the [LIVE] mode button
4) Invokes a left click operation
Note: To invoke a right click, I update the line to -
MouseClick($MOUSE_CLICK_RIGHT, 27, 56, 1, 0)
* Lastly, the above script can then be complied to an .exe for use in the system - if desired.
* I also have two
scripts as noted, simply to enable or to disable t[LIVE] mode.

Pretty slick!

PS: If interested, let me know. Email is in sig.
can you make an exe?

Re: live

by mr_es335 » Sat Nov 04, 2023 8:32 am

andrew,

In short, "No!"

However, I have written two scripts, 1) one for disabling [LIVE] mode, and 2) one for enabling [LIVE] mode.

Such scripts are particularly handy if you are employing Bob's suggestion - as stated in the Manual, Startup Command Line Options, page 34, "SAC accepts an .mxs filename on the command line when starting up. This will run the program and automatically load the Mix Session file. The Live engine light will flash letting you know the mixer is ready to go. Check your levels and connections and then start the Live engine by [Right-Clicking] on the Live Light in the top left corner of the Main Window Client Y zone".

Then..."Example: C:\SAC\SAC.exe D:\Mix-Sessions\Test\Test.mxs"

Please note: That you could simply launch SAC:
C:\SAC\SAC.exe

Here is my sample AutoIt! script:

; -----------------------------------------------
#include <AutoItConstants.au3>
; -----------------------------------------------
Local $_app="C:\SAC\SAC64.exe"
; -----------------------------------------------
Run($_app)
Sleep(500)
MouseClick($MOUSE_CLICK_LEFT, 27, 56, 1, 0)
; -----------------------------------------------


What the script does...t
he script...
1) Launches SAC
2) Pauses for 1/2 second
3) Positions the mouse over the [LIVE] mode button
4) Invokes a left click operation
Note: To invoke a right click, I update the line to -
MouseClick($MOUSE_CLICK_RIGHT, 27, 56, 1, 0)
* Lastly, the above script can then be complied to an .exe for use in the system - if desired.
* I also have two
scripts as noted, simply to enable or to disable t[LIVE] mode.

Pretty slick!

PS: If interested, let me know. Email is in sig.

live

by andrew b » Sat Nov 04, 2023 5:13 am

is there a live hotkey combination in sac enable disable ?

Top