This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Launch Readme
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 16, 2009
02:26 PM
Launch Readme
Hello,
I have a Readme.txt file in my application and wanted to display the checkbox at the end of successful installation. Btw, I am using the Basic MSI project in Installshield 2010 Professional.
In the "General Information" section, I provided the path for the "ReadMe" property as "[INSTALLDIR]Readme.txt". Also, I followed the below mentioned KB article to add the new properties in the "String Editor" section.
http://kb.acresso.com/selfservice/microsites/search.do?cmd=displayKC&docType=kc&externalId=Q106070&sliceId=
Now, starting from step 2 of the above KB Article, I can't see anything like the "TabStop" on the Bitmap dialog and there is no "Readme" checkbox. It was like I am using a different product.
All I see for the SetupCompleteSuccess dialog in the "CheckLaunchReadMe" dialog behavior is the Condition being set as:
Show -> SHOWLAUNCHREADME="-1" And READMEFILETOLAUNCHATEND <> "" And NOT Installed And NOT ISENABLEDWUSFINISHDIALOG
Can anyone tell me what I am missing? I'll greatly appreciate it.
Thanks!
I have a Readme.txt file in my application and wanted to display the checkbox at the end of successful installation. Btw, I am using the Basic MSI project in Installshield 2010 Professional.
In the "General Information" section, I provided the path for the "ReadMe" property as "[INSTALLDIR]Readme.txt". Also, I followed the below mentioned KB article to add the new properties in the "String Editor" section.
http://kb.acresso.com/selfservice/microsites/search.do?cmd=displayKC&docType=kc&externalId=Q106070&sliceId=
Now, starting from step 2 of the above KB Article, I can't see anything like the "TabStop" on the Bitmap dialog and there is no "Readme" checkbox. It was like I am using a different product.
All I see for the SetupCompleteSuccess dialog in the "CheckLaunchReadMe" dialog behavior is the Condition being set as:
Show -> SHOWLAUNCHREADME="-1" And READMEFILETOLAUNCHATEND <> "" And NOT Installed And NOT ISENABLEDWUSFINISHDIALOG
Can anyone tell me what I am missing? I'll greatly appreciate it.
Thanks!
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 17, 2009
07:44 PM
Perhaps see this old newsletter tip for some ideas (PDF): http://www.acresso.com/webdocuments/PDF/launch.pdf.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Dec 19, 2009
10:37 PM
I don't know why there is a check box there when you can't use the check box. There should be an easy way to turn this on.
One should be-able to click on a button or in the Project Assitent check a box to tell "IS" a path to a readme file. "IS" should take that and turn on that function.
I need to do that and forgot where I found that artical or KB on how to use that function.
One should be-able to click on a button or in the Project Assitent check a box to tell "IS" a path to a readme file. "IS" should take that and turn on that function.
I need to do that and forgot where I found that artical or KB on how to use that function.
Not applicable
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Dec 21, 2009
04:08 AM
The check box name is “CheckLaunchReadme”.
By default (IS2010) bitmap tabstop is true and “CheckLaunchReadme” value is 1.
1.Create an exe CA path referencing a directory. Give the below values,
Working directory = SystemFolder
Filename & Command line = notepad.exe [!readme.txt],
readme.txt is the filekey used as a key into the File table (first column in the file table of the reamde.txt). You can also use [INSTALLDIR]path
image is attached.
2.Using property manager add two properties –
SHOWLAUNCHREADME= -1
READMEFILETOLAUNCHATEND =1
3.Dialog ->Setupcompletesuccess ->Behavior, add
DoAction readme(your CA) LAUNCHREADME="1"
By default (IS2010) bitmap tabstop is true and “CheckLaunchReadme” value is 1.
1.Create an exe CA path referencing a directory. Give the below values,
Working directory = SystemFolder
Filename & Command line = notepad.exe [!readme.txt],
readme.txt is the filekey used as a key into the File table (first column in the file table of the reamde.txt). You can also use [INSTALLDIR]path
image is attached.
2.Using property manager add two properties –
SHOWLAUNCHREADME= -1
READMEFILETOLAUNCHATEND =1
3.Dialog ->Setupcompletesuccess ->Behavior, add
DoAction readme(your CA) LAUNCHREADME="1"