Jump to content

myselfidem

Members
  • Posts

    600
  • Joined

  • Last visited

  • Days Won

    9

Posts posted by myselfidem

  1. OK! I understand.

     

    Yes, this can be done.

    However it's not a good idea, because if the user removes unwanted images (Starter, HomePremium), the index number is not the same for the images!

     

    Removing images index numbers change.

     

    *Edit: To save time, we can disable internet connection and Antivirus!

     

    More code can be added for a full install.wim with all images. But each image must be mounted and unmounted.

    However, at this time, I'm busy to improve WPI.

     

    Thanks and regards

  2. About Skype msi!

     

    The next WPI release v8.6.7 will have a new function {MSI}:

     

    http://www.msfn.org/board/topic/158273-wpi-86-and-beyond-bugbugfix-thread/page__view__findpost__p__1042077

     

     


    **** Added {CMD} to the list of functions.
    **** Add Win2k to the conditions.
    **** Fixed a executebefore64bit error.
    **** User file written version updated slightly.
    **** Fixed a autologoncount error.
    **** Fixed a alert sound location error.
    **** More info added to the installer log.
    **** Removed more old leftover code.
    **** Added setfilesystem to the conditions.
    **** More fontinstaller improvements.
    **** Tons of textual errors fixed.
    **** Added {MSI} to the commands for standard msi files.
    **** Added alerts to themewizard when exiting.
    **** Fixed a couple of resolution errors.
    **** Restored "Float" for the tooltips.
    **** Tons of minor features improved.
    **** Fixed AutoAdminLogin feature.
    **** Added HiPerformance Power Scheme for Win7.

     

     

     

    Tested and working fine:

    http://www.msfn.org/board/topic/158272-languages-themes-manuals-mods/page__view__findpost__p__1040896

     

    However it's only a "Supporter release"...

    But many bugs have been solved and I encourage you to acquire the new WPI_v.8.6.7

     

    Cheers and regards

  3. 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

  4. 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

×
×
  • Create New...