Home AMX User Forum NetLinx Studio

Projector with two displays

Need some ideas:

I have a Sanyo PLC XT11 that can be used with a screen or smartboard and I need to in code chnge the zoom and lens shift depending on which display is chosen.

Comments

  • SensivaSensiva Posts: 211
    I hope this is what you are asking for
    BUTTON_EVENT[TP,SMARTBOARD] //select the smart board display
    {
      PUSH:
      {
        CURDISP = SMARTBOARD // current display flag for feedback
        // Do Zoom
        // Do Lens Shift
      }
    }
    BUTTON_EVENT[TP,PROJSCREEN] //select the projection screen
    {
      PUSH:
      {
        CURDISP = PROJSCREEN // current display flag for feedback
        // Do Zoom
        // Do Lens Shift
      }
    }
    DEFINE_PROGRAM
    [TP,SMARTBOARD]=(CURDISP=SMARTBOARD)
    [TP,PROJSCREEN]=(CURDISP=PROJSCREEN)
    
Sign In or Register to comment.