Flex :: Accordion Flickers When Refreshed?

Mar 10, 2011

I have an accordian which contains a repeater. That repeater takes an array as a dataprovider. The array in turn gets data from an XML file, on server, via HTTPService.

Now, data in the XML file gets modified after sometime frequently so I send the HTTPService after every 5 secs by using a Timer.

Problem: When the timer timesout after 5 secs, HttpService is sent, data is retrieved and showed in accordian but each time this happens, the accordian flickers. Thus, the flickering happens every 5 sec which is quite irritating.

Can I somehow remove the flickering to make the accordian update seemlessly? If it's the problem with accodian, will it persist if I use a DataGrid in place of accordian?

View 1 Replies


Similar Posts:


Flex :: What Event Fires After Chart Refreshed

Nov 22, 2011

When executing dataprovider.refresh() for a chart component it redraws the chart. How do I determine when the chart is redrawn? I would like to take a png screen shot of the chart when it is fully drawn.

View 1 Replies

Flex :: Prevent An Html-template Sub-folder From Being Refreshed During Build?

Apr 25, 2011

I placed my AMFPHP folder inside my htmltemplate project folder, but now everytime i build it wants to 'refresh' the folder which takes forever. Is there a way to set it so that folder does not refresh each time? I put the AMFPHP folder in there so I can have a unique copy for my debug builds and leave the production build one alone.

View 1 Replies

Flex :: Repeater With Dataprovider Flickers A Bit When There Is An Update

Dec 16, 2009

i have the following code:
<mx:Repeater id="user" dataProvider="{data}">
<mx:VBox styleName="repeaterVBox">
<mx:Text text="{user.currentItem.a}. {user.currentItem.b}"

[Code]....

the dataProvider 'data' updated itself every 3 seconds, so every 3 seconds that is a flicker of some sort, i see for a really short time an empty area and then it gets redrawn again. is there a way to make the update somewhat faster ?

View 1 Replies

Flex :: 3 - Text Control Flickers When Changing Stylename

May 24, 2011

I'm having a flickering issue with a text control. Here's the context: I have a title which is represented by a Text control (no Label cause it needs to be able to be displayed in several lines). When the user rolls over the title, the text has to be underlined. What I have done: I've set listeners to the title's rollover and rollout events to something like this:

[Code]...

View 2 Replies

ActionScript 2.0 :: Accordion Component - Populating The Accordion With The Data?

Jul 10, 2009

I have an accordion component on my stage and I really do not even know where to start to do .I found this code on the Adobe help pages and it causes the movement of the accordion to bounce... which is great... but my problem is populating the accordion with the data.

Quote:

import mx.core.View;
import mx.transitions.easing.*;
top_acc.createChild(View, "first", {label:"FIRST", icon: vt[i]});[code]........

My accordion is called "top_acc".I have three(3) labels... (FIRST,SECOND, and THIRD) Within there i would like arrays to be displayed for the select label.My arrays are defined and when i trace them i get exactly what i am looking for... the format of the code to add an array to my accordion...then upon selecting the item in the array displayed i would to be able to display that same array value in a text box called "my_selection" ....also the amount of items in the array are not static and change day to day..

View 2 Replies

ActionScript 2.0 :: Create An Accordion Menu With Out Using The Accordion Component?

Mar 6, 2007

how to create an accordion menu with out using the accordion component.

View 14 Replies

Flex :: Open Percentage On Accordion?

Dec 9, 2009

I'm currently developing a Flex application with an accordion containing 2 canvas: one of them containing a DataGrid and the other one a form.When the user clicks on one of the DataGrid's rows, it opens the accordion on the second (form) canvas. However, I'd like to open the second part of the accordion only by half, so they can still see the data in de datagrid.

View 1 Replies

Flex :: Customize Accordion And Panel Look?

Sep 17, 2010

I want to increase the (height) size and change the color of a spark accordion header, similarly I want to change the color of a spark panel header. Can I do this through mxml properties and css or will I need to use a custom skin?

View 1 Replies

Actionscript 3 :: Accordion In Flex With Only Headers And No Containers?

Dec 17, 2010

Is it possible to create Accordion with only the headers without adding any containers in it? Is there a way so that I can just create the Accordion with three sections with only labels?

View 2 Replies

Flex :: Add Button To Its Accordion Header Which Can Clickable?

Feb 2, 2011

I want to add a button with a cross to the header of the accordion which can be clickable. that means i want to display a message when the some one click on that button. i go through many of the samples in the web but couldn't get it done.

I tried with also a CanvasButtonAccordionHeader, it shows the button but when i click it, it didn't give the message although i created the click event handler.

View 2 Replies

Flex :: Make Accordion Slide From One Pane To Another?

Mar 1, 2011

If you add an Accordion navigation component to Flex Application, like this[code]...

Question is: what code should I write to make my Accordion's panes switching animated?

(Like in Adobe's demo called Tour de Flex)

To see what I mean by animated switching between panes:

1) go here: [url]...

2) select Other Components -> Containers -> Super Accordion in the left pane

3) click on Super Accordion's pane headers and see them moving

View 1 Replies

Flex :: HDividedBox Accordion List Resize?

Sep 15, 2011

I'd to use a HDividedBox and I have resize problem.Indeed, when I reduce the width of accordion component, the list is not reduce.Find below my code

<mx:HDividedBox width="100%"
height="100%"
color="0x323232">

[code].....

View 1 Replies

Flex - Flash Accordion And Image Sizing?

Jan 20, 2012

[URL] how to build something like that with controllable column numbers, width and images that might be using XML.the main thing is how to accomplish such an effect?P.S. I've developed an Image Slider using Flash Builder 4.5 The problem is that when I included that in HTML page when someone performs ZOOM with CTRL+ Mouse wheel in a browser, the DIV that holds my SWF file and SWF file itself increases in size but the image itself that is inside my slider still remains of the same size.. How to fix it?

View 1 Replies

ActionScript 3.0 :: Flex - Accordion. No Child Selected?

Oct 21, 2008

When i create a new Accordion object and add some items to it with a dataProvider The default selected Child is 0.

View 3 Replies

Css :: Set Skinning Like UpSkin,downSkin,overSkin To Accordion In Flex?

Aug 12, 2009

In my project i used Accordion . if i add skin to Accordion then so error ? but i tried like

<mx:Accordion borderStyle="solid" width="212" height="346" upSkin="@Embed(source='image/UPDATE.png')" >

But shows error like Cannot resolve attribute 'upSkin' for component type mx.containers.Accordion. how can i add overskin,downskin,upskin to Accordion in flex ?

View 1 Replies

Flex :: Accordion Component : Open Multiple NavigationContents At Once?

Jun 23, 2011

Is there a way to open multiple navigation contents at the same time with the Accordion in Flex 4.5 ?

View 1 Replies

Flex :: Accordion Child Controls Are Null Until Open The Panels?

Dec 18, 2009

I am using Flex AS3, i have a accordian with two tabs each tab contains some text boxes and i am trying to access these child controls from button event handler which resides outside the accordian, Problem is these controls are null until i open the tabs of accordian.

View 2 Replies

Actionscript 3 :: Split Accordion Panels Into Multiple Files In Flex?

Feb 15, 2012

I have five panels with some logic in every of them.

How could I split styles, code and layout for every panel to several files?

View 1 Replies

Flex :: Accordion In Flex 4.5 Mobile App?

Jan 24, 2012

I want to work on text layout to display in a vertical accordion. I was able to work with accordion in web app but unable to work on a mobile app since the accordion is not available in mobile flex. Please help me to work on flex mobile accordion. Also suggest me how to display the paragraph contents and bulletins in flex mobile accordion...

View 1 Replies

ActionScript 2.0 :: Swf File Not Visible Until Page Refreshed?

Feb 16, 2009

I have a swf with a link which loads another swf, the second swf is not visible unless you refresh the page or "back out and go in" again. have a look at [URL] If you click on the image labeled "Television" you should see the new swf but all you see is the television image link in the lower left (this is correct as you use this to (back out) return to the main swf. If you then go back and try again the new swf shows.

Here is the code I am using to load the second swf

ActionScript Code:
function released()
{
home.tooltip._alpha = 0;

[Code].....

View 9 Replies

ActionScript 2.0 :: External Txt Refreshed - Old Values Are Still Displayed

Apr 13, 2006

I use an external txt to load some vars... works fine... But when I change the values of vars in the txt, and reload the txt in my swf, the old values are still displayed. Only when I take a new browser I can see the changed values. Does enybody know how to make sure I can load my changed vars from the txt without refreshing the internetbrowser?

View 2 Replies

ActionScript 2.0 :: Preloader Doesn't Go To The 2nd Frame If The Page Is Refreshed

Mar 26, 2006

my preloader is working when its first run, but it doesn't go to the 2nd frame if the page is refreshed. (Its for a swf that has about 9,000 frames but I don't think thats the issue)

Code:
onClipEvent (enterFrame) {
mctotal = _root.getBytesTotal();
mcloaded = _root.getBytesLoaded();

[Code]....

View 4 Replies

ActionScript 3.0 :: Site Slow After Clicking Various Sections - Fine One Refreshed

May 3, 2009

I am working on my new portfolio, made entirely in AS3. I am well aware that it is quite graphic heavy, and the videos will slow down some of the other animations. What I can't seem to figure out is: why does it load fine initially, but once I click around to various sections previous sections seem to be slower and slower. When i refresh the site it runs quickly again (except in FF on a PC, thats another issue I'm working out). Is it simply just a memory issue? Aside from getting rid of videos/rasterized images, does anyone have any tricks as to how to get it to run smoother? Seems to me that if each section runs fine initially, but only run slow once different sections are loaded then perhaps there is a solution. [URL]

View 3 Replies

Professional :: Flash Banner On Website Won't Load Until Browser Is Refreshed

Oct 4, 2011

I am having this problem on a website where the flash banners for each  page wont load in any browser until you either refresh F5 the page or  try re-clicking the page nav links a few times. Once loaded they are fine, but if browser's cache is cleared, no go. [URL] Some research suggested "Usually this happens if there are a lot of  linkaged objects in the library with 'Export in first frame' option  enabled. If this is the case, please disable this option. The problem is  not in the quantity of the linkaged movieclips with 'Export in first  frame' option enabled, the problem is the size of the objects which are  linkaged."

View 7 Replies

Actionscript 3 :: Preloader Loads Once Then When The Page Is Refreshed It Doesn't Load?

Oct 25, 2010

I have a .fla that has a preloader on frame one and the rest of the file on frames 2 thru 55. The preloader code is the one that comes in Flash cs5's sample files. there is a movie clip with the instance name lbar and text with the name lpc. here is the code

stop();
import flash.display.*;
this.stop

[code]...

It works fine the first time people are on my site but when the page is refreshed or is gone back to sometimes the loader bar is just stuck and doesnt load.

View 1 Replies

Professional :: Flash - Banner On Website Wont Load Until Browser Is Refreshed??

Nov 18, 2010

I am having this problem on a website where the flash banners for each  page wont load in any browser until you either refresh F5 the page or  try re-clicking the page nav links a few times. Once loaded they are fine, but if browser's cache is cleared, no go. Some research suggested "Usually this happens if there are a lot of  linkaged objects in the library with 'Export in first frame' option enabled. If this is the case, please disable this option. The problem is not in the quantity of the linkaged movieclips with 'Export in first frame' option enabled, the problem is the size of the objects which ar linkaged." I have de-compiled the SWF and checked out the library, but really have no idea in regards to Flash files and their construction as to what is or isn't an issue.

View 5 Replies

ActionScript 3.0 :: Netstream Flickers When Changing Video

Jul 28, 2011

I have a netstream object playing a video introduction

ns.play(video.flv)

and on another frame of my movie I have a menu, at which point I call

ns.pause()

and then depending on what the user clicks, the netstream opens a new video:

ns.play(video2.flv)

except I see a flicker from the previous video I had running. I've tried all sorts of things.

View 2 Replies

ActionScript 3.0 :: Image Flickers Quickly Before It Fades In

Mar 27, 2010

im going through something that is driving me crazy.... i have the following code:

[Code]...

what it is supposed to dois the images fade in, then a mask animation loops... but what is happening is that the image flickers really quick, then it fades in... not sure why this is happening.....

View 1 Replies

ActionScript 3.0 :: Fullscreen Flickers/Exits Immediately?

Aug 24, 2009

I have a curious problem with fullscreen mode in a [beta] game I designed and coded. When I launch the SWF, it works perfectly. Once I embed it in html however, it only flickers into fullscreen for a second and then back out again. It doesn't seem to be a browser issue as it happens in both Firefox and IE7 on my Vista machine.

The game is here:

Spectacle

Fullscreen is toggled by hitting the "F" key.how to get it to stop flickering?

View 3 Replies







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