Flex

VidLoop Updates and a Word of Caution

I took some time today to update the VidLoop AIR application. The current version is 1.2.2.  New features include a randomize function and the integration of the AIR Update Framework.  I’ve also fixed a few small bugs. A note of importance here… I really should have integrated the update framework before my initial public build.  …

VidLoop Updates and a Word of Caution Read More »

Nifty AIR App: VidLoop

Last week, I was approached by someone asking if we could build a small application that would run a series of videos in a continual loop. I told him it would be pretty simple to do this and that it would only be an afternoon’s work in AIR. So, that evening, I was able to …

Nifty AIR App: VidLoop Read More »

HTML Links in Flex

I’ve never found the need to have HTML links in Flex behave (and look) like their true HTML counterparts, but a student recently asked how she could get HTML links defined in a Text control to behave like regular HTML links.  After digging around, I found a lot of references to this problem but the …

HTML Links in Flex Read More »

DU Visual Media Center Weblog

I’m taking a moment to highlight the Visual Media Center at the University of Denver and the relatively new weblog maintained by its Director, Leslie Trumble. The VMC works very closely with those of us on the DU VAGA development team and most of the feedback we receive about the application originates with users from …

DU Visual Media Center Weblog Read More »

Creating a Splash Screen in AIR

A lot of desktop apps have a splash screen that brands the application while it is loading or performing other processes in the background. Adobe AIR does not have a direct mechanism for this- but the feature can be easily achieved with some nice windowing action. There are a number of steps to take when …

Creating a Splash Screen in AIR Read More »

AIR: Window vs. NativeWindow

This one threw me for a loop.  So I’ve been using the flash.display.NativeWindow class to create new windows in AIR (via Flex) since the beta releases.  Historically, this has been a pain when you want to add MXML components to the native window as addChild() does not work with the NativeWindow class unless that child …

AIR: Window vs. NativeWindow Read More »

Remoting through Flex with Coldfusion

I’m used to setting the ObjectEncoding to AMF0 when working with Flash Media Server 2, but haven’t realized till now that I also am required to do this when communicating with Coldfusion 8 through remoting: import flash.net.NetConnection; import flash.net.ObjectEncoding; NetConnection.defaultObjectEncoding = flash.net.ObjectEncoding.AMF0; The error “Unknown object type tag (17)” was being generated by CF8 as …

Remoting through Flex with Coldfusion Read More »