Jump to content

Problem In The Xplode.xml


*madmaster*

Recommended Posts

Hi,

I have a problem with my XPlode.xml

and I have no idea how to solve.

There is a mistake in this file but I

have 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 wrong

with it.

*madmaster*

Link to comment
Share on other sites


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. ;)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...