flexbuilder

Flex 3 to Flex 4 Migration Problem: Instantiation attempted on a non-constructor.

Today I upgraded from Flex Builder 3 (Flex 3 SDK) to Flash Builder 4. I am new to Flex programming, and am still learning the Flex basics and Flex lifecycle. When I imported my project into Flash Builder 4, recompiled (without errors), and ran my project, I received the following error: TypeError: Error #1007: Instantiation attempted ...

Flex Builder - How to set relative url in launch configuration properties?

I am trying to use a custom html wrapper for my application, but when I browse to choose my file it defaults to an absolute path to my custom-wrapper.html file. I want to be able to pass off this project via SVN without any necessary configuration changes, but I'm not sure how to input a relative URL into this configuration dialog. I...

Flex/FlexBuilder: Compile large dependencies into modules instead of main application

I've got a module, MyModule which requires a large library: <mx:Module> <mx:Script><![CDATA[ import com.huge.library.AwesomeThing; var myThing:* = new AwesomeThing() ]]></mx:Script> ... </mx:Module> And that large library isn't referenced from my main application, except through MyModule: <mx:Application> ...

Flex 3 (Actionscript) query for recordset array for data grid

Hey, all. I am building an application in Flex Builder 3. Yes, I know that it has an auto-magic feature to build datasheet, but that will not work. I see many Flex controls, such as combo box, can take an array as a data source. My question, therefore, is (1) How do I send the request from my action script to my PHP form to request a r...

Display HTML text in the Spark TextArea

The Below code is running well... <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" > <fx:Declarations> <mx:HTTPService id="httpRSS" url="http://www.petefreitag.com/rss/" resultFormat="objec...

missing .exe file

I tried creating .exe file for my flex application.when i opened the destination location my .exe file is nowhere to be found ...

How to change url endpoint in flex mxml

hi, I will like to set the endpoint url in my main mxml. This will be linked to a xml file on the server. The reason for this is that I would like to dynamically change it based on the user selection. Thanks. ...

Flex Builder: Not picking up new files

I have a working AS3 project and it compiles fine to a SWF. I added a new file (via various means: import, drag-drop, new), but it doesn't compile this new file. I'm using Flex Builder 3. I've tried a clean an rebuild. I've tried renaming. It picks up the existing files fine, but not the new one. The project is set to use a HTML wrapper....

Transparent background in Flash Builder 4 Application ?

Hi, I'm trying to create a Flash Builder 4 - Application with transparent background. Tried with wmode="transparent"/wmode="opaque" + backgroundAlpha set 0 & 0.1, but still no luck. Also, looked at the following http://blog.dannypatterson.com/?p=211 >> I dint find backgroundImage http://blog.go4flash.com/articles/flex-articles/trans...

Error #2025: The supplied DisplayObject must be a child of the caller.

Hello, I am very new to programming in FLEX. I have inherited a FLEX 4 project that invokes web services to display data to the end user. My default package has one .MXML file, that has the component references to the Login screen (another .MXML file) and the Main screen (yes, another .MXML file). The login process works fine. I have...

Flex Builder 3 IDE - Mouse Wheel Scrolling

Currently when I am working in the source code view of the Flex Builder 3 IDE my mouse scroll wheel does not scroll the window up and down. Is it possible to enable this functionality somehow? ...

FlashBuilder 4/Flex, set transparent background for web app?

I'm embeding a flex application into a web page using the most recent version of swfobject.js. I've set wmode to transparent and all that but whatever I've enterd for the embeded objects default size, is then a white background within my application. I've set the application's backgroundAlpha to 0 and I know that part works because my ap...

Exporting release build - Flex through Intellij Idea

How do I generate release build of my Flex Application through IntelliJ Idea, like I do in Flex Builder? ...

Flash Builder 4 Start Page?

i have closed the Start Page in FB4 and now i can not find it. ridiculous. how can i open this panel again? ...

How to suppress only [SWF] traces when debugging Flash applications

I'm working on an Adobe Flex application that loads lots of Flex Modules and other Flash sub-applications and Flash resources. Each time one successfully loads the flashlog.txt and Flex Console show a trace like "[SWF] filename.swf - [filesize] bytes after decompression". Specifically: [SWF] Main.swf - 1,361,299 bytes after decompressi...

flash builder 4 and eclim

Is it possible to get these two working together? When I try to install the eclim (1.6.0) installer complains about the eclipse version. ...

FlashBuilder/FlexBuilder hyperlink code navigation and f3 open declaration problem

Hi: I am having an issue in FB4 where some classes are not accessible through hyperlink navigation (Command-Space) or Open Declaration (F3). The classes ARE available through Open Resource (Shift-Command-R) and the project compiles fine when I use them. What's especially strange is that only SOME of the classes in each packager are ava...

Flex event handler not working.

I have created a custom event in flex 3.5. But the handler is not invoked. How to solve this or what is the way to debug this problem? The Event class: package com.saneef.worldlanguages.events { import flash.events.Event; public class LanguageEvent extends Event { public static const LANGUAGE_SELECTED:String = "Lan...

Long Image links of Facebook is not working in Flex4 mx.image.souce

I am creating one desktop application of facebook. So here I am getting streams from facebook post. So when any facebook application's long image link I am getting that I can't display in Image container, this is not displaying image. One also fact is that, When I am giving this link directly then it is working..... I am full confused...

Actionscript: Flexunit: unit testing existing actionscript project

I was reading this: http://stackoverflow.com/questions/366088/flexunit-with-pure-actionscript-project-in-flex-builder-3/3472839#3472839 I am trying to do option 2 in his question. I have an existing actionscript project. I created a flex project with flexunit 4 setup and it runs. I set the flex project to have an external source library...