Trying to figure out why those damnable TextFields won’t play nicely with your MovieClips? They just don’t respond to simple things, like setting alpha properties. Fear not! There is a solution! And I won’t forget it this time because I’m writing about it… ;)
Gotta embed those fonts! Here’s the Adobe docs. I won’t venture a technical explanation, only that I assume Flash requires the font vector information to translate the text to a shape, and thus, suitable for raw DisplayObject action.
Step 1: Reference the font. Library > Add Font… Be aware of the name you use here, lets say “Arial” for this example.

Step 2: Make the font available for ActionScript. Library > Font > Linkage. Export for ActionScript in first frame.

Step 3: In your ActionScript:
var tt:TextField = new TextField();
var tf:TextFormat = new TextFormat();
tf.font = "Arial";
tf.color = 0x000000;
tt.defaultTextFormat = tf;
tt.text = "test text";
tt.embedFonts = true;
tt.alpha = .5;
addChild(tt);
Something else to note. You have to assign a defaultTextFormat before placing text into the TextField, otherwise, it doesn’t work right. Finicky Flash.
Comments Off
Out of the box, and updated to the most recent software, the Contour ShuttlePRO has an abysmal default setup for Final Cut, undoubtedly the majority of the customer base for this particular device. For the uninitiated, the Coutour ShuttlePRO has a jog/shuttle wheel, reminiscent of the A/B tape decks of yore, which allow an editor to pinpoint a particular frame, or scrub through large amounts of footage quickly, with a certain degree of accuracy and intuitiveness. This utilized a dual pairing of two wheel mechanisms, one, the centrally located jog, is notched internally, representing a frame of movement, and is spun with the thumb or finger to manipulate the control. The other, the shuttle, is spring loaded to return to center when spun 90° left or right, degrees from center representing greater amounts of speed, in the forward and backwards direction. Even with this ancient technology, one could pinpoint a particular time with a good degree of accuracy, and then let the video hardware catch up by unspooling it’s analog linear goodness to the timecode you specified. (more…)
So little time, so much to do, does this sound familiar? We live in a continual swarm of information, and much of the time, we spend in a receptive state, watching and observing the streams. The big issue of course is relevance. What is relevant to my goals and aspirations? Everything else is distraction.
(more…)
Comments Off