Hi

I tried to write a short launchagent for Dragthing.app
I first tried:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" 
"http://www.apple.com/DTDs/PropertyList-1.0.dtd";>
<plist version="1.0">
<dict>
        <key>Label</key>
        <string>LaunchDragthing</string>
        <key>Program</key>
        <string>open /Applications/Programme\ 
\(Benutzer\)/DragThing.app</string>
        <key>RunAtLoad</key>
        <true/>
</dict>
</plist>

This thing did not load. 

So I tried a modification:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" 
"http://www.apple.com/DTDs/PropertyList-1.0.dtd";>
<plist version="1.0">
<dict>
        <key>Label</key>
        <string>LaunchDragthing</string>
        <key>ProgramArguments</key>
        <array>
                <string>open</string>
                <string>/Applications/Programme\ 
\(Benutzer\)/Dragthing.app</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
</dict>
</plist>

No succes, launchd will not launch.....
What do I have to change
Rudolf


_______________________________________________
MacOSX-talk mailing list
[email protected]
http://www.omnigroup.com/mailman/listinfo/macosx-talk

Reply via email to