Thaylin | May 20, 2011
In the last month or so I’ve been tasked with reviewing a project for performance profiling and just code cleanup in general. It’s been quite a task as I wasn’t familiar with a single part of the code so finding tools to aid in this is uber helpful.
With that in mind, here are a few [...]
Category: actionscript, adobe, coding, debugging |
No Comments »
Tags:
Thaylin | March 9, 2011
Mainly this is just a post to remind myself in later times about this code snippet but basically this will work with any class with accessible variables.
Take an xml node such as
?View Code XML1
<class id="myClass" color="#FF0000" isActive="false"/>
You can use this snippet to parse through those attributes to set all of your variables for you assuming [...]
Category: actionscript, coding, programming, snippets |
No Comments »
Tags:
Thaylin | December 11, 2009
I’m taking a break from the pattern tutorials for the moment to write the as3 facebook connect integration library I’ve been meaning to write. With that said, here’s a little method I didn’t realize was around to pull properties from classes. Normally the for..in method you can pull properties available within an object, but this [...]
Category: actionscript, coding, programming |
No Comments »
Tags: actionscript, flash, programming
Thaylin | May 29, 2009
A lot of sites today are very open with their APIs allowing users from other sites to retrieve their data, but sometimes you’ll come across websites that may not have that same open access. When their sites limit the access that other sites can retrieve data from via the crossdomain file it’s frustrating to say [...]
Category: actionscript, adobe, coding |
No Comments »
Tags: flex, php, programming
Thaylin | May 21, 2009
Yesterday I did a presentation on ExternalInterface and it’s uses along with how to inject javascript on the page and a few other tidbits at FlashCodersNY.
Here’s the zip file with the project we went over. Whether you were there or not you should still be able to easily follow along since there’s tons of comments [...]
Category: actionscript, coding, programming |
8 Comments »
Tags: actionscript, flash, flex, javascript, programming
Thaylin | May 1, 2009
On my quest to make the facebook actionscript connectivity as easy to work with as possible I needed to be able to reproduce the
?View Code ACTIONSCRIPT1
2
<script src="myExternalLibrary.js">
</script>
call in order for everything to work appropriately.
After some searching I came across a clip of code that worked beautifully
Category: actionscript, coding |
3 Comments »
Tags: actionscript, flash, flex, programming
Thaylin | April 23, 2009
[Quick Update]
I discovered there’s actually a class in the actionscript api called SendLiveMessage. Not sure yet if I can utilize this to listen for updates from facebook but it’s a start.
Category: actionscript, adobe, coding |
No Comments »
Tags: actionscript, flash, flex, programming
Thaylin | February 11, 2009
Ok just first of all, I would like to point out that the method in my previous post was in all actuality not a recursive method. It loops through objects in that class but not the same object consecutive times.. my bad.
On that note. Thanks to Hudson Ansley on the flashcodersny blog for pointing out [...]
Category: coding |
No Comments »
Tags: actionscript, programming
Thaylin | February 10, 2009
So I’ve been working on incarnations of a mapping application over the last year or so and am rather happy with how it’s been growing so far but one thing has come to my attention.
The map pulls in hotel properties and displays them as markers on the map depending on the x and y values [...]
Category: coding |
No Comments »
Tags: actionscript, programming
Thaylin | October 27, 2008
So I have a client who wanted to have mp3’s that the user could listen to and also download. Since I’m very against having to constantly manage a clients content I wanted him to be able to have no problem adding and removing mp3 files. Normally, one might have an xml file that the user [...]
Category: coding |
No Comments »
Tags: actionscript, programming