1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Fixed: mx.accessibility:LabelAccImpl could not be found.

This came up while converting a Flex 3 AIR project to a Flex 4 AIR project.  Luckily, the solution is all in the publish settings.

Uncheck the box which says ‘Generate accessible SWF file’ and the error will go away.

Simple!

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Link: Flex AutoComplete component

If you’re ever looking for an autocompletion component in the Flex framework, I’d strongly suggest you check this one out: http://hillelcoren.com/flex-autocomplete/ Quite simply it’s awesome, it’s fully featured and packs a helluva lot of options into such a small package.

I swapped an old ComoBox component for it just now, and it worked fantastically with no additional configuration.

Check out the demo for it here: http://web.me.com/hillelcoren/Site/Demo.html

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Link: Advanced PDF eSeminar for ActionScript developers

“In short, you can build a GUI in Flex to skin the PDF and how the user can access the document contents. The PDF can contain images, text docs, or any Flex/Flash content (such as a video player or game). The Flex navigators are the GUI for how the user accesses the content of the PDF.”

Sound interesting? Check out more at http://www.flashcomguru.com/index.cfm/2009/11/11/pdf-for-flex-devs

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Automating tasks in Flex Builder, with the help of a little something called ‘ANT’.

One of the great things about Flex Builder is that it’s developed on top of the already existing Eclipse IDE, and is itself just one of many uses the Eclipse project is put to.  Which means that many of the things you may want to do in your projects have already been explored by others.  One such thing is automated tasks.

ANT Tasks in Flex

Turns out there’s something called ANT, which “[... does a really good job at building things]“.  As Eclipse is the basis for Flex Builder, a lot of the plugins for Eclipse – and all the variants of it – work just fine in Flex Builder.  There’s a plugin for Eclipse which adds ANT support for example, and then further plugins which add even more task types to ANT, such as FTP support.
Continue reading Automating tasks in Flex Builder, with the help of a little something called ‘ANT’….

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Link: Form Validation in Flex

This sounds like a cool AS3/Flex library to try out for the next time you need to validate forms and data in Flex.  It’s an AS3 port of a Java library, supposedly geared towards unit testing, but also happens to be very good for form validation, as Joel Hooks points out in this article;

http://www.insideria.com/2009/11/validation-in-flex-with-hamcre.html

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Embossed / Shadowed text in Flex

If you get it right, drop shadow effects can really improve the appearance and clarity of text.  Mark sent me the starting code for this a little gem a while ago, but I’ve extended it to support Flexs’ CSS Styles support, and have been playing with different settings, which – with a bit of creativity – will give you anything from drop shadows to a bevelled appearance.

There are 4 classes we’ve created which are extensions to 4 basic Flex components – ShadowButton, ShadowLabel, ShadowText and ShadowText.  To each you can customise the shadows’ distance, angle, colour, alpha and blur amount.  Here’s some examples of the usage, and output of these classes;

Bevelled text:

ShadowLabel, ShadowButton, ShadowText, ShadowCheckBox
{
shadowColor: #ffffff;
} 

Drop shadowed text:

ShadowLabel, ShadowButton, ShadowText, ShadowCheckBox
{
shadowColor: #333333;
}

Continue reading Embossed / Shadowed text in Flex…

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Getting FTP access in Flex Builder…

Little nugget of discovery for today;

If like me, you hate having to open a separate FTP program to upload projects to a remote server you can install an FTP plugin for Eclipse, aka Flex Builder.  It’s not easy as pie to configure and it’s not so good with copying large volumes of files or folders, but it’s perfectly capable of uploading files to the server without having to leave your development environment.  I haven’t found a way of setting projects up to publish to a remote server yet, but at least it bypasses opening that separate program.

Here’s a little link that tells you how to install, configure and use the plugin: http://www.venukb.com/2007/06/06/how-to-browse-remote-files-in-eclipse-ide/