Wraith Posted February 1, 2005 Posted February 1, 2005 This post is just so people don't suggest things that I already have on the cards.The official (but not complete) list of things to do, in no particular order:File includesRunaway RAM allocation in GFXinstallRe-add background image to GFX pluginConditional statementsThis WILL be changed whenever I decide to add something, or have finished something, etc. etc.If you have suggestions post below.Colour list:Yet to be looked atFixed in current beta versionAwaiting more informationFixing bugs for next release
prathapml Posted February 1, 2005 Posted February 1, 2005 [*]Add functionality to Selection pluginThe one where it will wait for 10 seconds (or probably ability to set the time to wait).If no selections are made and install button pressed, it will just proceed with installing the default selections.It should be possible with a html refresh tag that directs to the install function? (dunno...)
Wraith Posted February 1, 2005 Author Posted February 1, 2005 Yeah it'd be doable via javascript... dunno HOW tho
MCT Posted February 2, 2005 Posted February 2, 2005 take a look @ wpi maybe?but my suggestion is, when making a .log file, what about having it output the problematic line XMLParser::LoadFile(C:\Documents and Settings\Administrator\Desktop\New Folder\XPlode.xml) Overlapping tags detected. Found "program" but needed to find "execute". Offending tag: <execute>
Wraith Posted February 2, 2005 Author Posted February 2, 2005 I couldn't get line numbers working before, as the XML parser was a bit screwy.That was ages ago, I'll try doing it for the next version where stuff should work properly.
Girkers Posted February 8, 2005 Posted February 8, 2005 Yeah it'd be doable via javascript... dunno HOW tho I got this script to work after many painstaking minutes, as I use Firefox and not the "Other" product, so I wanted to make it conform to W3C standards. Simply load it into your browser and it "should" work. Although when I tested it in IE, it didn't work, so much for standards.<span id="clock">00:00:11:00</span><input type=button value="start countdown!" onclick="onTimer()"><input type=button value="stop countdown!" onclick="window.clearTimeout(timer);"><script language="Javascript">var elapse = 100;var start = "00:00:11:00";var finish = "00:00:00:00";var timer = null;function onTimer(i){if (start == finish){ window.clearTimeout(timer); alert("time is reach!"); return;}var hms = new String(start).split(":");var ms = new Number(hms[3]);var s = new Number(hms[2]);var m = new Number(hms[1]);var h = new Number(hms[0]);ms -= 10;if (ms < 0){ ms = 90; s -= 1; if (s < 0) { s = 59; m -= 1; } if (m < 0) { m = 59; h -= 1; }}var ms = ms < 10 ? ("0" + ms) : ms;var ss = s < 10 ? ("0" + s) : s;var sm = m < 10 ? ("0" + m) : m;var sh = h < 10 ? ("0" + h) : h;start = sh + ":" + sm + ":" + ss + ":" + ms;writeLayer("clock",start);timer = window.setTimeout("onTimer()",elapse);} function writeLayer(layerID,txt){ if(document.body.getAttributeNode){ node = document.getElementById(layerID); var newRange = document.createRange(); newRange.selectNodeContents(node); newRange.deleteContents(); var newHTML = newRange.createContextualFragment(txt); node.appendChild(newHTML); }else if(document.getElementById){ document.getElementById(layerID).innerHTML=txt; }else if(document.all){ document.all[layerID].innerHTML=txt; }else if(document.layers){ with(document.layers[layerID].document){ open(); write(txt); close(); } } }</script>The timer itself should work respective of which browser you use, it is only the writing the information to the screen that seems the problem that I was finding. If I could be of any more help with this drop me an email.
Wraith Posted February 11, 2005 Author Posted February 11, 2005 Added colour key so people can tell what's happening.
mpioner Posted March 9, 2005 Posted March 9, 2005 Hello Wraith!Sorry for my English.I use your program XPlode.I’d like to say I like it, but I have a suggestion.Now to install a program (for example Nero) and to add the Nero settings to the system registry we should create two “execute” tags in “XPlode-SelectInstall.xml”.We would like to have an opportunity to execute in one CheckBox several programs or commands.Now it is not possible in XPlode.P.S. Existing solution of using bat-files is not convenient.
MCT Posted March 9, 2005 Posted March 9, 2005 ya, i too would like what mpioner wants, will save on writing batch files
whatever Posted April 2, 2005 Posted April 2, 2005 Sorry for my English.Can Xplode add a CHECKED ONLY Box?Such as qchain.exe, When you select one of above option(Hotfixes), this program MUST be execute at the end.<input type=checkbox disabled checked>text</input>
Wraith Posted April 3, 2005 Author Posted April 3, 2005 I have another method which I'm probably going to implement for such a thing.What I'm thinking is another <items> container, but <pre-execute> and <post-execute>.Essentially these will get run before and after the display plugin has spawned, so you can hide windows and whatnot before XPlode launches (CMDLINES.TXT, RunOnceEx etc.), or reboot the computer after execution.If people think it's a good idea, I'll implement it, otherwise.........
SlimShady Posted April 3, 2005 Posted April 3, 2005 Great idea.We will be able to specify multiple commands, right?
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now