myselfidem Posted June 7, 2013 Posted June 7, 2013 Inside tips.js about:function qdh(t,d,s) On line 49:function qdh(t,d,s){ position="main.js"; whatfunc="qdh()";We can change to (position):function qdh(t,d,s){ position="tips.js"; whatfunc="qdh()";Inside optionswizardtemplate_window.htm (values inside api.js) Errors on lines 199 and 200:<option value="12802">1280x768</option><option value="12803">1280x800</option>Change to:<option value="12803">1280x768</option> <option value="12804">1280x800</option>Thanks and regards Quote
myselfidem Posted June 7, 2013 Author Posted June 7, 2013 (edited) I suggest to restore the option Float for Tooltips working now: 1 - Inside themewizard.js (on line 271): Change:with (getElementById("AppearanceBehavior")) { options[0].text=getText(optNormal); options[1].text=getText(optStatic); options[2].text=getText(optVisible); options[3].text=getText(optSticky); options[4].text=getText(optKeep); } with (getElementById("TipPositionType")) { options[0].text=getText(optLeft); options[1].text=getText(optCenter); options[2].text=getText(optRight); options[3].text=getText(optFixed); }To:with (getElementById("AppearanceBehavior")) { options[0].text=getText(optNormal); options[1].text=getText(optStatic); options[2].text=getText(optVisible); options[3].text=getText(optSticky); options[4].text=getText(optFloat); } with (getElementById("TipPositionType")) { options[0].text=getText(optLeft); options[1].text=getText(optCenter); options[2].text=getText(optRight); options[3].text=getText(optFixed); }optKeep is replaced with optFloat ! 2 - Inside lang_en.js: Remove the line 719: optKeep[lang] = ['Keep']; And add the line 713: optFloat[lang] = ['Float']; 3 - Inside global_lang.js: Remove optKeep=[], And add: optFloat=[], Tested and works fine for me. Thanks to check if it's OK. Here is the new lang_fr.js if needed. Regards Edited June 7, 2013 by myselfidem Quote
myselfidem Posted June 7, 2013 Author Posted June 7, 2013 Inside WPI.hta It seems we can remove the line 9:<script type="text/javascript" src="../WPIScripts/userfunctions.js" application="yes"></script>Because this file doesn't exist. Thanks to check if it's OK. Regards Quote
myselfidem Posted June 7, 2013 Author Posted June 7, 2013 (edited) Inside themewizard.js On line 681: We can change: SkinPreset to Themefunction UserThemeDefaults(){ position="themewizard.js"; whatfunc="UserThemeDefaults()"; SkinPreset='Classic';To:function UserThemeDefaults(){ position="themewizard.js"; whatfunc="UserThemeDefaults()"; Theme='Win7';Tested and works fine for me. Thanks and regards Edited June 7, 2013 by myselfidem Quote
myselfidem Posted June 7, 2013 Author Posted June 7, 2013 (edited) Inside configwizard.js We can add on line 271:SortOrderGrid.attachEvent("onSelectionChange",ConfigUpdated);Thanks and regards Edited June 7, 2013 by myselfidem Quote
myselfidem Posted June 7, 2013 Author Posted June 7, 2013 (edited) I think it would be useful to change inside globals.js (on line 62): Change:var ShowInstallerImages=false;To:var ShowInstallerImages=true;Thanks and regards Edited June 7, 2013 by myselfidem Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.