Hi,
What you could do is have two IMAGE OBJECTS for each link to your MP3 files. One that is the "normal" image, and one that is the "highlighted" image. On the PAGE OPEN event you will hide all of the "highlighted" IMAGE OBJECTS, so that when the page first loads it will appear normal.
Then when the user selects a link you will have to:
1) Hide all the "highlighted" IMAGE OBJECTS (if they are already hidden this will not do anything)
2) Show all of the “normal” IMAGE OBJECTS
3) Hide the “normal” IMAGE OBJECTS associated with the “current” link
4) Show the "highlighted" IMAGE OBJECT associated with the “current” link
Note: The “normal” and “highlighted” IMAGE OBJECTS, for each link, will have to be directly on top of each other.
You might have to play around with this method in order to fully understand it, but it should give you the functionality that you desire.
As for your "Now Playing" window, you should look into using variables. Take a look at the "Multiple Pages" Project Template.
Notice, on the first page, how the text on the right of the screen changes when the mouse hovers over the TEXT OBJECT on the right? Basically all that is happening here is the value of the variable %InfoVar% is being set. Use this method in order to set a "Now Playing" variable.
Then display that “Now Playing” variable in a SHOW MESSAGE dialog or on the current page like the “Multiple Pages” template.
More information on setting variables can be found here: http://www.indigorose.com/kb/AMS30Tu...gAndHiding.pdf
mark.
What you could do is have two IMAGE OBJECTS for each link to your MP3 files. One that is the "normal" image, and one that is the "highlighted" image. On the PAGE OPEN event you will hide all of the "highlighted" IMAGE OBJECTS, so that when the page first loads it will appear normal.
Then when the user selects a link you will have to:
1) Hide all the "highlighted" IMAGE OBJECTS (if they are already hidden this will not do anything)
2) Show all of the “normal” IMAGE OBJECTS
3) Hide the “normal” IMAGE OBJECTS associated with the “current” link
4) Show the "highlighted" IMAGE OBJECT associated with the “current” link
Note: The “normal” and “highlighted” IMAGE OBJECTS, for each link, will have to be directly on top of each other.
You might have to play around with this method in order to fully understand it, but it should give you the functionality that you desire.
As for your "Now Playing" window, you should look into using variables. Take a look at the "Multiple Pages" Project Template.
Notice, on the first page, how the text on the right of the screen changes when the mouse hovers over the TEXT OBJECT on the right? Basically all that is happening here is the value of the variable %InfoVar% is being set. Use this method in order to set a "Now Playing" variable.
Then display that “Now Playing” variable in a SHOW MESSAGE dialog or on the current page like the “Multiple Pages” template.
More information on setting variables can be found here: http://www.indigorose.com/kb/AMS30Tu...gAndHiding.pdf
mark.
Comment