Flex3 :: Possible To Run SDK Compiler On FreeBSD?
Jun 14, 2010
I'd like to run the Flex SDK compiler toolchain on our FreeBSD integration server to get around some nasty things like having to check in compiled Flex artifacts (yuck, I know!).It's worth noting that we have and use the data visualization components under license, so we'll need support for building with those as well.
View 1 Replies
Similar Posts:
Aug 5, 2011
Its stated in adobe site that the Flash Builder 4 compiler is indeed 25% more performing than the previous Flex Builder 3 compiler.
How can I confirm that?
For example if I make a simple application on Fx3 and the same on Fx4, then how would I compare the compiler performance using my project?
View 1 Replies
Oct 8, 2009
I have one swf file in that i used fscommand to get final output when submit button clicked in that swf i am loading that swf in SWFloader in flex3 .i need to get fscommand value as Alert, how to get that value first and display as alert.
View 2 Replies
Apr 27, 2010
Do you know anything similar to UncaughtErrorEvent but for flex 3.4 and flash player 9.0 ? I've seen that this UncaughtErrorEvent should work for flex 4 and flash 10.1, but not less.Is there anything for the versions mentioned to globally catch the exceptions in flex?
View 1 Replies
Jan 19, 2010
Can you please tell how can we place ADS (whether Google Adsense or others) on a website completely designed in FLEX?
View 2 Replies
Aug 21, 2009
I'm getting occasional ConcurrencyError faults when using HTTPService in Flex 3. I have four HTTPService objects, all configured with concurrency=single. I'm not sure though how to continue to diagnose, as I don't see in the FaultEvent what service object caused the issue, and I can't easily reproduce it on-demand.
One feature of my app is that I am also using a URLRequest to load a sound shortly after receiving a result from one of the HTTPService calls. Could this be related to the concurrency error?
The fault looks like this:
[FaultEvent fault=[RPC Fault faultString="Attempt to invoke while another call is pending. Either change concurrency options or avoid multiple calls." faultCode="ConcurrencyError" faultDetail="null"] messageId=null type="fault" bubbles=false cancelable=true eventPhase=2]
View 1 Replies
Aug 25, 2009
I would like to change the state of a flex button component with actionscript (on the fly) to present it as mouse-down/mouse-over/mouse-up, in order to use the css skining with out the existence of the mouse cursor. I tried to do this with button.currentState but this doesn't work.
View 1 Replies
Sep 1, 2009
I have two labels (A and B) in a Flex VBox, with the horizontal alignment set to "center". I'd like to set A to be vertically centered (in the exact center of the container) and B to be underneath A (or on the bottom; either will do). What's the best way to rig this?
View 3 Replies
Nov 5, 2009
I need to restrict the user and allow only first character as + or - or 0-9 and other character as 0-9..how can i do this in regular expression validator the below expression works but i need in restrict field.
<mx:TextInput id="txtTop" restrict="[0-9+-][0-9]*$" />
[Code]...
View 1 Replies
Jan 6, 2010
I opened up FB3 today, without making any changes, I press F11 and now I am getting this error that I never have gotten before: ReferenceError: Error #1065: Variable CaratPicker2_inlineComponent1 is not defined.
I find it strange I am getting this error everytime now, when I never got it before and I didn't make any changes before I started getting it. Anyways it is coming from line 78 which is <mx:Component> the start of an inline item renderer.
So any ideas how or why this error is being thrown? I have never seen an error like this before and the message isn't very clear to me as to what the issue is.
View 2 Replies
Jan 12, 2010
what is synchronous and asynchronous call in flex. Why Httpservice is asynchronous and how to make a call to asynchronous call.
View 3 Replies
May 4, 2010
I need a calculator for a flex app I am making, and was wondering if there was any official widget prebuilt or already in good quality. I could make one myself but it would be nice to use one that already existed and had a nice api to customize it with.
View 1 Replies
Sep 6, 2010
i cant find a way to horizontal alignment of the data grid rows, although it has a vertical alignment parameter.
View 1 Replies
Apr 26, 2011
I have a list that as an arraylist as a dataprovider.It has an inline item renderer thet has image control. The click event doesn't work for the image ctrl.The code looks like this
[Code]...
View 1 Replies
Jul 13, 2011
I am beginner to Flex3 .. I am developing simple application with login screen having fields user name and password. I wanted to know how i store this information in MySql database?
View 1 Replies
Sep 9, 2011
in the adobe flash publish settings i spotted a setting called "Hardware acceleration" with these options:
-None
-Level 1 - Direct
-Level 2 - GPU
now my question is, if you dont use flash to compile your swf but rather flex sdk, can you also enable these accelerations?
View 1 Replies
Mar 1, 2012
i am new to flex. I have this task. My boss wants an application that will enable his secretary in another room listen and view and probably take minutes of his meeting in the conference room. There is a webcam attached to one of the computers in the conference room.
View 1 Replies
Jun 9, 2009
After upgrading the Flex SDK from 3.1 to any newer version of the SDK and trying to compile an existing project, the following error appears in the Problems pane:
Description: { expected Resource: (shows project name, not a specific file) Location: line 15
Any ideas how to solve this or where to start the bug hunt?
It looks like the problem is in the ...sdks/3.3.0/frameworks/libs/player/10/playerglobal.swc file, but I'm certainly not sure.
View 4 Replies
Sep 5, 2009
Here is the problem. I've created custom RectangularBorder and set it as border skin for TitleWindow. After this manipulation inner content of window is starting at 0,0 point of it. How could I set offset of it?
Just setting top padding does not work because scroll bar still begins from the top of the window after this manipulation.
View 3 Replies
Dec 16, 2009
i have a Problem to send a value from the DataGrid to a function- this is my function:[code]Now i have my DataGrid which receives Information from an XML File. Everything works fine. All Information is shown correctly with that Tags:[code]except the Button. The Function "browseLoc" only has the text {codeworxx.pages.page[selectedPageIndex].url} in it - not the value. How do i do it?
View 1 Replies
May 14, 2010
I've a parent (Canvas) with many children (LinkButtons)The linkButtons trigger an event to communicate between them:[code]Now, the issue is that the event is only listened by the dispatcher child. In other words, only the child triggering the event, is receiving it. I was wondering what's wrong with it, and if I should add a listener to the parent (Canvas)I basically need the children (LinkButton) communicate between them
View 1 Replies
Jul 5, 2010
I have a datagrid which has id="myGrid" in my application, from it I call a component. Now from the component I can call parentDocument.myGrid.selectedIndex = 0; and it works fine.But I want to make the component reusable, and I would like to pass the ID to the component each time, so myGrid will change, how to properly send the ID to the component, and use it in the component?
View 2 Replies
Apr 12, 2011
My flex application generates individual pdf documents based on individual selection criterion,but i need to merge those generated pdfs or is it possible to store individual pdfs temporarily then merge those into single pdf?
View 2 Replies
Apr 13, 2011
I need some help forcing Flex3 to resize my TitleWindow component after an event.
My resize MXML looks like this:
<mx:Resize id="rs1" duration="1000"
heightTo="{radioVBox.y + radioVBox.height + 110}" />
How do I force it to resize after an event? I want to force the TitleWindow's height to change after the event in myFunc1 ends. private function myFunc1():void {
[Code]...
View 2 Replies
Apr 15, 2011
I want to create flex application by which i can verify user age i have use following code can u tell me why i cant see mx component "dialogtitle","dialogcontent""dialogbutton"
<?xml version="1.0" encoding="UTF-8"?>
<mx:VBox creationComplete="{initComponent();}" height="219" width="560" xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:components="components.*" xmlns:local="*">
[code].....
View 1 Replies
May 24, 2011
I have a modal Flex dialog and want to make the background not of the window itself, but the semitransparent modal indicator transparent. (Yes I tried to convince the client they don't want to do this, but apparently they really want to do it). Is this even possible?(prefer a solution using Flex 3's TitleWindow, but Spark/Flex 4 TitleWindow is acceptable)
View 3 Replies
May 25, 2011
I would like to know how do I get the value of the dynamic textboxes via their id.
for (var countz:int = 0; countz < questionCount; countz++)
{
hboxtextboxz = new HBox();
txt = new TextInput();
[Code]...
how I get the values out of the dynamic textboxes I created with the for loop?
View 2 Replies
Jul 28, 2011
Is there a way to take screenshot of the client's window using flex?
I found an example which uses java bridge, but i am looking for different solution.
View 1 Replies
Jul 28, 2011
[code]Now, the above code works fine for some people using our software while others are experiencing the following error ( in faultHandler() ):[code Again, the error happens to some people and not for others.Have I missed something? Would it be a machine / browser specific problem? As a sanity check the above code works with the same .swf file in chrome, ie, firefox and safari.I have read about the crossdomain.xml and don't think that is the issue as YouTube have that defined.Finally, all users (intranet app) are using IE and the same version of flash.I have been pulling my hair out the past 2 days and asking the question over and over again "Why is it only happening for some users and not for other users?"
View 2 Replies
Mar 2, 2012
We have a Flex application which is build against the 3.3 SDK. It has been in production for more than a year without any problems, till yesterday. We got a bug report yesterday that some content is invisible which prevents the user from completing an assignment. I looked into the problem and I have narrowed it down to Flash Player 11. Unfortunately it got me no closer to solving the problem.The part of the application that is giving problems is a separate .SWC which is loaded in a SWFLoader object. This is placed on a Canvas which in turn is shown to the user via the PopupManager.This is what it looks like when I view it in FireFox 10.0.2 with Flash Player 10,0,45,2 (click for image).
And this is what it looks like when I view it with Flash Player 11,1,102,62 in Chrome 17.0.963.56 (click for image)As you can see I am missing the checkboxes, two buttons and the checkpoint in the middle. The checkpoints drops in from the top of the screen and sometimes you can see parts of it. It looks like there is something invisible on top of this. In the Flash Player 11 version I am able to click on the checkboxes that are invisible and this does trigger the expected behavior so I know the mouse clicks are handles properly. Same goes for the buttons 'Vorige' (previous) and 'Volgende' (next), even though you can't see them I can still navigate between states.I have check if disabling the hard acceleration in Flash Player 11 made a difference but unfortunately it didn't. I also thought it could be the preloader that is blocking out part of the screen but the position seems all wrong and I am not having any problems with other external .SWC files that are presented to the user.
View 1 Replies