PDA

View Full Version : Need Help Browsing CD ROM Contents Within AMS50


The Phantom
10-12-2004, 01:12 PM
:huh I have tried to set up "Browsing CD ROM" using AMS50, to be viewed within one of the project pages.

I have a Button jumping to a page that has a Web Object named "_SourceFolder" on it.

The Actions I have for this Button are:
01 Page.Jump("Page7");
02 url = _SourceFolder
03 Web.LoadURL("_SourceFolder", "_SourceFolder");

The Web Object is not assigned any actions, nor is there any url placed in the Properties on the Settings tab.

Viewing all the Readme Files have not resolved the problem.

What am I missing?.....Do I need to create a .htm file for it, and if so: what do I use for the text in the .htm file and where should it be placed within the project???

Any Help Out There????.......Thanks

Stefan_M
10-12-2004, 02:32 PM
_SourceFolder is a so called "Global Variable".

try:
Web.LoadURL(_SourceFolder, _SourceFolder);


Online-help Example 3
Web.LoadURL("Web1", _SourceFolder.."\\AutoPlay\\Docs\\index.html#intro");


Take a look at the project template 'Web Browser'

Stefan_M