Flex :: What Proportion Of Users Have Framework Cached

Dec 7, 2009

We have a Flex application which doesn't currently use the Flex framework as an RSL. We're considering switching, but we're not sure what proportion of users will already have the framework cached.There's an added complication in that we're using the data visualisation components too, and we may have a choice as to which version of the framework we use.

View 2 Replies


Similar Posts:


Flex :: Checking If Browser Is Using Cached SWC/SWF?

Dec 7, 2009

How do you know if the browser is actually using the cached swf RSL/library for Flex projects? I would like to be able to do different things from the preloader based on whether or not the user has never downloaded the library vs. they have it already cached by their browser.

View 1 Replies

Flex To Load Cached Preloaded Images?

Apr 5, 2011

In my application, I make numerous calls to preload images to brower cache in the background using Loader instances and ignore the complete event. I don't store the results in the application, but rather want to store them in the browser cache. The images have long Expires header dates.

When I want to use a particular image(s), I again use a Loader instance and call the same url and listen for the complete event to load the file to an Image.

The problem is that when I re-request the url for the "cached" image, it is making an http request with response 200 status, which I presume means it is hitting the server. How do I make sure that a request for a cached image never hits the server from Flex? I am finding that any request to a url for a cached image (with a long expires header) is making another request to the server, or at least that is my interpretation of it in Firebug.

View 1 Replies

Flex - Caching - Non-cached RSLs In Flex?

Jun 17, 2010

I have a project that is for several customers, the only difference is in the DB, everything else looks the same, except for the main page's text. That is loaded from an external swf file. I created a library, compiled it as an swc, imported it and using it as an RSL. The problem is that if once I've opened the page, and afterwards update the rsl (because changes in the text are needed), than it's already cached by the browser (not the flashplayer's cache but we shouldn't discuss this please!) and the updated swf won't be loaded. If I use it as an external, the page won't even start up (the browser says it's loaded, but it's blank, not even the loading progess bar of flex appear)

<local:MainPage includeIn="default" currentState="{MainPageState}" id="Page"
width="100%" height="100%" />

this is the code on the main page, if I comment this out, than the whole thing loads, even with the use of the "external" link-type. in the design view, I see the component, but I get a warning for the library:

Design mode could not load MainPage.swc. It may be incompatible with this SDK, or invalid.DesignAssetLoader.CompleteTimeout)

View 1 Replies

Flex :: AIR Cache Control Work / What Is Maximum Age Of Cached Content

Jan 6, 2011

I'm currently working on a project that needs to request a url multiple times. Having studied the the HTTP Proxy (Charles) it seems that AIR will cache the first response and then return the same response for each subsequent request.Does anybody know how to know if the response has been cached other than setting the URLRequest to useCache, but this doesn't say if the response was a cached response or not. The digest isn't set on the URLRequest either, although it does mention this is for swz only, so how does it know if the content is the current content or not? Is the responseHeaders used to find out how long to hold the cache i.e.Cache-Control: max-age=900

Also does anyone know how to flush/purge the cache or are we at the whim of the GC and in that case how does it know if to leave it in the cache or now?This makes sense to me, but still I would like to know how to regulate this cache.Further more: I've tested a set up where parallel URLLoaders (10) are made and created which open the same url to see what happens in that instance. It seems that each parallel request is made until a successful response is given, all subsequent calls are then cached. Calls which are sent out before the successful request is then completed. It looks like the items which are already in being processed do not use the cache and return with correct data.Additional The AIR runtime doesn't even send a "If-Modified-Since" header, so the cache isn't even honoring HTTP protocol. So it seems as if Adobe has implemented it's own version of a cache which doesn't even use HTTP/1.1 Header Field Definitions.

View 1 Replies

Flex :: Connecting Flex Application To Tomcat + Spring 3.0 Framework With BlazeDS?

Apr 9, 2011

I'm developing a web application (client in Flash Builder 4, server in Eclipse 3.6 + Tomcat 7 + Spring 3 Framework). How do I make the Flex client automatically deploy in the Tomcat server and use BlazeDS messaging and remoting more seamlessly?

View 14 Replies

ActionScript 3.0 :: Get The Proportion On A Text?

Feb 11, 2011

I need to get the propotion on a text and NOT the textfield that the text is in. I've have trying to use a bitmap and then get the highest and lowest pixel (Y) on the text and also the moast left and right pixel (X) and then take the difference in X/difference Y and then get my propotion. Unfortunately i won't get the same propotion as if I'm looking och a text written in eg word.
 
Dose anyone now why? Can I found the propotion in any other way?

View 3 Replies

Flex :: Framework Have Used So Far?

Aug 7, 2009

I have been seeing some Flex Frameworks, but would like to ask to the programmers and Architects down here on which has suited best in your application.

View 3 Replies

Flex :: Use Framework Within An Air App?

Sep 11, 2009

Possible to use the flex 4 framework within an Air app.

View 1 Replies

Flex :: Use The Framework RSL Within An RSL?

Sep 25, 2009

I have a rather large Flex SWF and am breaking it up into separate Modules. There is some overlap between the modules and I want to put all of this into one shared RSL. The problem is that this RSL gets really large as soon as I use any Flex code because it has to include the Flex Library.Flex Builder doesn't seem to give me the option to use the Flex framework RSL in a library. Also compiling with compc and passing the runtime-shared-library-path doesn't seem to actually use the rsl.So it seems like this is something that is unsupported? Does anyone have any idea how I can do this? Is it just not possible? Is this something that is likely to be supported in the future or already supported in Gumbo?

View 1 Replies

Flex :: Looking A Game Framework For It?

Dec 8, 2009

I am looking a game framework for flex/AS3. I want to use it to create simple 2d games, such as tower defense, etc.

View 4 Replies

Flex :: Best Framework To Use With Spring?

Mar 10, 2010

I'm currently developing a Spring + Flex app. What is the best Flex framework to use? I've been using PureMVC...

View 1 Replies

ActionScript 3.0 :: Scaling Movie Clips In Proportion?

Jul 10, 2009

I have a few movie clips which all have specific registration points set I need to scale them down in proportion according to the registration point. If am looking at the stage, hold down the shift key and resize the movieclip it works exactly how I would like it to.

However, I need to do this dynamically using AS3. I have been scaling the movie clips etc but I cannot figure out how to emulate holding down the shift key in AS3, so that the movie clips are re-sized in proportion according to the registration point.

View 1 Replies

Flex :: Framework That Uses Signals And Slots

Aug 24, 2009

Is there a framework for Flex that uses the Qt Signal and Slots paradigm?I'm getting tired of these event-mapped frameworks.

View 2 Replies

Flex :: Handle Events Without Using A Framework?

Jan 4, 2010

I'm developing an AIR application with Flash Builder 4 Beta 2 (nightly SDK) an am not using a framework like mate. I have a couple of views and components in my application. An outline might look like this:

root
|- mainview
|-- toolbar

[code].....

View 1 Replies

Flex :: Advantages Of Using Software Framework?

Mar 24, 2010

I was reading these days about large projects implementation in python and Flex, and very often people praise the use of framework (like Cairngorm, PureMVC or others) over traditional OOP coding.

I think i dont really understand the advantage of using FW, which is the strong point over classic programming? how big should be the project in order to use FW? it is intended mainly for web-applications? or can be used for desktop apps as well?

View 2 Replies

Flex :: Use Of CairngormEvent In Cairngorm Framework?

Jul 28, 2010

What is the use to event extend the cairngorm event in cairngorm framework.?

View 1 Replies

Flex :: Picking A Front-end UI Framework

Nov 13, 2010

We're working to build the front-end of our application and struggling with selecting a good UI framework since we're not experienced UI people (we're mainly back-end developers). The central issue is that we don't know what we don't know and don't know how to best weigh our different options.At the moment, we're evaluating Flex, ExtJS, and Vaadin. Is there another option we should consider? What, are the major elements we should evalutate on?

View 8 Replies

ActionScript 2.0 :: Resizing Mc In Full Screen Browser In Proportion?

Feb 27, 2009

I'm using the code below to resize a mc so that it fits a full screen browser even when its resized. Its working fine but...

How do you make the mc (bga) resize in proportion. At the moment it squashes & stretches

// ***Stage aligned top left
Stage.align = "TL";
// *** Stop the stage from scaling with the browser window.

[Code]....

View 2 Replies

ActionScript 2.0 :: Fullscren Background That Stays In Proportion When Scaled?

May 14, 2008

i am building a website that has a fullscreen background image that resizes with the window when it is scaled and the content stays in the center, i have most of the site built but when i scale the window the background image distorts and doesn't stay in proportion...I need a code that keeps the background image from distorting if you scale or resize the browser window.

Here is an example of what I'm talking about- [URL] go to the company section. I used this tutorial for reference in building the site- [URL]

View 3 Replies

Flex :: Caching - Get Builder To Use The Selected Framework?

Sep 2, 2009

I'm attempting to create a Flex Project that will cause the Flash Player to cache the Flex framework. Flex Builder comes with Flex SDK 3.2.0.3958 and setting the Framework Linkage to use Runtime shared Library (RSL) under Project Properties -> Flex Build Path will separate the framework from my main application and I see that my project's bin-debug directory contains framework_3.2.0.3958.swf and *.swz for distribution.Flex SDK 3.4 fixes a few bugs, so I configured it as another available sdk and set it as the default SDK. When I compile, I expect the bin-debug directory to contain framework_3.4.0.9271.swf and *.swz; however, Flex Builder is still writing framework_3.2.0.3958.swf and *.swz.

View 2 Replies

Java :: Bluetooth SPP From Adobe Flex Framework?

Sep 10, 2009

I am successfully running Bluetooth-SPP applications relying on http://bluecove.org/ that is Java to Java.
I do now want to establish Bluetooth-connectivity in an Adobe Flex-application. Anyone has experience, ideas?

View 2 Replies

Flex :: Dispatching A Variable In Mate Framework?

Oct 14, 2009

I have a grid, when i click on the edit button it goes to edit page... but i need the value in the grid also to be passed to the page. this.dispatchEvent(new DepManagementEvent(DepManagementEvent.EDIT_NAVI));The above code lands in EDIT page... how can i move the values too.My Parent Page code.

private function editForm():void {
var event:DepManagementEvent = new DepManagementEvent("Edit Page",true);
dispatchEvent(event);

[code]......

View 1 Replies

Flex :: Make An Ultra Quickstart On This Framework?

Oct 27, 2009

I have to make an ultra quickstart on this framework, since I have to dive into an existing project ASAP.

View 5 Replies

Flex :: How To Handle Framework Events For ACE Test

Dec 23, 2009

In ACE Flex 3 , there is a topic "Handle Framework Events". Any document which lists all the 'required' framework events for ACE test? So I could know what are "framework" events and will focus on them.

View 1 Replies

Flex :: Zend Framework Model With Service?

Feb 10, 2010

i have a question about Zend Framework and mainly the model part. I know there is no abstract model class and understand why. I red a lot of blog posts about it, but couldn't find any example that would clearly explain it to me. I'm building a very basic application. Lets imagine we have just three tables.company(ID, name, street, streetNo, Town), meta(ID, name, description), company2meta(ID, companyID, metaID, value, note). All types of realtionship are there (1n n1, nm). The a need also services (amf) with Value Objects. So, here is what I think:

[Code]...

View 1 Replies

Actionscript 3 :: Flex - Use Framework Like Cairngorm Or Mate?

Feb 13, 2010

From what I understand a framework reduces complexity in areas that are common, like a log-in system. I use ASP.NET MVC at work and have done some work in Zend Framework but do not get how a framework helps with client side development. The reason ASP.NET MVC is used at work is for Unit Testing - does a Flex framework help with this too? why I should or should not use a framework with Flex?

View 4 Replies

Flex :: Call The Particular Service In Spring Framework?

Feb 23, 2010

How Flex knows to call the particular service in Spring framework.

I give in Flex side:

<mx:remoteObject id="myObj" destination="mySpringservice"/>

And remote-config.xml file:

<destination id="mySpringservice">
<properties>
<factory>spring</factory>

[Code]....

And how server knows to the particular flex remote object calls to particular spring service. any thing need to configure in service-config.xml file?

View 1 Replies

Flex :: Embed The Grid In ExtJs Framework?

Feb 25, 2010

How to embed the Flex Grid in ExtJs framework.

View 1 Replies

Flex :: What Is The Adobe Framework For Mobile Devices

Mar 18, 2010

currently working on Adobe Flex Technologies. I want to know whether Adobe had launched a Flex platform for mobile devices or not. If Launched what is the name of the Framework and please come with a sample example URL .

View 4 Replies







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