Jump to content

Featured Replies

Posted

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

  • Author

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

post-23163-0-85990000-1370585501_thumb.j

Edited by myselfidem

  • Author

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

  • Author

Inside themewizard.js

 

On line 681:

 

We can change: SkinPreset to Theme

function 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 by myselfidem

  • Author

Inside configwizard.js

 

We can add on line 271:

SortOrderGrid.attachEvent("onSelectionChange",ConfigUpdated);

Thanks and regards

Edited by myselfidem

  • Author

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 by myselfidem

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...