Hi
1) Yes flash supports all of those controls and listens for events
2) You can create your own forms
3) Saving results as text and printing can be achieved
4) Flash works best with a class framework
Rather than a tutorial a working example to refer to may be of more help as you work your...
with flash mx only ( not 2004 ) you dont have a loader component
all you can do is scale the photo after it has fully loaded
let me know if you need code
then the photos are larger than the box. you could scale them after they have loaded or if you are using mx2004 or above use a loader component which will automatically scale the photos to fit
called your xml file link.xml
code in frame 1 of the movie
url_xml = new XML();
url_xml.ignoreWhite = true;
url_xml.onLoad = function() {
image = url_xml.firstChild.childNodes[0].firstChild.firstChild.nodeValue;
link = url_xml.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue...
Assuming that you are loading the files into an empty movie clip (empty_mc)
Frame 1 of main movie
function nextRandom(){
empty_mc.loadMovie("image"+random(46)+".swf");
}
nextRandom();
and in the last frame of all 47 swfs add
_parent.nextRandom();
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.