Two days ago I made a little flash app that will allow anyone to take a picture with a webcam connected to a computer. Everything worked fine in AS3. It was only when I got to the php part of the project when I felt like I should ask for help. And I did, I …
Category Archives: Flash
Bottom Align Text Flash AS2
Getting Flash to display dynamic text the way you want it displayed can sometimes be a chore. Recently I had the need to bottom-align a dynamic text field that could vary between 1 and 3 lines high.
Disable textarea resizing
CSS to disable resizing The CSS to disable resizing for all textareas looks like this: textarea { resize: none; }
Flash Tag
You can vary the <font size=’20’>font size</font>,<br><font color=”#0000FF”>color</font>,<br><font face=”CourierNew, Courier, Typewriter”>face</font>, or<br><font size=”18″ color=”#FF00FF”face=”Times, Times New Roman, _serif”>any combination of the three.</font>
Scripted Typewriter Effect 2
Credit for this has to go Daniel Skovli and Jesse Stratford for there work on the original Scripted Typewriter Effect. Their’s is a great place to start, and most of this tutorial uses the same variables as their’s. The difference between their method and this one is that this method doesn’t rely on the timeline. …
Flash dynamic references vars
dynamic references If you’ve been dealing with actionscript for some time and you still don’t know what this is, pay close attention because sooner or later you’ll need it. You may even have needed it already!