Tag Archives: flex

Stock Flash Site, Introducing ‘BuyStockFlash.com’

Buy Stock Flash Sell & Buy Flash Buy or Sell, Start Now - Stock Flash – Royalty Free Stock Flash effects, Video, Audio The New Kid on the block… it’s good to see some competition coming to the stock flash world. BuyStockFlash is revving it up. They are positioned to provide a place where flash-ers can upload components, templates, [...]
Posted in review | Also tagged , , , , , , , | Leave a comment

Actionscript Drag & Drop Tutorial | Vertical and Horizontal Flash Sliders

A specific use of drag and drop which is a bit more complicated than your average drag & drop needs is a slider. You can use components, but I usually prefer using my own graphics and code, partly because the components tend to bloat the filesize of the swf and partly because that’s just [...]
Posted in tutorial | Also tagged , , , , , , , , , | 2 Comments

Flash Video Issue: loadbar (size) vs playbar (time) usability

This deals with some issues I’m having with the seekbar of a player. The seekbar is the area that displays the video time as a bar that shows your current position/percentage of the video, it can also display the loaded portion of the video among other things as well. Including the video players I’ve made, [...]
Posted in other, review | Also tagged , , , , , , , , , , , | 3 Comments

Flash Drag and Drop Tutorial | startDrag Actionscript

I find that Drag and Drop is the most intuitive form of user interaction (at least using a mouse). Actionscript has some of this functionality built in, with the interactive functions startDrag and stopDrag, these can help make our coding pretty easy. If you are transitioning from as2, the code was incredibly simple: Actionscript2 123456on (press) {   [...]
Posted in tutorial | Also tagged , , , , , , , | 7 Comments

How to use fullscreen in AS3 | Stage Display State Tutorial

One of the best features of the flash player if you’re doing video is the fullscreen functionality. It has been a question I’ve heard repeatedly. There are limits to what you can do in fullscreen. Such as minimal keyboard support while in fullscreen. But it is perfect for a video player! Who doesn’t want to [...]
Posted in tutorial | Also tagged , , , , , , , , , , | 8 Comments

Fullscreen in AS3 Tutorial | Plus Firefox Flash bug when enter fullscreen keyboard events fired

To view the full fullscreen tutorial go here: How to use fullscreen in AS3 | Stage Display State Tutorial Sucks when you seem to have a bug in your code somewhere so you dissect your code over and over and are convinced that according to your code, everything should be fine, so you come back later [...]
Posted in tutorial | Also tagged , , , , , , | 10 Comments

Random Movement | Brownian revisited for as3

I have had feedback that certain random movements I program are a bit “jumpy”. Such as my old brownian movement tutorial and I really noticed it in my last tutorial, the parallax 3d depth effect tutorial. I’ve been thinking about it and looking around at some code and now have this updated brownian movement [...]
Posted in tutorial | Also tagged , , , , , , , , , , , | 16 Comments

asfunction (TextEvent.LINK) Tutorial for AS3 | Flash HTML Link to call actionscript function | Tutorial

Overview Earlier I wrote a tutorial article about asfunction in as2. Now that I’ m into as3, surprise surprise asfunction has been depreciated and now to replace it is the LINK TextEvent. Dispatched when a user clicks a hyperlink in an HTML-enabled text field, where the URL begins with “event:”. The remainder of the URL [...]
Posted in tutorial | Also tagged , , , , , , , , , | 2 Comments