I am trying to follow this guide: http://tv.adobe.com/watch/learn-flash-professional-cs5/using-flash-pro-and-flash-builder-together/
While using CS6 Flash Pro and Flash Builder 4.5.
The issue I am having is my Flash Builder code doesn't seem to have any effect. I did everything the guide with the only variation being the names I used and button position.
The code I ended up with:
package
{
import flash.display.MovieClip;
import flash.text.TextField;
public class UntitledMessage extends MovieClip
{
public function UntitledMessage()
{
super();
var icon:btnDontKnow = new btnDontKnow();
icon.x = 0;
icon.y = 0;
addChild(icon);
var btnLabel:TextField = new TextField();
btnLabel.text = "Play Intro";
btnLabel.x = 250;
btnLabel.y = 275;
addChild(btnLabel);
}
}
}