Close

Results 1 to 4 of 4

Thread: live

  1. #1

    Default live

    is there a live hotkey combination in sac enable disable ?

  2. #2
    Join Date
    Oct 2009
    Location
    Maple Ridge, BC Canada
    Posts
    3,528
    Blog Entries
    1

    Default Re: live

    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.
    Last edited by mr_es335; 11-04-2023 at 08:45 AM.

  3. #3

    Default Re: live

    Quote Originally Posted by mr_es335 View Post
    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?

  4. #4
    Join Date
    Oct 2009
    Location
    Maple Ridge, BC Canada
    Posts
    3,528
    Blog Entries
    1

    Default Re: live

    Andrew,

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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •