run XL command after Zoom close

Help each other out

run XL command after Zoom close

Postby scottw on Sat May 16, 2009 1:27 am

How can I run a command in XL after zoom player closes. I have zoom automatically close after the movie is over. I need to be able run a command after zoom closes. I have the resolution of my TV change to is native of 1024x768 while watching a movie and upon stopping the movie, with the remote, and then back to 1366x768 (the skin Res.). I would like it to do this automatically if zoom closes by itself.

Any ideas???
scottw
 
Posts: 774
Joined: Mon Feb 06, 2006 4:21 pm
Location: Glen Burnie, Maryland

Re: run XL command after Zoom close

Postby Marbles_00 on Sat May 16, 2009 2:56 pm

It sounds like you need to capture the IR command, then set up Xlobby to transmit via UIRT this command. The Xlobby command can then be setup under Setup/File Types, under the Zoomplayer's Exit event. Should work.
Marbles_00
 
Posts: 1867
Joined: Wed Apr 06, 2005 12:44 pm
Location: Canada

Re: run XL command after Zoom close

Postby scottw on Tue May 19, 2009 1:51 pm

Thanks Marbles but I think you misunderstood. I can do this from the remote/IR. I wanted to be able to have XL run a command once Zoom Player closes. Zoom will close once the movie is over automatically.
I got it working by running the movie with a batch file and using the Start /W command which will wait till the Zoom window is closed then run the next command, Xsend in this case.
Here is what I did in case it helps someone else.
My XL event to launch the movie is:
Code: Select all
-Execute File
---File: c:\playmovie.bat
---Arguments: "%movies>parameter%"
---Working Dir: c:\


Created a bat file: c:\playmovie.bat
Bat file looks like this:
Code: Select all
start /w C:\progra~1\Zoompl~1\zplayer.exe %1 /f /q /play
xsend.exe "xlobby:goto screen:movies" 8000 127.0.0.1


This is just a test that will launch the movie and once zoom is closed it will goto my Movies page.

Hope this helps someone else.
scottw
 
Posts: 774
Joined: Mon Feb 06, 2006 4:21 pm
Location: Glen Burnie, Maryland

Re: run XL command after Zoom close

Postby lar282 on Wed May 20, 2009 7:59 am

Why not use End Event in F2 under file types.


//Lasse
lar282
 
Posts: 1624
Joined: Thu Apr 01, 2004 4:13 pm
Location: Helsingborg, Sweden

Re: run XL command after Zoom close

Postby Marbles_00 on Wed May 20, 2009 12:53 pm

Why not use End Event in F2 under file types.


Yeah, that's what I attempted to explain...DOH! "End Event"...that's what it is called. Use that to fire off an IR command to change the res to what you want.
Marbles_00
 
Posts: 1867
Joined: Wed Apr 06, 2005 12:44 pm
Location: Canada

Re: run XL command after Zoom close

Postby scottw on Wed May 20, 2009 4:08 pm

Never thought of that...will try it out...thanks.
scottw
 
Posts: 774
Joined: Mon Feb 06, 2006 4:21 pm
Location: Glen Burnie, Maryland