flash-builder

How to access Child variables after they've been created

I'd really appreciate a point in the right direction, actionscript and flashbuilder are pretty new to me and i feel my knowledge has some pretty fundamental gaps in it still and I'm struggling to plug them. Anyway. So I have some rather simple circles based on an AS class called CircleA: > Package components { >     impo...

Possible to re-use flex forms?

Is it possible to use a form for both initial creation and updation based on a target url? For example, if a user goes to http://localhost/create/new can I have a flex form with empty input fields be shown, but if a user goes to http://localhost/update/1 can I have the same flex form, but with input fields filled in be shown instead? Al...

Can one keep both version of Flex builder simultaneously (verision 3 and version 4) on his/her machine

Dear Friends, I have Flex builder 3 already installed on my machine. Now, I want to use Flex builder 4 also (officially Flash BUilder 4) on same machine. Can I directly start with Flex builder 4 and import my Flex BUilder 3 project there w/o any loss ? If not then, do I need to first uninstall my current version (3) or can I keep both t...

Should I be learning Flash/Flex/ActionScript or HTML/CSS/JS ("HTML5")?

I'm fairly new to this whole web-development thing (2 weeks maybe, my 1st scraping of code exists here, I quite like it) and I ended up learning to use Adobe's Flash Builder 4, which I have come to quite like (although Action Script annoys me at times). Recently however I've been reading a lot about "the future" of web development, RIAs...

Change the color of ";" inside Flash Builder

What the option to change the color of the ";" inside Flash Builder 4 ? ...

Starting a Windows application from a Flex4 mxml desktop application

I want to write a Flex4 mxml application which can be used to start a Windows application like Skype/Word on the click of a button. How to do this using Flash Builder 4? ...

Spark source removes custom Video Player skin

I have a problem with skinning a video player with spark in Flash Builder 4. It works all right if remove the source="[link to .flv]" tag in VideoPlayer but when I add it again the skinning dissapears. Any thoughts on this issue? I'm using the exakt code from this page: http://blog.flexexamples.com/2010/06/17/styling-the-scrub-bar-data...

Flash Builder 4 - External CSS theme caching issues

I have a Flash Builder 4 application which uses custom themes by loading external style sheets at run time. The user can change the themes via a dropdown menu. Everything works correctly except for some weird caching issues. As you change themes, the main background color will change but certain elements will remain cached. Any ideas or...

How do you stop Flash Builder 4 Actionscript project launching Flash IDE?

I am trying to create an Actionscript project in Flash Builder 4. However when I debug or run it always runs in the Flash IDE. I want it to run in the standalone flash debugger without the Flash IDE! This is driving me crazy. Please someone let me know how I change this. I'm on Mac if that makes a difference. Much thanks! ...

Flash Builder best practice for working on multiple versions of a project

I have a large Flash Builder project that is part of a much larger (.net) solution. I typically have, for the entire project, a forward dev branch going, as well one or more bug fix branches. What is the best way to set this up in Flash Builder, given that Flash Builder does NOT want to import an new project (bug fix branch) that has the...

How to select other objects from a group? (Flex)

I have a group of multiple objects. If I select one object from the group, then i use the method: click="makeObj(event)" And then the function: protected function makeObj(event:MouseEvent):void { var targetObj:Object = event.currentTarget; } But how to use all the other objects in the group except clicked ...

External SWF shifts on click

Hello I've got an application that has one screen where there are 8 windows moving around a faux 3D octagon in relation to the mouse position, moving back and forth to give the user the feel of being inside a round(ish) room. Each window is a separate swf that is being called into the application, and when a user clicks on a window, it ...

Setting the WebServiceWrapper endpointURI at run time

I'm in the middle of switching from Flex Builder 3 to Flash Builder 4, and one of the problems I have run into is that support for web services in 4 is substantially different. In both IDE's I am able to import a WSDL for my web service and it will generate the appropriate client classes for communicating with the service. The generated ...

Learning Flex 4: Advice

So, the company I'm working at uses Flex and Java for their product. Currently, I'm just an XML editor, but I would like to get my hands dirty with some of the technology they use as soon as possible. I was wondering if anyone who has learned Flex could possibly give me some advice on the best way to learn Flex as quickly as possible w...

Updating view spark.components.List

I am using a List component inside an itemRenderer. The main user interaction involves dragging an item from the List in one renderer and dropping it in another. My problem: When the data object is updated I want the Lists' height to be modified according to the number of objects in the dataprovider(dp), which is passed to the List fro...

Data binding from a method in Flex

Hello all, I have the following mxml (Omitted some parts for brevity purpose): <fx:Script> [Bindable] private var _dataSet:IDataSet; public function set dataSet(value:IDataSet) { _dataSet = value; } private function getColorItem(itemName:*):String { if (itemName == "Research") return "#31e5fc"...

Safari MegaMenu c/ hoverIntent problem when rendering over Flash swfobject

I have a bizarre problem that recently surfaced. I have some megamenus -- they are coded very simply as unordered lists and use jQuery. There are coded up very much like this SitePoint tutorial found here. Here's my jquery $j('li>a[topnav], li>div[topnav]').hoverIntent({ sensitivity: 4, interval: 100, over: ShowMenus, t...

Convert Flex Action Script project into a Flex project.

I've got a flex action script project that consists of 3 AS files. I'd like to use the Flex frame work so I can add some components and other functionality. How can I go about converting this Action Script project into a Flex project with a .mxml file? I'm using Flash Builder 4. thanks Here's a link containing the project files I'm ...

Advanced Flex custom components for working with graphics and text

I'm looking for a new, modern components with enhanced functionality for working with graphics and text. For example by mouse over to the text appears a icon click on that appears a panel into which you can change the font, font size, font color, letter-range, etc. With graphics by pointing resizing handles appear, rotation, reflection...

Run a single test in Flash Builder?

I have been using Flash Builder to build my flex software and I am a TDD guy. I find it irritating that I have to run ALL my tests in order to run any tests. It causes friction in my TDD workflow. I really want to write a test, and run that test in isolation. I do this in .Net all the time (with TD.NET plugin), but I can't find a way...