jemmicat;566343 Wrote: 
> 
> Is there a way to use Squeezeplay to launch another program? 
> 
I know this works for launching command line tools, I'm not sure if it
also works for graphical user interfaces:

Code:
--------------------
    
  os.execute("sometool.exe")
  
--------------------


To make it work, you also need to make sure you have this line
somewhere in the top of the lua file:

Code:
--------------------
    
  local os = require("os")
  
--------------------


There might be better ways to do this, I'm just giving you the
information how I've done it for launching command line tools.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets'
(http://wiki.slimdevices.com/index.php/User:Erland). If my answer
helped you and you like to encourage future presence on this forum
and/or third party plugin/applet development, 'donations are always
appreciated' (http://erland.isaksson.info/donate))
------------------------------------------------------------------------
erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=80844

_______________________________________________
jive mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/jive

Reply via email to