I am working on a Flash AS2 script that adds an instance of a movieclip for each node in an XML file. I have also included titles for each node in the XML file and I would like to display these when a user clicks on one of the individual movieclips. I have played around with clipevents and attachMovie but for the life of me I can't figure out how to approach this problem. Any ideas?

Ok Now with update script - yea!

var myXML:XML = new XML();
myXML.ignoreWhite=true;
myXML.load("map.xml");
myXML.onLoad = function(success) {
if (success) {
var myPin = myXML.firstChild.childNodes;
for (i=0; i<myPin.length; i++) {

var pinNumber = i+1;

_root.attachMovie("box", "pin"+i, _root.getNextHighestDepth());
var xpos = Number(myPin[i].attributes["xpos"]);
var ypos = Number(myPin[i].attributes["ypos"]);
_root["pin" + i]._x = xpos;
_root["pin" + i]._y = ypos;
_root["pin" + i].popup.titleBox.text = myPin[i].firstChild.nodeValue;

_root["pin" + i].popup._visible = false;// hide the title to begin with
_root["pin" + i].onRelease = function () { //when the pin is clicked...
_root["pin" + i].popup._visible=!_root["pin" + i].popup._visible; //toggle the titleBox's visibility
}

}
}
};
link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

welcome to SO.

You could try something like this (when creating each pin):

_root["pin" + i].titleBox._visible = false;// hide the title to begin with

_root["pin" + i].onRelease = function () { //when the pin is clicked...
this.titleBox._visible=!this.titleBox._visible; //toggle the titleBox's visibility
}

(EDIT: changed the onRelease function to use 'this.titleBox')

The details would depend on exactly how you want it to behave.

Hope this helps.

link|improve this answer
This makes a lot of sense. Its been so long since I worked with Flash, I totally forgot about visibility. Im still having some issues though - it seems that the textbox is hiding itself successfully and I traced the onRelease function, so I know that it is working properly. However its not making the textbox appearing. Grrr... – Thomas Feb 22 '10 at 12:58
I see you have titleBox.titleBox.text ... is this correct? – Richard Inglis Feb 22 '10 at 13:02
I saw that too, apparently I turned the dynamic text into a movieclip ages ago. I have replaced the symbol with a standard dynamic textbox and changed the code to titleBox.text - still no good. – Thomas Feb 22 '10 at 13:24
Must be a typo or dot missing somewhere - this should totally work... – Thomas Feb 22 '10 at 13:26
Does any of it work? are the pins being created correctly? try putting some trace statements in to check each step of the process. – Richard Inglis Feb 22 '10 at 16:29
show 8 more comments
feedback

what is meant by Display Node in PLC Configuration

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.