INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Launching apps from Theater View?  (Read 991 times)

GadgetBoy

  • Junior Woodchuck
  • **
  • Posts: 96
Launching apps from Theater View?
« on: January 06, 2013, 10:16:33 am »

Is there a way to add buttons to the Theater View to launch other applications? I would want something in the "top" menu, so it is seen from the main scrolling line (Audio / Video / Images / Playlist / etc. list).
Logged
LazyAutomtion
www.lazyautomation.com

la·zy [ley-zee] - Resistant to work or exertion; disposed to idleness.
au·to·ma·tion [aw-tuh-mey-shuh n] - The automatic operation or control of equipment, a process, or a system.

tls62dk

  • Galactic Citizen
  • ****
  • Posts: 406
Re: Launching apps from Theater View?
« Reply #1 on: January 06, 2013, 10:44:23 am »

Yes you can do that.

Go into options/Theater View.  Click on Add. One of the options is External Program.

You can choose the position of this button by means of the four buttons, Move Up, Move Down, Nest and Unnest.
Logged

GadgetBoy

  • Junior Woodchuck
  • **
  • Posts: 96
Re: Launching apps from Theater View?
« Reply #2 on: January 06, 2013, 03:17:57 pm »

Ok, that's half the battle.

Here's my next issue - if the program is already open, it's opening another instance of it.

Generally, I thought if you tried to open a program that is already open it simply reverts to the currently open version.

Any thoughts?

Thanks!
GB
Logged
LazyAutomtion
www.lazyautomation.com

la·zy [ley-zee] - Resistant to work or exertion; disposed to idleness.
au·to·ma·tion [aw-tuh-mey-shuh n] - The automatic operation or control of equipment, a process, or a system.

tls62dk

  • Galactic Citizen
  • ****
  • Posts: 406
Re: Launching apps from Theater View?
« Reply #3 on: January 06, 2013, 03:39:10 pm »

That is true for some apps. Others will open a new instance. I don't think that it some thing you can control from MC, rather you may have to investigate if the app you are trying to open can be made to only have one instance open or to bring an already running app into focus.
Logged

gappie

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 4566
Re: Launching apps from Theater View?
« Reply #4 on: January 06, 2013, 03:40:18 pm »

Ok, that's half the battle.

Here's my next issue - if the program is already open, it's opening another instance of it.

Generally, I thought if you tried to open a program that is already open it simply reverts to the currently open version.

Any thoughts?

Thanks!
GB

no it wont. some programs work that way, some dont. some programs will have command line options for it, some wont. but you could try a bat file to start a program that first checks if it is open already (on google you might find some solution that will fit you).  ;)

 :)
gab

tls was quicker. :)
Logged

gappie

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 4566
Re: Launching apps from Theater View?
« Reply #5 on: January 06, 2013, 04:32:27 pm »

to give an idea. i knitted a batch together to start anydvd from within thv. when i use the exe. the first time it will open anydvd in the system tray, which is good, but the second time it will open a options window.. a bit annoying when in thv. the same would happen using the shortcut on my desktop. now when i found out there was not a commandline option for anydvd, i started to look for some script to get it too work and i fumbled this together from what somebody else posted for an other program:
Code: [Select]
tasklist /FI "IMAGENAME eq anydvdtray.exe" 2>NUL | find /I /N "anydvdtray.exe">NUL
if "%ERRORLEVEL%"=="0" GOTO START


cd "C:\Program Files\SlySoft\AnyDVD"
start AnyDVD.exe

:START

now i have no idea what most of that means, or if it is harmful. but it works for me.

 :)
gab
Logged
Pages: [1]   Go Up