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 29, 2009
So I’m still unsure about the SendLiveMessage, but I believe it will only work for users that have accepted the application on their facebook account.
On another note, the one thing that’s bugging me about the facebook actionscript api is the inability to login seamlessly. But I think I’ve figured out a way to get [...]
Category: actionscript, adobe |
No 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 | April 23, 2009
Previously, I posted about facebook and adobe working together to create a library in actionscript. The unfortunate thing seems to be the lack of support for the facebook chat app. But going into the facebook website and looking at the net activity reveals somthing interesting that I may be able to build upon.
You’ll notice [...]
Category: actionscript, adobe |
No Comments »
Tags: actionscript, flash, flex, programming
Thaylin | April 9, 2009
Currently Adobe is offering flex free for anybody who is unemployed! It’s only to be used with non commercial projects as a means to learn with but that’s just awesome.
For anyone interested, you can pick it up here:
https://freeriatools.adobe.com/learnflex/?PID=1225267
Category: actionscript, adobe, programming, random thoughts |
No Comments »
Tags: actionscript, flex
Thaylin | July 10, 2008
So keeping in the topic from my previous post of low overhead flash apps, I decided to talk a little bit about runtime shared libraries.
So what are Runtime Shared Libraries?
These are libraries that are used just like you normally use your libraries in Flex 3 but instead of storing them within the swf, during runtime [...]
Category: actionscript, adobe, programming |
No Comments »
Tags:
Thaylin | July 10, 2008
So Last week I did a presentation on the adobe xmlsyndication package and the use of css within an as3 environment sans mxml at the flashcodersny meeting. I think all in all it turned out pretty good but there were a few issues I noticed.
The first being the dependancy on the adobe corelib package and [...]
Category: actionscript, adobe, programming, technology |
No Comments »
Tags:
Thaylin | June 27, 2008
I was trying to determine a way to sort an array without all the for loops and that sort of business when I ran across this post
Granted it’s a little specific to what you want to sort but I’m sure with a little change you could sort based on the function call maybe. I implemented [...]
Category: actionscript, adobe, programming |
No Comments »
Tags:
Thaylin | June 6, 2008
I decided to tweak the class a bit more so I figured I’d throw it up here.
?View Code ACTIONSCRIPT1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import flash.external.ExternalInterface;
public class FireBugLogger
{
private static var _enabled:Boolean = false;
public function FireBugLogger(singleton:SingletonEnforcer){}
public static function set enabled(t:Boolean):void{ _enabled = t; }
public static function get enabled():Boolean{ return _enabled }
public static function log(s:String):void { if(enabled)call(’log’, s); }
public static function debug(s:String):void { [...]
Category: actionscript, adobe, programming |
No Comments »
Tags: