|
Use HTML
HTML Object is a built-in Web browser.
Ceate or edit a Web page with your favorite HTML editor - DreamWeaver, FrontPage, Word, HomeSite, Notepad or what ever. Add pictures, animations, scripts, ActiveX, Java Applets, Flash, music, sound, or any other embeddable objects. Add Hyper Links as usual if the URL is pointing to a Web resource. The only new rule in Autorun Pro bult-in web browser you can call internal commands.
By displaying your web page using the HTML object (built-in Web browser), you can use several internal commands within your web page to perform tasks such as launching files, sending E-mails, playing sound and music files, printing files, browsing CDs and closing the autorun. You use these commands in your web page using A HREF links.
For example
<A HREF="CMD_OPEN=license.txt">View License</A>
Would display "View License" in the window. If clicked, license.txt will open.
<A HREF="CMD_BROWSE">Browse the CD-ROM</A>
If clicked, the contents of the CD are displayed using the Windows explorer.
<A HREF="CMD_EXIT">Click to Quit</A>
If clicked, the autorun will exit.
Built-in browser HTML internal commands
CMD_OPEN
- Open or Execute Files
- Syntax: CMD_OPEN=filename
Examples:
- CMD_OPEN=setup\mysetup.exe
- CMD_OPEN=readme.txt
CMD_EMAIL
- Send Email
- Syntax: CMD_EMAIL=email address
Example:
- CMD_EMAIL=support@longion.com
CMD_SOUND
- Play sound files
- Syntax: CMD_SOUND=filename
Examples:
- CMD_SOUND=sound.wav
- CMD_SOUND=sound.mid
CMD_PRINT
- Print files
- Syntax: CMD_PRINT=filename
Examples:
- CMD_PRINT=readme.txt
- CMD_PRINT=licence.txt
- CMD_BROWSE
- Browse CDs
CMD_EXIT
|