Putting Your Flash Application on Facebook (iFrame)
After I read the book “Facebook Graph API Development with Flash“, I wanted to make a little application to test out what I had learned.
If you want to see what I came up with, you can try it here: http://apps.facebook.com/jello-friends/ (you’ll need a Facebook account)
Read the rest of this entry »
- Review: Facebook Graph API Book
- Putting Your Flash Application on Facebook (iFrame)
Posted on February 24th, 2011
Filed under ActionScript 3, Tutorial | 3 Comments »
Review: Facebook Graph API Book
I while ago I wrote that I had would be reviewing the book Facebook Graph API Development with Flash, and now I’m finished reading it!
It turns out to be a very nice book!
Read the rest of this entry »
- Review: Facebook Graph API Book
- Putting Your Flash Application on Facebook (iFrame)
Posted on February 24th, 2011
Filed under Review, Tutorial | No Comments »
QucikTip: Trace an Array With Correct Formatting
If you’re using arrays to dynamically store information that you need to embed in your project later on, I got just the thing for you: A class that will keep the formatting of the array!
Read the rest of this entry »
- QuickTip: Execute Code After Animaiton
- QuickTip: Scrolling Only in SWF, not on Page.
- QuickTip: Managing Saved Data (SharedObject)
- QuickTip: Understanding Right Click Menus (ContextMenu)
- QuickTip: Stopping an Event
- QuickTip: Avoid Firefox popup-blocker When Using navigateToUrl
- QuickTip: Inline If-Then-Else Statement
- QucikTip: Trace an Array With Correct Formatting
Posted on February 1st, 2011
Filed under ActionScript 3, Flash, Tutorial, Util | No Comments »
QuickTip: Inline If-Then-Else Statement
If you have to do a simple If-Then-Else Statement, it can be tedious to do it this way:
var answer:String; if ( isCreative) { answer = "Aww.. I don't know what to do!"; } else { answer = "Ha, I know just what I'm going to do!"; } |
Here is the easy way:
var answer:String = isCreative ? "Aww.. I don't know what to do!" : "Ha, I know just what I'm going to do!"; |
This is only really useful for simple things, so if you’re checking lots of conditions or performing lots of operations inside the curly brackets, it might be not be a good idea to use this!
- QuickTip: Execute Code After Animaiton
- QuickTip: Scrolling Only in SWF, not on Page.
- QuickTip: Managing Saved Data (SharedObject)
- QuickTip: Understanding Right Click Menus (ContextMenu)
- QuickTip: Stopping an Event
- QuickTip: Avoid Firefox popup-blocker When Using navigateToUrl
- QuickTip: Inline If-Then-Else Statement
- QucikTip: Trace an Array With Correct Formatting
Posted on January 24th, 2011
Filed under ActionScript 3, Flash, Tutorial | No Comments »
QuickTip: Avoid Firefox popup-blocker When Using navigateToUrl
Being faced with this when you’re trying to launch an other site is not good! Read on to learn how to fix it.
- QuickTip: Execute Code After Animaiton
- QuickTip: Scrolling Only in SWF, not on Page.
- QuickTip: Managing Saved Data (SharedObject)
- QuickTip: Understanding Right Click Menus (ContextMenu)
- QuickTip: Stopping an Event
- QuickTip: Avoid Firefox popup-blocker When Using navigateToUrl
- QuickTip: Inline If-Then-Else Statement
- QucikTip: Trace an Array With Correct Formatting
Posted on December 7th, 2010
Filed under ActionScript 3, Flash, Tutorial, User Interface, Util | No Comments »
Using my Hit Class for Buttons
Looking for a quick way to manage mouse interactions with movie clip buttons? I’ve got just the thing for you.
Posted on October 7th, 2010
Filed under ActionScript 3, Flash, Tutorial, User Interface | No Comments »
QuickTip: Stopping an Event
Learn how to stop an event, and also why.
Read the rest of this entry »
- QuickTip: Execute Code After Animaiton
- QuickTip: Scrolling Only in SWF, not on Page.
- QuickTip: Managing Saved Data (SharedObject)
- QuickTip: Understanding Right Click Menus (ContextMenu)
- QuickTip: Stopping an Event
- QuickTip: Avoid Firefox popup-blocker When Using navigateToUrl
- QuickTip: Inline If-Then-Else Statement
- QucikTip: Trace an Array With Correct Formatting
Posted on May 3rd, 2010
Filed under ActionScript 3, Flash, Tutorial, User Interface | 1 Comment »
QuickTip: Understanding Right Click Menus (ContextMenu)
So we’re going to take a look at the right click menus. Usually I see them completely unchanged, making it possible for a user to screw something up with your product (game/movie/site). Lets not make that happen anymore.
Read the rest of this entry »
- QuickTip: Execute Code After Animaiton
- QuickTip: Scrolling Only in SWF, not on Page.
- QuickTip: Managing Saved Data (SharedObject)
- QuickTip: Understanding Right Click Menus (ContextMenu)
- QuickTip: Stopping an Event
- QuickTip: Avoid Firefox popup-blocker When Using navigateToUrl
- QuickTip: Inline If-Then-Else Statement
- QucikTip: Trace an Array With Correct Formatting
Posted on April 15th, 2010
Filed under ActionScript 3, Flash, Tutorial | No Comments »
QuickTip: Managing Saved Data (SharedObject)
Today we’re going to look at how to manage saved data, in flash called shared objects.
Usually that can be a pain, but thanks to Vlad from Vortix Games Studio, this is very simple. He created a class for this called LocalData, and it’s a super simple way of managing saved data.
Read the rest of this entry »
- QuickTip: Execute Code After Animaiton
- QuickTip: Scrolling Only in SWF, not on Page.
- QuickTip: Managing Saved Data (SharedObject)
- QuickTip: Understanding Right Click Menus (ContextMenu)
- QuickTip: Stopping an Event
- QuickTip: Avoid Firefox popup-blocker When Using navigateToUrl
- QuickTip: Inline If-Then-Else Statement
- QucikTip: Trace an Array With Correct Formatting
Posted on February 19th, 2010
Filed under ActionScript 3, Tutorial | 4 Comments »
QuickTip: Scrolling Only in SWF, not on Page.
This Quick Tip will show you how to stop simultaneous scrolling on a page and in SWF.
Read the rest of this entry »
- QuickTip: Execute Code After Animaiton
- QuickTip: Scrolling Only in SWF, not on Page.
- QuickTip: Managing Saved Data (SharedObject)
- QuickTip: Understanding Right Click Menus (ContextMenu)
- QuickTip: Stopping an Event
- QuickTip: Avoid Firefox popup-blocker When Using navigateToUrl
- QuickTip: Inline If-Then-Else Statement
- QucikTip: Trace an Array With Correct Formatting
Posted on January 18th, 2010
Filed under ActionScript 3, Flash, Tutorial | 12 Comments »