March 15, 200521 yr Hi,I have a problem with my XPlode.xmland I have no idea how to solve.There is a mistake in this file but Ihave no idea what it is.<XPlode4> <config> <display plugin="#XPLODE#\XPlodeGFXInstall.x4d"> <show total='6' after='2' subcount='true' /> <font face='Tahoma' antialias='true' small='8' large='12' /> <window width='440' position='8' /> <windowmode border=’true’ ontop=’true’ /> <colours> <header back='#F8FF00' fore='#F55C19' /> <footer back='#F8FF00' fore='#F55C19' /> <progress border='#F8FF00' back='#F8FF00' fore='#225626' /> <main back='#3F7841' fore='#F55C19' current='#F55C19' description='#F55C19' overlay='#FFFFFF22' /> </colours> </display> </config> <items> <item display='Windows Updates'> <execute display='Windows Media Connect...' program='%XPLODE%\HOTFIXE\wmcsetup.exe' arguments='' /></item> <item display='Windows Einstellungen'> <registry mode="write"> display='Schreibe Patchs...' ;Bluetooth Dienst - wird zur verendung der windows internen Bluetooth software benötigt (Ab XP SP2) [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\BthServ] "Start"=dword:00000004 </registry> </item> </items></XPlode4>If some one has an idea pls tell me whats wrongwith it.*madmaster*
March 15, 200521 yr You're using XPlode 1 code, version 4 has a new syntax. Read the included manual.
March 15, 200521 yr Author If I use the old versionwill it work or whats exactly wrongwith the syntax ?I have read the manual already ...
March 15, 200521 yr You're using XPlode VERSION ONE scripting, this is version FOUR. Note the difference?Here's your Execute block in new code: <item display="Windows Updates"> <execute display='Windows Media Connect...'> <program>#XPLODE#\HOTFIXE\wmcsetup.exe</program> </execute> </item>Oh, and you're using "%" instead of "#", be aware of that. IF you want to use arguments (don't use the tag when not needed, it's pointless ), it's like this: <item display="Windows Updates"> <execute display='Windows Media Connect...'> <program>#XPLODE#\HOTFIXE\wmcsetup.exe</program> <arguments>/S</arguments> </execute> </item>Oh, and you're registry block also has something wrong (that display tag can't be right) but I don't use that plugin so you'll have to check the manual.
March 15, 200521 yr I'm not even going to touch this one.EDITDamnit, I guess I just did, didn't I? Edited March 15, 200521 yr by Wraith
Create an account or sign in to comment