Archive for the ‘Flash 8’ Category

Adobe Image Foundation

Sunday, October 7th, 2007

By now you must have heard about the Adobe Image Foundation code-named Hydra, and as usually with anything new in the Flash Player Tinic has a nice informative post.

Hydra is a programming language used to implement image processing algorithms in a hardware-independent manner.

Joa already has a load of examples here, here and here and Mario also has a few examples up here and here.

You can download the AIF toolkit here and Kevin Goldsmith’s blog is worth keeping an eye on as well as Tinic’s for more info.

FWiidom

Thursday, February 15th, 2007

Good friend Adam has been playing with the Wiimote and Flash on Windows for a while now. About two weeks ago he was round mine showing me the classes he had put togther to enable Flash to interact fully with the Wiimote and he knocked up this first demo of intergrating what he had with Papervision3D.

He now has a site up dedicated to Flash and Wiimote intergration over at http://www.fwiidom.org/ (check the John Grdn inspired StarWiis).

I believe Pete Hobson who has an OSX version up and running named Fii is now working with Adam to provide a cross platform solution.

All this stuff looks very promising!

FlashInterface

Thursday, February 8th, 2007

Want to start writing AS 3.0 or use Flex 2.0, but need to use them alongside older elements created in AS 2.0 and published for Flash Player 8 or lower? You could use LocalConnection or ExternalInterface, both having their own limitations, or you could take a look at FlashInterface.

FlashInterface allows direct communication between AVMs with a common API for both AS 2.0 and AS 3.0. It also supports controlling Flash Player 7 and lower SFW’s through a Flash 8 wrapper.

Features
Bi-direction communication between AVMs, Synchronous calls, Returns values from within same call, Common API, Call Local Properties, Call Local Methods, Anonymous Calls, Global Access to SWF elements, Optional Event Listener Model, No limitation on data size.

Download, documentation, tutorials and examples.

Parallels and the Flash Player

Thursday, November 2nd, 2006

I’ve had Parallels set up for a while and everything is (nearly) sweet. My workspaces are on OSX and I used Eclipse and Flash on Windows and access the workspace through the shared folder I have set up. Neither Flash or Eclipse have any problem accessing or modifying the files, but the Flash Player can’t open an SWF through the shared folder.

Any tips to why, or how I can fix it would be great, cos at the moment I have to set up a folder on Windows to publish to, then keep copying the files over.

Flash Article in Creative Review

Friday, July 28th, 2006

Theres a nice little article about how Flash 8 is shaping up (the good and the bad) in July’s issue of Creative Review titled ‘Flash Grows Up’, accompanied by a brief history of Flash.

It features the likes of Joshua Davis, Joshua Hirsch (Big Spaceship), Jon McVey (Zaaz) and Florian Schmitt (Hi-ReS!).

Worth a browse if your near a magazine store hanging around.

London Flash Platform User Group July 2006

Friday, July 7th, 2006

Ohhh yeah we’re back! After a great meeting night last month, we move just down the round to the offices of AKQA, the main sponsor of this months event.

As usual (or as last time) we’ll have two sessions. Dave Williamson will be covering localization and I’ll be doing a first look at the preview of Flash 9.

Last months videos, presentaions and files etc are now online (Flash Media Fun Hour (22/06/2006), Ruby On Rails for the Flex Developer (22/06/2006)).

Big thanks ths month to AKQA for hosting us, and I also have to thank Rocket Boots and Computer Arts for giving us some goodies.

London Flash Platform User Group 27th July 2006 (27/07/2006).

Macintosh File Types

Tuesday, May 30th, 2006

When using FileReference or FileReferenceList it is more than likely you will need to know the associate Macintosh file type with the Windows file type to limit the type of files your users can select.

The reason MM had to implement this is that Windows identifies a file type by its extension and associates it with an application and its icon. Because of this only one application and icon will be associated with any one file type. When you double-click a file in Windows, the same application will open it despite the fact that it may have been created (saved) in another application. The Macintosh file system stores more information about a file than just its type, it also stores information about its creator (which is why you get the extra creator property when using FileReference on a Mac). It stores this information as file type and creator codes in each file and therefore the system can associate more than one application with any one kind of file.

Here’s a list of some of the main Macintosh file types you may require.
NOTE: ‘_’ represents a space character.
(more…)

London MMUG Videos April 2006 (pt 2)

Friday, May 5th, 2006

I’ve just uploaded the the video of Mike’s presentation titled ‘Developing Flash 8 Components’ from our last MMUG meeting.

You can view all the recorded sessions at www.tink.ws/aug.

Thanks to Mike for a great session and also thanks to George for taking the time and effort to record it!

Cyrillic Text and Specific Fonts

Thursday, April 27th, 2006

I’m working on a project at the moment that will run in a few languages and one of them requires cyrillic characters. The font we’re using is Helvetica World Font Family from Linotype, which has all the characters we require.

But when trying to use cyrillic text dynamically none of the characters showed. It didn’t matter whether I embeded the font in the library or in the TextField itself. What was strange was that if i changed the font to Arial, then all the characters would show fine, so I figured it must be the font.

It turns out that Flash didn’t seem to be embeding the cyrillic characters, even if i specifically listed them.

The solution was to create a new TextField on the Stage and have a least one character from the cyrillic set in it, any character. This one character seemed to force all the cyrillic characters to be embeded and appear correctly. I also had to remove the font from the library and and make sure it was only embeded in TextField instances.

Thanks for the tip Javier!

A Round Trip with FileReference

Friday, April 21st, 2006

Last night I presented the session I wrote for webDU at the London user group. Due to there being a lot to cover and lack of time I nowhere near got through the whole presentation only really getting to cover the first 3 examples on FileReference, and taking a quick look at the main class in the AS 2.0 ‘Round Trip’. I didn’t actually really get to cover any of the AS in the ‘Round Trip’, or any of the server side stuff either.

You can view the webDU presentation here, and the London user group presentation here. They are both the same except they have slightly different graphics.

If there’s enough people who actually want me to go through the ‘Round Trip’, then post your requests in the comments here or on the London user group forum and I’ll see what I can do.

All the source for the examples in the presentation can be downloaded from the ‘Download Example’. If anyone has any questions whether it be the AS, the PHP, or just working with classes, don’t be shy! Post your questions here and I will do my best to answer them.

I’m going to concentrate on developing the Flex 2.0 version (its beta 1 at the moment) for a future talk at any conference that will have me.