Archive for February, 2009

Proud to present at Flex Camp Timisoara

Thursday, February 19th, 2009

I just thought I would do a quick post to let everyone know I have been confirmed to speak at Flex Camp Timisoara. I will be presenting on how to connect your Flex Application to a MySQL database using my library AS3FlexDB.  

This is the first Flex Camp outside of Bucharest. It’s a very cool and informative event. It’s a must go event for all Flex developers! Come out and listen to my talk where I will cover how you can  speed you development using AS3FlexDB.

Flex Camp Timisoara will be held Mar 14, 10:00 - 17:00 at West University Timisoara 

Read the agenda and more info here.

An internal build error has occurred (What this error means)

Friday, February 13th, 2009

Becouse I have answered many times to this question and it took me a lot of time to find what this error means I decided to write a post with the  solution (in my case) to help you save some time.

So why Flex Builder display this this error ? Turns out if you create switch statement with no body in Flex Builder this unhelpful error is displayed. To solve your problem all you have to do is to add at least de “default” to your switch :

switch
{
    default:

And this is all :D.

Obs: This is just one cause why Flex Builder displays this error.