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
- :
- Re: run an event of another script
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
Dec 20, 2009
06:03 AM
run an event of another script
Hi,
I have two scripts in the installscripts: a.rul, b.rul
I am trying to call a function of b.url from a.url.
how can I do it ?
Thanks, Ido
I have two scripts in the installscripts: a.rul, b.rul
I am trying to call a function of b.url from a.url.
how can I do it ?
Thanks, Ido
1 Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Dec 20, 2009
11:01 PM
you need to include the b.rul file in a.rul. Use the following syntax:
#include "b.rul"
after that, you will be able to call the b.rul functions in a.rul
#include "b.rul"
after that, you will be able to call the b.rul functions in a.rul
