Questions tagged [flashbuilder4]

FlashBuilder 4 stands for the version 4 of Adobe Flash Builder - an IDE based on Eclipse used for building Flex/Flash applications.

109 questions
0
votes
2 answers

Stop spark Graphic children from scaling FlexBuilder4.5

Hope someone can help. I have a Flex (4.5/Air) app that has a graphic declared like this :
JohnD
  • 11
  • 1
0
votes
1 answer

Export Project into standalone .swf File

I am trying for quite some while now to find an answer on how to export a FlexProject into a standalone SWF file. I have a FLV video which I put into the flvplayback Container and added the skin from Flash CS4. So all it is ist just a simple…
0
votes
3 answers

Access currentState from other files?

NOTE: This is not a copy of this question as the answer did not help me. I have my main file (Main.mxml), and I have a main AS file (main.as). main.as is included by Main.mxml via . In main.as, I want to change the…
cbroughton
  • 1,506
  • 11
  • 19
0
votes
2 answers

Flash Builder 4 no longer... Building!

Flash Builder 4 has stopped building my apps. I was working on a couple of projects. When I debugged the app, none of my changes were reflected in the debug version. I tried manually building, resetting all of my preferences, eventually Clean…
0
votes
1 answer

Spark Panel Skin + target topGroup?

Hey there- How do I addElement() to the topGroup of a Spark Panel component skin? For instance, if I create a custom UIComponent, then create an associative skin that uses the Spark Panel as a default, how do I add elements to the topGroup from…
worked
  • 5,434
  • 5
  • 49
  • 75
0
votes
2 answers

How to disable/hide an error in Flash Builder 4

When writing code sometimes those red error icons pop up on the left side. Most of the time they are on point, but sometimes they are wrong. How can I hide them. They annoy me too much.
andrey
  • 3
  • 2
0
votes
2 answers

AS3: HitTest Any Object

I am working on an application where an image serves as cursor. Now i would like to know at any time over which object the cursor is hovering. Sort of like a HitTestObject(*) where i can then see what object the * represents. Does anyone have any…
Michiel Standaert
  • 3,914
  • 7
  • 22
  • 47
0
votes
1 answer

WindowApplication nested in Application? Flex 4

I am making a desktop application and I am exploring different ways to use application. When I choose to make an air app it automatically uses WindowApplication but if I want multiple windows in my application, then I need to use Application…
user654628
  • 1,259
  • 14
  • 36
0
votes
2 answers

Flex 4 Image Fill

I have a controls.Image that I put in my Flex4 AIR App. I set it to x=0, y=0. Width=100%, Height=100%. The problem with this, is that The source image I am using does not fit the whole app screen. The actual controls.Image covers the entire screen,…
ZCM
  • 1
  • 1
  • 1
0
votes
2 answers

Using [Bindable] in flex 4

I just don't get it with [Bindable] and updating a label So here are my three pages, please tell me what I am doing wrong because when the listner sends the updated var to button2.mxml the var updates but the label does not redraw…
0
votes
1 answer

Restrict editing a column in a datagrid

Good evening stackoverflow...I have a problem see. I want to be able to restrict the input of user to only ("0-9"),I know how to implement this in a text input since it has the restrict function. My question is how can I implement a restrict in a…
wawaragna
  • 37
  • 2
  • 10
0
votes
2 answers

FLEX inserting an object to a data grid

whenever i insert an object to this datagrid it show this error TypeError: Error #1009: Cannot access a property or method of a null object reference. at Forms::LessonPlan/addLesson_clickHandler() this is my code for inserting an object var…
wawaragna
  • 37
  • 2
  • 10
0
votes
1 answer

Images and Listeners not working on J2EE flex server settings

let me point out that I do not have much experience with flex programming. Now, on to my problem. I have been programming using flex 4 on adobe flesh builder 4 in order to create a website. The site require a connection to java and hence I decided…
falo
  • 25
  • 6
0
votes
2 answers

Sending a file between AIR applications using local connection

How do i send a text file between air applications using local connection? Sender AIR private var conn:LocalConnection; public function init():void { conn=new LocalConnection(); …
user584263
  • 345
  • 5
  • 17
0
votes
1 answer

Does Flash Builder 4 Generated Value Objects Support Inheritance/Polymorphism?

At Java side, I have Interface Node FloatLiteral implements Node Resource implements Node And DAO that provide service that returns public List getAll() Thus it can return FloatLiterals and Resources. When I use Flash Builder 4 Data/Services…