Facility Control

 View Only
  • 1.  LOAD XPRESSION PROJECT FROM DASHBOARD

    Posted 09-25-2017 14:34
    Hello,
    is it possible to load an Xpression's project from Dashboard please ?

    Thanks


  • 2.  RE: LOAD XPRESSION PROJECT FROM DASHBOARD

    Posted 09-26-2017 13:26
    Hi kml,

    You can have DashBoard buttons that trigger loading projects on XPression, yes.

    To do this:

    1: Create a DashBoard script (usually on a button) that sends a 'TriggerGPI' event to XPression.
    This is most easily done using Visual Logic. Add your XPression to your Custom Panel and then drag the 'TriggerGPI' API event onto your script.

    2: Create a Script in XPression and link it to a GPI/Keyboard event
    In XPression create a script that loads a project. Put this script onto a GPI event.
    (with a matching number of course to the GPI being sent from DashBoard).

    The Script that we very quickly put together to do this on XPression was:

    if Engine.LoadProject("D:\Demo Projects\Ross News Hour\Ross News Hour.xpf")

    Engine.DebugMessage("Success",2)
    end if




    You now have the ability to load projects from a DashBoard custom panel.

    It is worth noting that this approach can be used to have DashBoard trigger any number of effects and events by having it send GPI triggers (which are TCP/IP messages) to XPression.


    Troy.

    #DashBoard


  • 3.  RE: LOAD XPRESSION PROJECT FROM DASHBOARD

    Posted 09-27-2017 10:09
    Hello Troy,

    first thank you for your help.

    Can you tell me please where I have to put this script :

    [I]if Engine.LoadProject("D:\Demo Projects\Ross News Hour\Ross News Hour.xpf")

    Engine.DebugMessage("Success",2)[/I]
    [I]end if[/I]

    I try to put it here :
    Xpression -> Edit -> Scripting -> CII
    but nothing happen


    Thanks again

    #DashBoard


  • 4.  RE: LOAD XPRESSION PROJECT FROM DASHBOARD

    Posted 09-28-2017 15:05
    It needs to go in the Edit->Keyboard Mapping menu. You need to add a script event into the keyboard/gpi map and put the script in there.

    If you are unfamiliar with the keyboard mapping menu; here is an excellent tutorial on it: https://www.rossvideo.com/graphics-system/xpression/xpression-u/video-tutorial-201/

    #DashBoard