.... it is all a bit confusing ...
the targets don't change they stay the same.
in the example below....
this.("over"); would refer to 'this.urlOption' so in that effect you are correct and i should adjust my code accordingly but...
ActionScript Code:
imageWeaver.prototype.createButton_getUrl = function() {
this.urlOption.onRollOver = function() {
this.("over");
};
};
... in this example i am trying to call a function in the component timeline aswell as tell the urloption to go to over. but it sees
this.callFunction(); as a function in the urloption timeline and not in the component timeline.
ActionScript Code:
imageWeaver.prototype.createButton_getUrl = function() {
this.urlOption.onRollOver = function() {
this.("over");
this.callFunction();
};
};
do you follow now?