Re: [WiX-users] Preselecting feature and disable install on first use

2006-10-06 Thread Bob Arnson
vbtricks wrote:
 selecting by default.
   
Sorry, does that mean install locally? If so, you just need to set the 
feature level lower to match INSTALLLEVEL. You're already disabling it 
when Firefox isn't detected, so you want it to be installed always when 
it is.

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Preselecting feature and disable install on first use

2006-10-06 Thread vbtricks

Salut,

seems I'm getting to my English limits with this. Let me have another try to
explain it. I'm referring to the Customize dialog of the setup process where
you can select the features you want to install. The main one, MainProgramm
is selected by default and can not be deselected. The German feature is not
selected by default, as well as the Firefox extension feature.

What I now want is, that the Firefox extension is selected by default, if
the user chooses the customize option and that it is installed when the user
clicks Typical as well. I tried to set the InstallDefault attribute to
local, but unfortunately it is not selected by default if I click on
customize in the setup.

I hope, I've explained it better now?

Thanks for your patience,

Stefan


Bob Arnson-3 wrote:
 
 vbtricks wrote:
 selecting by default.
   
 Sorry, does that mean install locally? If so, you just need to set the 
 feature level lower to match INSTALLLEVEL. You're already disabling it 
 when Firefox isn't detected, so you want it to be installed always when 
 it is.
 
 -- 
 sig://boB
 http://bobs.org
 
 
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share
 your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
 
 

-- 
View this message in context: 
http://www.nabble.com/Preselecting-feature-and-disable-%22install-on-first-use%22-tf2381534.html#a6683213
Sent from the wix-users mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Preselecting feature and disable install on first use

2006-10-06 Thread Bob Arnson
vbtricks wrote:
 What I now want is, that the Firefox extension is selected by default, if
 the user chooses the customize option and that it is installed when the user
 clicks Typical as well. I tried to set the InstallDefault attribute to
 local, but unfortunately it is not selected by default if I click on
 customize in the setup.

 I hope, I've explained it better now?
   
Yep, much. Thanks. So my last message should apply -- the fragment you 
posted had the Firefox extension feature with a level of 1001, so unless 
your product's INSTALLLEVEL was 1001 or higher, it wouldn't be selected 
for installation by default. The feature condition disables it entirely 
but doesn't boost its install level.

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Preselecting feature and disable install on first use

2006-10-05 Thread vbtricks

Salut,

disabling the firefox-extension-feature when the browser's not installed now
works. Still I got some problem. I'm trying to preselect the firefox
extension-feature and disabling the install on first use option as my
application does not support it. This is how far I got

Feature Id=Complete Title=Basic installation Level=1
Description=Complete installation Display=expand
ConfigurableDirectory=INSTALLDIR AllowAdvertise=no Absent=disallow
InstallDefault=local
  Feature Id=MainProgram Title=Program Description=The main
executable. Level=2 Absent=disallow TypicalDefault=install
InstallDefault=local AllowAdvertise=no
ComponentRef Id=MainExecutable /
ComponentRef Id=PluginsConnector /
ComponentRef Id=DSIEHelper /
ComponentRef Id=FileTypeIcon /
ComponentRef Id=EnglishLangFile /
ComponentRef Id=HelpFileEng /
ComponentRef Id=SearchSettings /
ComponentRef Id=FileNameCreator /
ComponentRef Id=RegKeysPrivileged /
ComponentRef Id=RegKeysNonPrivileged /
ComponentRef Id=UpdateNotify /
ComponentRef Id=FirefoxExtension /
  /Feature
  Feature Id=GermanLangPack Title=German Language Pack
Description=German Language Pack Level=1000
ComponentRef Id=HelpFileGer /
ComponentRef Id=GermanLangFile /
  /Feature
  Feature Id=FirefoxExtension Level=1001 Title=Extension for
Mozilla Firefox Description=Extension for Mozilla Firefox
TypicalDefault=install InstallDefault=followParent
ComponentRef Id=jsFile /
ComponentRef Id=overlay /
ComponentRef Id=pngIcon /
ComponentRef Id=StyleSheet /
ComponentRef Id=ManifestChrome /
ComponentRef Id=rdfInstall /
Condition Level=0FIREFOX_INSTALL_VERSION=/Condition
  /Feature
/Feature

But no matter which attributes I add to the extension feature, it is not
preselected. Can you help me?


Thanks in advance,

Stefan
-- 
View this message in context: 
http://www.nabble.com/Preselecting-feature-and-disable-%22install-on-first-use%22-tf2381534.html#a6637113
Sent from the wix-users mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Preselecting feature and disable install on first use

2006-10-05 Thread Bob Arnson
vbtricks wrote:
 But no matter which attributes I add to the extension feature, it is not
 preselected. Can you help me?
   
What do you mean by preselected?

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users