XaRaNn
Sep 12 2004, 09:41 PM
Well ive been trying to make unleash do what i want in the menus, but it seems it keeps locking up
i want an app menu, with all my F:/apps listed, + on top i want my avalaunch.xbe and evoxdash.xbe from C:/
everything i tryed locks up UnleashX when i open my app menu
heres my config.xml
<List Text="Apps" Sort="On" Auto="On">
<Item Action="C:\avalaunch.xbe">Avalaunch</Item>
<Item Action="C:\evoxdash.xbe">EvolutionX</Item>
<Path>F:\Apps</Path>
</List>
whats wrong with my synthax? and how can i get it to work?
ive also noticed something weird, if i put my xml like up there, then remove both Item Action lines, it still locks up. i have to change skins so i can acess my apps menu (no clue why)
ILLusions0fGrander
Sep 12 2004, 11:21 PM
| CODE |
<menu> <item action="C:/avalaunch.xbe">Avalaunch</item> <item action="C:/evoxdash.xbe">Evox</item> <list text="apps" Sort="on" Auto="on"> <Path>F:/apps</Path> </list> </menu> |
that will be with the dash options first, then the app option underneath like you said...
u might have to change the apps path, but that should work for your menu part of the config...
always check that you close all tags before starting new ones
always open in your web browser to check for errors
always save in text only format.
hope that helps.. good luck!
XaRaNn
Sep 13 2004, 03:55 AM
first thanks for tryingto help me, but i dont want this as my main menu, i have games, xbmc, file manager etc, then i want a sub-menu named apps with the 2 dashboards on top and my apps on the bottom. thats what i cant get to work
i know i close all my tags, and that im saving in good format
heres my full config.xml if it can help anyone find the problem
| CODE |
<?xml version="1.0" encoding="utf-8"?> <UnleashX> <Settings> <MSDashBoard>C:\Xboxdash.xbe</MSDashBoard> <Password MaxTries="3"></Password> <Network Enable="Yes" Type="Static"> <IP>192.168.1.3</IP> <Subnet>255.255.255.0</Subnet> <Gateway>192.168.1.1</Gateway> <DNS1>24.200.241.10</DNS1> <DNS2>24.200.243.242</DNS2> <AutoDetect>Yes</AutoDetect> </Network> <FTP Enable="Yes"> <User>xbox</User> <Password>xbox</Password> <Port>21</Port> <MaxUsers>2</MaxUsers> <AllowAnon>No</AllowAnon> <Greeting>Welcome to UnleashX FTP Server</Greeting> <SYST>UnleashX 0.36.0620A</SYST> <Boost>Yes</Boost> </FTP> <Newsfeed Enable="Yes" Interval="30"> <URL>www.xbox-scene.com/xbox1data/xbox-scene.xml</URL> <URL>www.xbins.org/xbins.xml</URL> </Newsfeed> <Preference> <Games AutoLaunch="No"></Games> <DVD AutoLaunch="No">F:\Apps\dvdx2\default.xbe</DVD> <AudioCD AutoLaunch="No">F:\Apps\xbmc\default.xbe</AudioCD> <Data AutoLaunch="No"></Data> <SoundVolume>85</SoundVolume> <MusicVolume>40</MusicVolume> <EnableSoundTrack Random="No" MusicPath="F:\Music">Off</EnableSoundTrack> <UseFahrenheit>False</UseFahrenheit> <SNTP Synchronize="No">216.244.192.3</SNTP> <Skin Path="F:/UXskins/">BlueSpek_h4xz0red_UX</Skin> <FanSpeed>1</FanSpeed> <ScreenSaver Wait="120" Type="1"> <Text></Text> </ScreenSaver> <AutoTurnOff>60</AutoTurnOff> <EnableDriveF>True</EnableDriveF> <EnableDriveG>False</EnableDriveG> <LEDColor>Orange</LEDColor> <AutoVideoMode UsePAL60="No" MultiRegion="PAL">No</AutoVideoMode> <VideoSettings Use480P="No" Use720P="No" Use1080I="No" Widescreen="No" FastRefresh="Yes" FilterLevel="3" Soften="Yes"></VideoSettings> <ContextMenu AllowItemEdit="Yes"></ContextMenu> <AutoRename>Yes</AutoRename> <AutoSetTime>No</AutoSetTime> <ScrollSpeed>22f</ScrollSpeed> </Preference> <Shortcut> <IR_0>F:\Apps\xbmc\default.xbe</IR_0> <IR_1>F:\Apps\dvdx2\default.xbe</IR_1> <GP_A>F:\Games\Sudeki\default.xbe</GP_A> <GP_B>F:\Apps\Xbmc\default.xbe</GP_B> <GP_X>F:\Apps\linksboks\default.xbe</GP_X> <GP_Y>F:\Apps\Xbmp\default.xbe</GP_Y> <GP_BLACK>C:\shutdown.xbe</GP_BLACK> <GP_START>C:\avalaunch.xbe</GP_START> <GP_WHITE>F:\Apps\Dvdx2\default.xbe</GP_WHITE> </Shortcut> </Settings> <Menu> <sort>off</sort> <List Text="Games" Sort="On" Auto="On" DelayLoad="True"> <Path>F:\Games</Path> </List> <Item Action="F:\Apps\Xbmc\default.xbe">XBox Media Center</Item> <Item Action="FileManager">File Manager</Item> <list text="apps" Sort="on" Auto="on"> <item action="C:/avalaunch.xbe">Avalaunch</item> <item action="C:/evoxdash.xbe">Evox</item> <Path>F:/apps</Path> </list> <List Text="Emulators" Sort="On" Auto="On"> <Path>F:\Emulators</Path> </List> <List Text="System" Sort="On" Auto="On"> <Sort>Off</Sort> <Item Action="Settings">Settings</Item> <Item Action="SavesManager">Game Saves Manager</Item> <Item Action="Skins">Skins</Item> <List Text="Format Cache (X,Y,Z)" Sort="Off" Auto="On" Batch="True"> <Item Action="Format" Arg1="X"></Item> <Item Action="Format" Arg1="Y"></Item> <Item Action="Format" Arg1="Z"></Item> </List> <Item Action="CopyDVD">Copy Disc</Item> <List Text="Misc" Sort="Off" Auto="On"> <Item Action="FTPStop">Stop FTP</Item> <Item Action="FTPStart">Start FTP</Item> <Item Action="FTPReset">Reset FTP</Item> <Item Action="NETReset">Restart Network</Item> <Item Action="TrayClose">Close DVD Tray</Item> <Item Action="TrayOpen">Open DVD Tray</Item> </List> </List> <List Text="Ports" Sort="On" Auto="On" DelayLoad="True"> <Path>F:\Ports</Path> </List> <Item Action="LaunchDVD">Launch DVD</Item> <Item Action="Restart">Reboot</Item> <Item Action="Shutdown">Shutdown</Item> </Menu> </UnleashX>
|
ILLusions0fGrander
Sep 13 2004, 06:14 AM
| QUOTE (XaRaNn @ Sep 13 2004, 04:58 AM) |
i know i close all my tags, and that im saving in good format |
| CODE |
<list text="apps" Sort="on" Auto="on"> <item action="C:/avalaunch.xbe">Avalaunch</item> <item action="C:/evoxdash.xbe">Evox</item> <list text="apps" Sort="on" Auto="on"> <Path>F:\Apps</Path> </list> </list> |
try that one, after you close the list text, you have to close the first list text tag
Jezz_X
Sep 13 2004, 06:26 AM
well I have somthing like this
| CODE |
<List Text="Dashboards..." Sort="On" Batch="False" DelayLoad="False"> <Item Action="c:\xboxdash.xbe">MSDash Original</Item> <Path>E:\dashs</Path> </List> |
But you might want to turn the Sort="On" to Sort="Off" if you want them to stay on top
Jezz_X
Sep 13 2004, 06:30 AM
I also just noticed that your full posting of your xml and not you first post has / instead of \
First Post
XML post
ILLusions0fGrander
Sep 13 2004, 06:33 AM
actually, mine wouldnt work, hes have to click apps again to see them...
Jezz_X
Sep 13 2004, 06:35 AM
| QUOTE (ILLusions0fGrander @ Sep 13 2004, 07:36 AM) |
the one i posted is what i think hes trying to do... he just wasnt closing his tag..
he closed the tag for the last one, but didnt close the whole tag, from what it seemed |
The one you posted is wrong too
| QUOTE |
<item action="C:/avalaunch.xbe">Avalaunch</item> <item action="C:/evoxdash.xbe">Evox</item>
|
it needs to be
<item action="C:\avalaunch.xbe">Avalaunch</item>
<item action="C:\evoxdash.xbe">Evox</item>
because c:/ is closing the tage before it gets to anything else in the line
Jezz_X
Sep 13 2004, 06:41 AM
In my eyes all he needs to do is this change the hole section
| CODE |
<list text="apps" Sort="on" Auto="on"> <item action="C:/avalaunch.xbe">Avalaunch</item> <item action="C:/evoxdash.xbe">Evox</item> <Path>F:/apps</Path> </list> |
to this changes are in bold and red
| QUOTE |
<list text="apps" Sort="off" Auto="on"> <item action="C:\avalaunch.xbe">Avalaunch</item> <item action="C:\evoxdash.xbe">Evox</item> <Path>F:\apps</Path> </list> |
ILLusions0fGrander
Sep 13 2004, 06:42 AM
i dont know if it matters as far as unleashX reads it, but as far as opening it in a web browser, it reads it fine... but thats beyond the point, it still wasnt what he was trying to do (what i posted)
but what you posted jezz might work, if so, i wonder why sort=on would freeze it?
Jezz_X
Sep 13 2004, 06:47 AM
Your missing the point. Or should I say the slash
Its not sort on thats stuffing it up its that he is using c:/ in his full xml post (not his original one) c:\ is correct c:/default.xbe is incorrect format and c:\default.xbe is correct
XaRaNn
Sep 15 2004, 03:18 AM
i jus tryed to change my slashes the other way around and i still get same problem
ive also tryed to do
| QUOTE |
<list text="apps" Sort="on" Auto="on"> <list text="Dashboards" Sort="on" Auto="on"> <item action="C:\avalaunch.xbe">Avalaunch</item> <item action="C:\evoxdash.xbe">Evox</item> </list> <Path>F:\apps</Path> </list>
|
wich shoud show a sub-menu named Dashboard on top and my apps sorted bottom, but that freezes unleashX too
also something else i noted is that sometimes itll take 1 second to freeze and the apps menu does show up, and if i either use the code i have in the quote up there or my old one, it shows up properly (with dashboard sub-menu on top for this quote, and with avalaunch and evox on top of apps for the old or my xml down there)
last thing, i also tryed deleting the UX savegame in the Game Saves Editor, clearingthe X,Y,Z cache, and deleting the items.xml file, all of wich doesnt fix my problem
edit : heres my config.xml now
| QUOTE |
<?xml version="1.0" encoding="utf-8"?> <UnleashX> <Settings> <MSDashBoard>C:\Xboxdash.xbe</MSDashBoard> <Password MaxTries="3"></Password> <Network Enable="Yes" Type="Static"> <IP>192.168.1.3</IP> <Subnet>255.255.255.0</Subnet> <Gateway>192.168.1.1</Gateway> <DNS1>24.200.241.10</DNS1> <DNS2>24.200.243.242</DNS2> <AutoDetect>Yes</AutoDetect> </Network> <FTP Enable="Yes"> <User>xbox</User> <Password>xbox</Password> <Port>21</Port> <MaxUsers>2</MaxUsers> <AllowAnon>No</AllowAnon> <Greeting>Welcome to UnleashX FTP Server</Greeting> <SYST>UnleashX 0.36.0620A</SYST> <Boost>Yes</Boost> </FTP> <Newsfeed Enable="Yes" Interval="30"> <URL>www.xbox-scene.com/xbox1data/xbox-scene.xml</URL> <URL>www.xbins.org/xbins.xml</URL> </Newsfeed> <Preference> <Games AutoLaunch="No"></Games> <DVD AutoLaunch="No">F:\Apps\dvdx2\default.xbe</DVD> <AudioCD AutoLaunch="No">F:\Apps\xbmc\default.xbe</AudioCD> <Data AutoLaunch="No"></Data> <SoundVolume>85</SoundVolume> <MusicVolume>40</MusicVolume> <EnableSoundTrack Random="No" MusicPath="F:\Music">Off</EnableSoundTrack> <UseFahrenheit>False</UseFahrenheit> <SNTP Synchronize="No">216.244.192.3</SNTP> <Skin Path="F:/UXskins/">chromatica</Skin> <FanSpeed>1</FanSpeed> <ScreenSaver Wait="120" Type="1"> <Text></Text> </ScreenSaver> <AutoTurnOff>60</AutoTurnOff> <EnableDriveF>True</EnableDriveF> <EnableDriveG>False</EnableDriveG> <LEDColor>Orange</LEDColor> <AutoVideoMode UsePAL60="No" MultiRegion="PAL">No</AutoVideoMode> <VideoSettings Use480P="No" Use720P="No" Use1080I="No" Widescreen="No" FastRefresh="Yes" FilterLevel="3" Soften="Yes"></VideoSettings> <ContextMenu AllowItemEdit="Yes"></ContextMenu> <AutoRename>Yes</AutoRename> <AutoSetTime>No</AutoSetTime> <ScrollSpeed>22f</ScrollSpeed> </Preference> <Shortcut> <IR_0>F:\Apps\xbmc\default.xbe</IR_0> <IR_1>F:\Apps\dvdx2\default.xbe</IR_1> <GP_A>F:\Games\Sudeki\default.xbe</GP_A> <GP_B>F:\Apps\Xbmc\default.xbe</GP_B> <GP_X>F:\Apps\linksboks\default.xbe</GP_X> <GP_Y>F:\Apps\Xbmp\default.xbe</GP_Y> <GP_BLACK>C:\shutdown.xbe</GP_BLACK> <GP_START>C:\avalaunch.xbe</GP_START> <GP_WHITE>F:\Apps\Dvdx2\default.xbe</GP_WHITE> </Shortcut> </Settings> <Menu> <sort>off</sort> <List Text="Games" Sort="On" Auto="On" DelayLoad="True"> <Path>F:\Games</Path> </List> <Item Action="F:\Apps\Xbmc\default.xbe">XBox Media Center</Item> <Item Action="FileManager">File Manager</Item> <list text="Apps" Sort="off" Auto="on"> <Item Action="C:\avalaunch.xbe">Avalaunch</Item> <Item Action="C:\evoxdash.xbe">Evox</Item> <Path>F:\apps</Path> </list> <List Text="Emulators" Sort="On" Auto="On"> <Path>F:\Emulators</Path> </List> <List Text="System" Sort="On" Auto="On"> <Sort>Off</Sort> <Item Action="Settings">Settings</Item> <Item Action="SavesManager">Game Saves Manager</Item> <Item Action="Skins">Skins</Item> <List Text="Format Cache (X,Y,Z)" Sort="Off" Auto="On" Batch="True"> <Item Action="Format" Arg1="X"></Item> <Item Action="Format" Arg1="Y"></Item> <Item Action="Format" Arg1="Z"></Item> </List> <Item Action="CopyDVD">Copy Disc</Item> <List Text="Misc" Sort="Off" Auto="On"> <Item Action="FTPStop">Stop FTP</Item> <Item Action="FTPStart">Start FTP</Item> <Item Action="FTPReset">Reset FTP</Item> <Item Action="NETReset">Restart Network</Item> <Item Action="TrayClose">Close DVD Tray</Item> <Item Action="TrayOpen">Open DVD Tray</Item> </List> </List> <List Text="Ports" Sort="On" Auto="On" DelayLoad="True"> <Path>F:\Ports</Path> </List> <Item Action="LaunchDVD">Launch DVD</Item> <Item Action="Restart">Reboot</Item> <Item Action="Shutdown">Shutdown</Item> </Menu> </UnleashX>
|
XaRaNn
Sep 15 2004, 03:43 AM
ok i must say this is the most fucked up problem ive had since i own my xbox
ive jus done some more fucking around
1.i changed the ux skin, then went directly to my app menu, and it didnt crash right away! then i tryed going down my apps, and half way thru it froze
2.then i rebooted, and it froze as soon as i entered apps menu
3.then i tryed to change skins again and go into the apps menu, and it also didnt crash right away. then i tryed loading avalaunch (first on the menu) whitout moving, and it loaded no problem, then i enter unleashx again from avalaunch, and as soon as i enter apps it freezes.
now im really out of things to try out.... either this is a big unleashX bug thats really weird, or its something im really not getting
GoraK2K4
Sep 15 2004, 03:51 PM
ur skin path maybe wrong, try backslashes instead of forward slashes
XaRaNn
Sep 17 2004, 09:05 AM
wow i finally found the problem, all i had to do was to delete complex tools from my apps folder, then no crashes at all
seems like you can use forward or back slashes, and that my synthax was right all along
weird shit
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.