Monday, July 5th, 2010

Category: FlashCategory: FlexCategory: SWF Studio

Will Write Code for (almost) FREE!

To help get the word out about the fact that Northcode offers custom development work Northcode is offering a very good deal on SWF Studio: buy a copy of SWF Studio V3 Professional and get 4 hours of custom development work ($600 value) for FREE!

Even if you already own a copy of SWF Studio this is worth it - you get custom dev work for half price!

If you were looking for a feature that SWF Studio just doesn’t have this is your chance to get them to add it to a custom build just for you!

Have a requirement for a SWF Studio plugin but don’t have the in-house C/C++ expertise? This is THE opportunity to get it done.

The Northcode team is capable of producing a very wide range of types of applications, specializing in Windows development with and without Flash/Flex. They build solid applications - just look at SWF Studio! V3 took a considerable amount of time and effort, but the payoff was worth it. SWF Studio V3 has been solid and the ability to add features was made easier by thoughtful planning in the early stages. The ActionScript API, player and plugin architecture make adding and updating features painless to our user base.

Northcode has worked on small one-off projects and projects involving development by multiple companies with a user base of millions.

As a member of the Northcode team. I’ve been working with Flash since Flash 4 and seriously started coding with Flash MX. When I started at Northcode, Flash MX was the current version of Flash. Throughout that time I’ve worked with hundreds/thousands of people with various projects, providing development work and/or consultation and support.

Check this link for more details.

Thursday, April 1st, 2010

Category: FlashCategory: FlexCategory: SWF Studio

Buy SWF Studio for only $99, No Foolin!

Northcode has a promotion on for today only where you can buy SWF Studio for only $99!

And no, you won’t get an extra 10% off if you buy through the link on this site - come on, you’re already getting $200 off!

Why? I think Tim (Northcode CTO, lead developer) has gone batty! Anyhow, save before his meds kick in!

SWF Studio V3 ActionScript API

Tuesday, March 4th, 2008

Category: FlashCategory: Flex

Proxy/XML + [] = broken

There’s an issue with the Proxy and XML classes when you use the [] syntax to execute methods.

For example, this is the working behaviour:

var g:Function = myProxy.go; // calls getProperty on the Proxy subclass
myProxy.go(); // calls callProperty on the Proxy subclass

This is the non-working behaviour:

var g:Function = myProxy['go']; // calls getProperty on the Proxy subclass
myProxy['go'](); // calls _getProperty_ on the Proxy subclass

In the second example the second line calls getProperty. So why is that a big deal? Two things: first, it’s not consistent with non-[] syntax, and second, it calls getProperty so you don’t know that the user is actually calling a method.

This was reported to Adobe on JIRA (Calling a method on a subclass of proxy dynamically invokes getProperty rather than callProperty) and after months of inactivity it was finally concluded that this is not a bug. Why? Here’s the example that was given:
(more…)

Tuesday, September 11th, 2007

Category: FlashCategory: Flex

FSCommand and getURL Bug in Flash Player 9

Having problems with getURL/navigateToURL or fscommand?

Using a getURL queue system because of a “bug in IE”?

Check this out:
FSCommand and getURL Bug in Flash Player 9

This will become more and more an issue with more and more people buying Flash CS3. In Flash CS3 you have the option to publish your AS1/AS2 projects for Flash Player 9 to take advantage of some of its features. If you do that, and your project uses getURL or fscommand, then it will be succeptible to this bug.

If you target Flash Player 8 in Flash CS3 you’ll be fine. The problem is when the player detects your SWF as being published for Flash Player 9 (AS1/AS2/AS3).

Wednesday, February 14th, 2007

Category: FlashCategory: Flex

AS3 Tip: for loop index should not be uint

In AS2 you probably typed your for loop index variable as Number. In AS3 I thought it would be better to use uint. I always start the index from 0, or some positive number and increment from there, like:
(more…)