Wikimedia Commons – Featured Pictures – here’s a great site to find some cool photographs
Here’s the mostly complete ActionScript code for the SuperQuest Workshop: Flash-driven Websites Saved My Life:
/**********************************
/* Load XML Files for main windows
/***********************************/
var myXML:XML = new XML();
myXML.ignoreWhite = true;
myXML.load('home.xml');
myXML.onLoad = function(success) {
if(success) {
// trace(myXML.firstChild);
var contentTXT = myXML.firstChild.childNodes[2];
contentWindow = contentTXT;
var headerTXT = myXML.firstChild.childNodes[0];
header = headerTXT;
var side_columnTXT = myXML.firstChild.childNodes[3];
side_column = side_columnTXT;
}
}
home_btn.onRelease = function() {
myXML.load('home.xml');
gotoAndStop('home');
}
characters.onRelease = function() {
myXML.load('characters.xml');
gotoAndStop('characters');
}
/**********************************
/* Load XML Files for navigation buttons
/***********************************/
var myButtons:XML = new XML(); // declare variable
myButtons.ignoreWhite = true;
myButtons.load('buttons.xml');
myButtons.onLoad = function(success) {
if(success) {
var homeTXT = myButtons.firstChild.firstChild.childNodes[0];
home = homeTXT;
var charactersTXT = myButtons.firstChild.childNodes[1].childNodes[0];
characters = charactersTXT;
var plotTXT = myButtons.firstChild.childNodes[2].childNodes[0];
plot = plotTXT;
var theoriesTXT = myButtons.firstChild.childNodes[3].childNodes[0];
theories = theoriesTXT;
}
}
stop();
[...] the rest here: SuperQuest ActionScript Code Categories: Web Design Tags: aggressive, chris, chris-anderson, david, flash-driven, [...]
[...] SuperQuest ActionScript Code. Jul 01. View post: hundredvisions.com » Blog Archive » SuperQuest ActionScript Code [...]