ActionScript:
- createTextFieldOnce = function(){
- trace("---> Text Field Created");
- _root.createTextField("cMagnitude",this.getNextHighestDepth(),0,0,100,30);
- cMagnitude.text = "Hello World";
- };
- deleteTextField = function(){
- trace("----> Text Field Deleted");
- _root.cMagnitude.removeTextField();
- };
- createTextFieldOnce();
- setInterval(deleteTextField,1000);
One Response
Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.
Love it.