Apr
29
2008
Why a Custom AS3 Scrollbar?
I’m sure this isn’t first nor will it be the last time you hear about the frustrations of dealing with Adobe’s pre-coded and pre-packaged components. Some complain about their design, their style, their customization, their size, and even (my personal experience) their functionality when embedded into pages with Facebook’s <fb:swf> tag. The simple solution to all of these problems is to simply code your own. However, scrollbars can be a nightmare and take hours to code, debug and customize. So, I’ve tried to save you all that hassle by building a fairly customizable scrollbar class.
Download the example files (includes the classes): AS3 Scrollbar Class and Example
In zip format: AS3 Scrollbar Class and Example
Continue Reading »
Popularity: unranked [?]
Apr
15
2008
This is a quick post to let everyone know minor updates have been made to the amfphp communication class. Thanks to the help of Joshua Logsdon I have been able to make several changes that either fixed bugs or added to the quality of the class. One very useful function is the assocResult function that turns the received object from amfphp into an associative array, which can be much easier to work with sometimes than an object.
The new file is available for download: AS3 AMFPHP Class and Wrapper
Older articles can be accessed:
AMFPHP AS3 Class – Communication between Flash and AMFPHP made easy
AMFPHP AS3 Class and Wrapper – Communication between Flash and AMFPHP made even easier
AMFPHP AS3 Class and Wrapper – MySQL Query Example
Let me know what you think of the updates, and the additions from Joshua.
Popularity: 43% [?]
Apr
12
2008
After getting some positive response to my last project, I decided to spend some time, fix a few bugs and give you guys a new, cleaner amfphp class… but wait, thats not all, I even through in a free amfphp WRAPPER, ABSOLUTELY FREE! (right… well the entire site is free, but still, that makes me a nice guy, right?)
Anyhow, here is the class for those who’d just like to download and tinker: AS3 AMFPHP Class and Wrapper Continue Reading »
Popularity: 92% [?]
Apr
05
2008
Honestly, when I first attempted to parse and access Google Calendar XML from flash I had a lot of trouble with it. I spent a lot of hours being frustrated by XML namespaces (it was the first time I’d had to use them) and consequently had to move to the forums at actionscript.org. I was helped by a guy with the alias “wvxvw” (which is a nice palendrome, lol) so I’d like to extend credit to him for giving me a nudge in the right direction. Anyway, lets get on to the code. Continue Reading »
Popularity: 68% [?]
Apr
02
2008
Download the class AS3 Dynamic Calendar Example
As simplistic as Calendars may seem, they require quite a bit of code in order to get them to function properly. Here is a calendar programmed for Adobe’s Flash CS3 in Actionscript 3. It takes the simple arguments of the XML/ICAL URL, the format that it is in, and the size that you’d like the calendar to be, and then formats the entire thing for you including adding any events listed in the XML. Continue Reading »
Popularity: 41% [?]
Mar
14
2008
- This article and the code it contains have been updated! Please check out the latest information: AMFPHP MADE EVEN EASIER!
- Download the latest files from here
Let’s face it, no complex flash project can exist without any connection to either server scripts or SQL databases. With the advent of AMFPHP, the Flash community has seen a rise in accessibility and ease of development when it comes to complex data transfer and manipulation between Flash and PHP. However, in AS3, its reliance on two infrequently used packages, NetConnection and Responder, can create problems for both the newly inducted and experienced programmers alike. My own frustrations with employing an easy to read interface between flash and AMFPHP have lead to the creation of a class that simplifies AMFPHP calls into one line (handling the actual server responses will obviously take more code). Here is an introduction to the package attached to this page for download here. Continue Reading »
Popularity: 42% [?]