I'm about to do a little journey into the world of PJLink, does anyone
have any experience to offer? I suppose it should be as simple as a
QLab script cue to Terminal including a string that conforms to the
PJLink protocol.
So many useful opportunities here with a fairly generic standard, I'd
be suprised if no one has tried this yet, yeah?
Love your thoughts.
Rob Larsen.
________________________________________________________
WHEN REPLYING, PLEASE QUOTE ONLY WHAT YOU NEED. Thanks!
Change your preferences or unsubscribe here:
http://lists.figure53.com/listinfo.cgi/qlab-figure53.com
Follow Figure 53 on Twitter here: http://twitter.com/Figure53
set newFile to "new file"
tell application "URL Access Scripting"
open location "http://192.168.0.8/cgi-bin/proj_ctl.cgi?key=shutter_on&lang=e&osd=off"
open location "http://192.168.0.9/cgi-bin/proj_ctl.cgi?key=shutter_on&lang=e&osd=off"
quit
end tell
tell application "Safari"
activate
tell application "System Events"
delay 1
keystroke "w" using (command down)
end tell
tell application "System Events"
delay 1
keystroke "w" using (command down)
end tell
tell application "System Events"
delay 1.5
keystroke "w" using (command down)
end tell
tell application "System Events"
delay 2
keystroke "h" using (command down)
end tell
end tell
This is a case with 2 beamers. First six lines are important, the rest is just to close the safari windows that popped up. It worked well for me. I don't know all that much about scripting. I came this far searching this group and the web. So I don't understand all that much the above scripts. Will it go a lot faster if you do it with PJlink-code in the script??
I also found Jonas Jongejan's little app very promising. But our video Mac Pro is running snow-leopard for other reasons and the app needs Lion.
So why do we need this pjlink?
Hey Group,I was trying the script from Dave and somehow with no result.I tried to send the the commands directly from the terminal - also withno result. (maybe problem with the EscapeChr ona german keyboard?)I was testing DataComet X and it all worked there fine.My projectors are all set up for pjlink (it works also perfectly with Projector MIDI Remote)but I would need it to work with applescript (called by iCal)Thanks for any adviceGeorg
tell application "Terminal"
tell window 1 to do script ""
delay 1.0E-5
do script "telnet -NK4c 192.168.100.10 4352" in window 1
delay 1
do script "" in window 1
delay 10
do script "%1AVMT 30" in window 1
do script "" in window 1
end tell
Thank you for your post. You were really helpful to get my telnet setup on my Panasonic because I was having the authorization errors at first. Had one question about your code. You use "1.0E-5" when doing a delay. What does that do exactly? I have always been just using 0.2.
Tom