New Version 3.1 online
#1
Posted 27 December 2004 - 08:59 AM
Version 3.1 is now online.
Configuration wizard's been finished. Download it on the WPI homepage.
#2
Posted 27 December 2004 - 09:25 AM
The options menu isn't always displayed well....On the right side there are missing some parts of the explanations.....or do i Need 1600 x 1200 for it?
And is it possible to put a example into the config menu that does not appear in the config.js so it is there even if you already added a prog?
#3
Posted 27 December 2004 - 09:56 AM
Best regards
IGIdeus
#4
Posted 27 December 2004 - 10:11 AM
thanks for escape feature
i have another hint for this release but i don't know if javascript supports it
i'd like the possibility to popup options page when i dasabled options button.
i'd like to press some keybord combo ex: CTRL + O to bring options pane up, or at least to bring back options button.
and when options language configuration files will be avaible i can help translating it in italian
bye
sonica
#5
Posted 27 December 2004 - 10:14 AM
#6
Posted 27 December 2004 - 10:24 AM
Edit common/optionswizardtemplate.htm, line 181
set it to
<td width="90%">ToolTip CSS Style: TitleColor, TextColor, TitleBgColor, TextBgColor, TitleBgImag, TextBgImag, TitleTextAlign, TextTextAlign, TitleFontFace, TextFontFace, TipPosition, StickyStyle, TitleFontSize, TextFontSize, Width, Height, BorderSize, PadTextArea, CoordinateX , CoordinateY, TransitionNumber, TransitionDuration, TransparencyLevel , ShadowType, ShadowColor</td>
and all will be nice.
will be in next buxfix release.
#7
Posted 27 December 2004 - 01:01 PM
i am not able to insert this:
cmd1[pn]=['cdrom', '$OEM$\\Install\\net_framework\\netfxsp1.exe']
if i manually edit config.js and insert that string then wpi loads it as:
cdrom', '$OEM$\Install\net_framework\netfxsp1.exe
and if i save from wpi it saves it as:
cmd1[pn]=['cdrom\', \'$OEM$\\Install\\net_framework\\netfxsp1.exe']
i don't know what to insert in form to have the right string
sonica
#8
Posted 27 December 2004 - 01:22 PM
what exactly are you trying to do?
looks like you want to install from CDROM?
then you should move your Install directory out of the $OEM$ directory first as this will always be copied to the hard drive!
put it in the root of your CD
then your cmd line should look like this
cmd1[pn]=['%cdrom%\\Install\\net_framework\\netfxsp1.exe']
To insert it in the config page you only need this
%cdrom%\Install\net_framework\netfxsp1.exein the cmd entry line
#9
Posted 27 December 2004 - 01:59 PM
BritishBulldog, on Dec 27 2004, 01:22 PM, said:
what exactly are you trying to do?
looks like you want to install from CDROM?
then you should move your Install directory out of the $OEM$ directory first as this will always be copied to the hard drive!
put it in the root of your CD
then your cmd line should look like this
cmd1[pn]=['%cdrom%\\Install\\net_framework\\netfxsp1.exe']
To insert it in the config page you only need this
%cdrom%\Install\net_framework\netfxsp1.exein the cmd entry line
Quote
then you should move your Install directory out of the $OEM$ directory first as this will always be copied to the hard drive!
yeah, i want to do this. for what i know not everything inside $OEM£ is copied on hd, just things in $...$ subfolders
i was using that syntax, as written in an old wpi version, in fact that syntax still works in wpi
var cmd1=[]; // drive + Command Line 1, drive = 'systemdrive' or 'cdrom' or 'programfiles' or 'windir' or ''
however using %cdrom% avoid quotes problem
thanks
sonica
#10
Posted 27 December 2004 - 02:29 PM
#11
Posted 28 December 2004 - 12:16 AM
Well - the install-button is highlighted when you click on options or config. That's a bug (and fixing took about 2 seconds)
BUT : CONFIG OPENS !!!
It just takes some time ('bout 10 to 20 seconds) to render the HTML.
#13
Posted 28 December 2004 - 02:37 AM
#14
Posted 28 December 2004 - 05:03 AM
#18
Posted 28 December 2004 - 10:34 AM
Now just remove the Disc path option.
Here is my WPI with Options and Config Button in the lang.js
I also updated the "txtUsage[lang]" Please look at it.
I only updated english and german...so the other languages have to be done!
#19
Posted 28 December 2004 - 02:39 PM
#20
Posted 28 December 2004 - 04:05 PM
To answer your question:
There's 2 new templates: 1 for the options wizard, and 1 for the config wizard. Both can be found in the common folder.
To make the multi-language the following steps need to be taken:
* For each fixed label on the page, you'd have to define a corresponding label in lang.js.
* At least the english language label must be defined.
* The fixed strings on the .htm template need to be replaced by (simple) scripts.
An example:
Original from optionswizardtemplate.htm
<td nowrap>Language</td>
lang.js has to be updated:
var lblOptionsLanguage=[]; ... lang = 'en'; ... lblOptionsLanguage[lang]=['Language']; ... lang = 'de'; ... lblOptionsLanguage[lang]=['Sprache']; ...
Modified optionswizardtemplate.htm
<td nowrap>document.write(getText(lblOptionsLanguage));</td>
That's it. A lot of work to do, you see ?



Help


Back to top









