Hi I am a newbie to actionscript with limited javascript experience. i’d like to know if actionscript is able to write html to the page becuase I want to include title tags and a link to a new page with a randon image script.
I used the script I found for loading random backgrounds @ kirupa.com and have modifed it to include
load in random jpg files like so:
photoclip.loadMovie(“photo0.jpg”);
choice = Math.round(Math.random()*5);
switch (choice) {
case 0 :
break;
case 1 :
photoclip.loadMovie(“photo1.jpg”);
break;
case 2 :
photoclip.loadMovie(“photo2.jpg”);
break;
//more cases follow…
}
the next step is to display html titles tags so the user can see a description of the photo, when they rollover the image.
Is this possible using some kind of actionscript equivalent for document.writein ?
thanks for your help