Flex :: Blurring And Disabling Background While Reconnecting Application To Backend

Sep 6, 2011

My Flex 4.5 application has many users from Russia and Ukraine with poor internet connections and Socket connections often interrupt and have to be reconnected.

Currently I set currentState to "offline" on IOErrorEvent.IO_ERROR and Event.CLOSE events and display just 1 component in that state:

<mx:ProgressBar indeterminate="true"
horizontalCenter="0" verticalCenter="0"
label="Reconnecting..." labelPlacement="center"

[Code]....

View 2 Replies


Similar Posts:


Use Servlet As My Backend Using A Flex Application?

May 8, 2011

I have developed a Flex application. I have also developed a Java servlet program for an Access database using Tomcat. How can I use that servlet backend for my Flex application using HTTPService ?

View 1 Replies

Flex :: Disabling The Transparent Background Overlay On A Popup

Mar 22, 2010

I have a button in my flex app that creates a popup overtop of everything. However, it seems like flex automatically puts this transparent overlay overtop of the stage when this happens. How do I disable this? I have tried contentBackgroundAlpha="0" and backgroundAlpha="0" with no luck. anyone know what the proper syntax is for disabling this transparency? I have been searching through the docs for a 30 minutes now looking for it.

View 1 Replies

Flex :: Create Pop-up Without Disabling Background / Drag Image Without Mouseup Trigger?

Dec 29, 2010

We are currently building a new web site and have run into some issues with our programmer. I am trying to do some research to see if we can find a way for my issue to be solved so that I can let my programmer know.[code]...

View 1 Replies

Flex :: AS 3 - Run Air Application In Background

Apr 11, 2011

I am trying to provide my users with the option to have my application launch automatically and complete a task at a certain time every week. I can make my application launch at log in using NativeApplication.nativeApplication.startAtLogin=true but I then want to detect if the time is the time they selected and if it isn't then run the application in the background until the time does match or the user shuts down their computer. On Adobe's webpage comparing Flex web apps and desktop apps it implied to me that applications could be run in the background.

View 2 Replies

Flex :: Set SWF Object To Background Of Application?

Jan 13, 2011

I am Creating one application in which I want to set one swf as my application background.

I am able to set background but it is only coming with some area only.

It is not coming in the whole application.

It is not scaled in the whole application background.

I am using 9-slice scaling with that background SWF.

View 2 Replies

Flex :: Osx - Application Suspended While In The Background Using Safari On Mac?

Jun 30, 2010

Users of my Flex application report that sometimes the application is freezed when the browser window is minimized or they select another active tab over it. In this suspended state, the application receives no CPU share and all network connections it uses are closed. When the browser window is restored, the application is resumed. This happened with Safari 5 on Mac OS Leopard, with both Flash player 10.0 and 10.1. I searched a lot but I could not find any information about such behavior.Is it possible entering in suspended state to be prevented and how? Is it possible for the Flex application to be notified about going into sleep mode and wake up back?

View 3 Replies

Flex :: Change Application Background Color At Run-time In Its App?

Apr 20, 2010

I have a Flex 3.5 application that will serve multiple purposes, and as part of the visual changes that I'd like to make to indicate which mode the application is in, I want to change its background color.[code]...

View 2 Replies

Flash :: Filling Flex Application Background With Pattern?

Aug 17, 2010

We are trying to fill our Flex 3 applications background with an image pattern by repeating the pattern throughout the background.

The pattern is a very small "bulleted"-background.

The Flex App seems to just stretch the image pattern even though we've specified in the CSS the following:

Application
{
background-gradient-colors: #ffffff, #ffffff;
color: #000000;

[Code]....

View 1 Replies

Have Transparent Background In Flash Application Built With Flex 4?

Nov 13, 2010

Is there a way to have a transparent background in a flash application built with Flex 4? I need to put it on a webpage where the html background is visible through the flash.

View 1 Replies

C# :: Flex To Communicate With C# Backend?

Jul 9, 2009

What is the best way for flex frontend to communicate with backend writted in C#? The only communication channel in HTTP, so no custom sockets.I used SOAP in the past, but am concerned about performance since the large overhead of xml, and this application I'm currently working on will be pretty data intensive.Anything that supports easy setup and transparent marshaling/unmarshaling is OK.Is there something as BlazeDS for .net?

View 2 Replies

C# :: How To Serialize Objects In Flex For Backend

Sep 26, 2009

We are developing an app with a Flex frontend and a C# backend, connected through web services. We are using the FLex Builder 3's Web Service Manager to autogenerate the webservice classes. The problem araise when Flex serialize our objects, for example, when we have a Number property with no value, this is serialized as NaN, and our backend doesn't know about NaN. Another example is when we serialize a cyclic reference, we get a stack over flow exception. I know in java, for example, you can configure the way xstream work with cyclic reference... So, the question is, can we change the way Flex serialize the objects so C# can work with this frontend? Is there any issue we should know about how flex serialize objects?

View 4 Replies

Flex :: Connect UI To A Unix Backend Server?

Sep 23, 2011

Im working on a project with the following basic needs:

Need to invoke a Flex Webapp in a new Tab from another Webapp in Java/Jsp.This Flex UI must be connected to a unix backend to show the backend operations on the UI.The unix backend server has telnet operations and SSO

View 1 Replies

Toad :: Get An Id Of Last Inserted Record In Backend And Display In Flex

Apr 4, 2011

How to get an Id of last inserted record from backend and display the same with success message as "RECORD INSERTED SUCCESSFULLY AS" +Id in flex...am using Toad for sql server.

View 1 Replies

Media Server :: Reconnecting Live HTTP Dynamic Stream Via FMLE 3.2?

Feb 22, 2011

As seen the tutorial [URL].. I have successfully implimented the steps. However the problem comes when the stream is disconnected and reconnected again due to network problems. Once the stream is reconnected the video stops coming, even though all 3 streams are succesfully publishing the stream to Flash Media Server but on the client side where I'm using OSMF media player the stream gets stops. Is there any setting that I need to impliment in the OSMF player to resolve this issue ?

View 1 Replies

Java :: Flex For Chart Based Reporting Having Oracle Backend

Nov 24, 2010

My only experience with Flex is some limited reading over the web. What i am wondering is if i want to use Flex or some variant of it for generating reports, specifically Charts, coming off a Java/Oracle backend can i accomplish that in an environment where the streaming media (we cannot play videos on our systems at work) is turned off? Also, are there any other restrictions revolving around using Flex for reporting in the form of charts? Currently, we use Jfree Chart API to develop charts but just exploring an alternative.

View 2 Replies

Flex :: Show Success Message From Backend And Display In Frontend?

Apr 20, 2011

How to show success message in frontend....when a record is inserted in backend.

View 2 Replies

Flex :: Simple File Upload Using UI And Spring/Hibernate/BlazeDS Backend?

Jul 13, 2010

I'm trying to implement a simple application which uses Flex on the front end and a Spring/Hibernate application on the back end, with communication between the two going over a BlazeDS channel.

I'm seeking direction as to the best and/or simplest way to approach this. I have the UI set up in such a way that the user is presented with a file chooser in which they pick the image file they want to upload. When this is chosen and submitted (as a form submission) then the server side should receive the image file data as well as some related metadata such as a description and date, then populate a Hibernate entity/POJO with the image file data and related metadata, and then persist the entity/POJO into the database.

I have found some examples of how you would do a file upload and download using servlets here and the FileReference class (here and here) but these don't appear to address the problem in a way which leverages BlazeDS and/or Spring/Hibernate. I want to put the image file data and related metadata (description, capture date, etc.) into a value object within the Flex application and then send this over BlazeDS to a service provided by my Spring/Hibernate application running on Tomcat. In this service I want to extract the image data (both the actual JPG/PNG/GIF data and the related metadata such as description, etc.) from the value object sent from the Flex app into an entity/POJO which is then persisted via Hibernate in my database.

Can this be done, and if so what's the best way to go about it? Am I mistaken in assuming that if I use BlazeDS then I am somehow bypassing the need to provide HTTP-based services such as servlets on the server side and instead I can use my Java services as "RemoteObjects"? Is there necessarily a one-to-one mapping between Java POJO/entity class and the Flex value object class when making this sort of transfer? If so is there a tool which creates corresponding Flex value objects from Java POJOs or vice versa.

Update: Some code to make this more clear:I have this as my value object in Flex:

package valueobjects
{
import flash.utils.ByteArray;
[Bindable]

[code]....

When I set a breakpoint in the method above and look at the image variable it looks to be empty, so I'm assuming that the transformation from the Flex value object to the Java POJO did not go as expected and that there's more to it than just adding a RemoteClass alias in the Flex value object class.

View 1 Replies

IDE :: Blur Tool - Not Blurring

Oct 29, 2009

I've got a strange problem with the blur tool. I have a movie clip that i have added a motion tween to and applied a blur to it - so the movie clip image blurs as it moves. This was working perfectly when i first tested it and as i've continued with the creating the flash file and re-tested for some reason the blur is no longer displaying. It's strange as it shows as blurred in the Flash file i'm editing but when i press F12 to display in a SWF it's not blurring. I've attached the file i'm working on

View 2 Replies

ActionScript 2.0 :: Blurring Buttons In Menu

Sep 10, 2008

I have a "tag cloud" style menu and want to blur out the other items/buttons when one button is hovered on. I need to attach to each button so that this can work somewhat easily?

View 1 Replies

ActionScript 3.0 :: Blurring A Picture According To Pixels?

Oct 6, 2009

I want to be able to blur an imageitmap horizontally and vertically according to a given radious of pixels. Lets say, that I want to blur the picture with a radious of 5 pixels..I saw there's an existing class called BlurFilter, but it receives numbers for the horizontal and vertical blur, and i'm not sure what the number's values mean.

View 3 Replies

ActionScript 3.0 :: Constantly Redrawing A Bitmap & Blurring It?

Dec 24, 2009

I have a movie clip with motion in it. I'd like to duplicate this image, blur it, and mask it. I think I can do all of that, but I don't know how to update the blur so it will blur the moving elements in my movie clip. Can anyone explain how to constantly take a snapshot of a movieclip and blur it (while disposing of old snapshots)?

View 2 Replies

Professional :: How To Achieve The Transparent Blurring Effect

Mar 21, 2012

I have done a fair amount of searching, but haven't found anything that will tell me how to achieve the transparent blurring effect I'm seeing on the barrels on this page: url...

View 5 Replies

Flex :: Enabling/disabling Checkbox According To Some Condition?

May 29, 2010

I have a chechbox in a gridview. i need it disabled for some condition and enabled for other. how to fetch check box id out side the grid.

View 2 Replies

Flex :: Disabling Few Rows In Spark Datagrid?

Sep 1, 2011

Is there a way in spark datagrid to disable some rows programmatically, in flex 3, it could be done using the function mouseEventToItemRenderer this way:

override protected function mouseEventToItemRenderer (
event: MouseEvent): IListItemRenderer {
var listItem: IListItemRenderer;// = super.mouseEventToItemRenderer(event);

[Code]....

And then I implement the function disabledRow to return true or false depending on some condition, the condition that will specify if the selected item will be renderered or not. Is there a way in spark datagrid to do the same?

View 2 Replies

Flex :: Hide A Vertical Scrollbar (without Disabling It)?

Sep 30, 2011

I have a list but want to hide the scrollbar but still keep the functionality. If I put verticalScrollPolicy="off", this disables scrolling via the mousewheel on windows (100% of my users use windows). How can I hide the scrollbar visually but keep the ability to scroll via the keyboard as well as the mousewheel?

[Code]...

View 3 Replies

Actionscript 3 :: Disabling Datagrid Selection In Flex

Oct 21, 2011

i have an array list of data which i am showing in spark data grid. once i select an idem and click on a button that i have linked with datagrid it adds a panel on screen. I want to disable this selection i-e to tell that this item panel have already been added. Any ideas how can i do that?

View 2 Replies

Flex - Disabling Project Refresh On Build?

May 23, 2009

In the Flex 3 Perspective in Eclipse, is it possible to disable the refreshing of a project after a build? How so?

View 1 Replies

Flex :: Enabling And Disabling Button In List?

Apr 15, 2010

I have a list with a dataprovider, it lists out buttons encapsulated in an item renderer. All I want it to do is have a skin that it changes to when it is clicked. I can get this to happen, but then it just goes back to its up state. I want it to stick on the down state, which I have to do by disabling the button.

So I tried this:

buttonList.selectedItem.enabled = false;
for(var i:Number = 0; i< buttonList.numChildren; i++)
{

[Code]....

View 2 Replies

ActionScript 2.0 :: Attach.Movie Causing Text Blurring

Mar 12, 2007

[url]... am attaching a movie clip containing pixel fonts. i have a stage listener that places the movieclip at stage.width/2 and stage.height/2.

if i publish the movieclip that gets attached on its own, its perfect, i can resize any way i like but if i resize the browser window when i attach it the text can get blurred. im assuming the movie clip may be placed on a decimal point rather than a whole pixel and this is causing the blurring.

is there any way that you can set the attach movie function to place a movieclip at stage center "to the nearest whole pixel"[code]...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved