Creating CD-ROM Browsing Windows
Document ID: IR10076The information in this article applies to:
- AutoPlay Media Studio 5.0 Standard Edition
- AutoPlay Media Studio 5.0 Professional Edition
SUMMARY
This article describes how to create CD-ROM browsing windows.
DISCUSSION
In AutoPlay Media Studio 5.0, it is possible to open a folder on a user's machine, either within your project, or in an external window (the same as double-clicking on a folder on your desktop). It is also possible to open a folder in explore view (the same as using windows explorer).
- Opening a folder within your project: (Pro Edition Only):
- Create a web object, and name it Web1.
- Call the action Web.LoadURL:
Web.LoadURL("Web1", "C:\\");
If the user does not have Internet Explorer 4.0 or later as their default browser, the folder view will be html, not windows based.
- Create a web object, and name it Web1.
- Opening a folder in an external window:
- Call the action File.Open:
File.Open("C:\\", "", SW_SHOWNORMAL);
- Call the action File.Open:
- Opening a folder in an explorer window:
- Call the action File.ExploreFolder:
File.ExploreFolder("C:\\", SW_SHOWNORMAL);
To browse the CD-Rom from your autoplay application, use _SourceFolder as the path to browse/open.
- Call the action File.ExploreFolder:
MORE INFORMATION
For more information please see the following topics in the AutoPlay Media Studio 5.0 help file:
- Program Reference | Actions | File | File.Open
- Program Reference | Actions | File | File.ExploreFolder
- Program Reference | Actions | Web | Web.LoadURL
KEYWORDS: AutoPlay Media Studio 5.0, CD Rom, Browse, Window
Last reviewed: October 3, 2003
Copyright © 2003 Indigo Rose Corporation. All rights reserved.
Comment