Posts tagged flash
How to change a textfields alpha in Actionscript 3.0
Feb 15th
I am writing this tutorial for anyone who is having any issues with changing the alpha channel with actionscript. I’m gonna show you how. This might seem pretty straight forward at first, I mean I thought it was, but you actually can’t just start changing the alpha property without first setting its blendMode. This sometimes gets overlooked in tutorials.
First import the BlendMode Class into your document.
import flash.display.BlendMode;
Second you’ll want to set the textfields blendmode to LAYER
var myTextField:TextField = new TextField();
myTextField.blendMode = BlendMode.LAYER;
There it is fellas. Easy Breezy. Now you can change the alpha of the myTextField
If you liked this post, you might also like…
Sublime HTML5 Video Player
Feb 14th

With HTML5 just around the corner many people are excited as to what this new technology will bring us. One of the coolest parts of HTML5 is the ability to watch video without any plugins what so ever! This means no Adobe Flash or DivX to watch movies on your website! HTML5 is still being finalized but the people at Jilion have already hopped on to the band wagon and created their own custom HTML5 Video player. They have created a beautiful interface for the video player and it is currently supported by most HTML5 capable browsers. You can check out the Sublime Video player and full details here. I hope more people will get inspired by this and create their own video players for their own sites. If you haven’t already heard Vimeo and YouTube have already created their own HTML5 video players that you can test out right now!
If you liked this post, you might also like…
HTML5 Local Storage, Session Storage, and Client-Side Database Tutorial
Awesome Uses of HTML5’s Canvas Tag
Simple Image Gallery in Flash CS4
Jan 22nd
Want to create a cool image gallery in flash? Then this tutorial is perfect for you! This will teach you how to create a simple image gallery with thumbnails in Adobe Flash CS4.


