Flash :: Preloader Hanging / Freezing With 'hiccups'

May 24, 2011

I've developed a flash-based site for a client who has an account with GoDaddy and have uploaded all files successfully to the hosting server. The site consists of an initial preloader named "preloader.swf", which loads an external SWF file named "main.swf" that contains different sections including an image-gallery section.However, I notice that at times (as not always this happens) the initial flash preloader for the main flash-based site loads faster than usual with "hiccups". This results in when having to view an image in the gallery section of the site (where each image is loaded externally from the server having a preloader of its own), the selected image loads in a jagged manner with "hiccups" (for instance from 22% it pauses then jumps immediately to 31%, then pauses again and jumps immediately to 47%, and so on).

Then, at a point in time, the preloader suddenly freezes/hangs the entire site, having no other choice but to refresh the site.Only then, once the preloader of the image has froze and the site is refreshed, or the cache is cleared, will the entire site work perfectly as supposed to - i.e. the initial preloader loads more slower and smoother, and the preloaders of when the images are loading are more smoother as well (no sudden jumps in the percentages as before; the preloader loads in normal increments).how I can make the site load smoothly always without having to encounter any hiccups, freezing and hanging, as I've been checking my code over and over again but I can't find anything wrong with it?I was doing some research and read that the cause might be because of the following line "ProgressEvent.PROGRESS" as it might not fire at times in IE or Firefox. Is that so? If so, what alternative must I take?[code]

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Preloader Hanging / Freezing With "hiccups"

May 23, 2011

I've developed a flash-based site for a client who has an account with GoDaddy and have uploaded all files successfully to the hosting server. The site consists of an initial preloader named preloader.swf, which loads an external SWF file named main.swf that contains different sections including an image-gallery section.

However, I notice that at times (as not always this happens) the initial flash preloader for the main flash-based site loads faster than usual with "hiccups". This results in when having to view an image in the gallery section of the site (where each image is loaded externally from the server having a preloader of its own), the selected image loads in a jagged manner with "hiccups" (for instance from 22% it pauses then jumps immediately to 31%, then pauses again and jumps immediately to 47%, and so on). [code]...

View 1 Replies

Professional :: SWF Preloader Freezing In IE

Jul 1, 2011

My web page, which contains a SWF using AS3 opens great in Chrome, Firefox, & Safari. When I open the page in Internet Explorer it freezes on the preloader for some reason I can not figure out.

View 3 Replies

ActionScript 3.0 :: Freezing At Preloader On Certain Browsers

Feb 9, 2009

I produced a site a year ago [url]... and recently - since my last update, its been freezing at the preloader on older browsers... (on one computer it didn't work on IE, I downloaded firefox to it and worked fine)

In that same browser that it doesn't work I can go to the SWF directly and it will load, although if I load it through the HTML page it will freeze as described.

View 0 Replies

ActionScript 3.0 :: Preloader Freezing On Browser Refresh?

Mar 14, 2009

i have a simple preloader in frame 1 (scene 1), and the rest of my movie in scene 2.

the preloader is:

//Import the required assets
import flash.display.*;
//Create a listener to call the loading function as the movie loads
this.loaderInfo.addEventListener (ProgressEvent.PROGRESS, PL_LOADING);

[Code].....

View 6 Replies

ActionScript 3.0 :: Flash App Hanging In Ie7?

Apr 16, 2009

've made a Flash app in as3. When it's executed in Firefox everything works fine, but in ie7 it's hanging. When the app is executed an xml is loaded. When the xml is loaded from the server, everything works fine, but when the xml is loaded from te webcache, the app starts hanging.

View 5 Replies

ActionScript 2.0 :: Friction Swinging - Stars Hanging By Strings From The Top Of Flash Document

Dec 19, 2005

I have an idea for something at work. I want to have stars hanging by strings from the top of my flash document. if the user mouses over these stars I want the star to lightly swing in the direction the mouse went over at. Almost as if you had a cardboard star hanging from the ceiling and you tapped it with your hand. I know this probably includes friction but my tests don't seem to work out the way I want. Does anyone know how to achieve this?

View 8 Replies

Freezing The Flash Movie In A Pop-up?

May 21, 2009

I have created 2 Flash movies in the form of a slideshow. The flash clips are embedded in the webpage that I was modifying and it works perfectly fine. What I would like to do is to allow users to be able to click on the flash image in the web pages. Once clicked, a new pop-up window will appear and it will show the freeze image of the flash that was being clicked at the moment. Currently I am only able to make the new pop-up window and the flash still played through itself in it while I need it to freeze and be static.

View 4 Replies

IDE :: Freezing The Flash Movie In A Pop-up?

May 21, 2009

I have created 2 Flash movies in the form of a slideshow. The flash clips are embedded in the webpage that I was modifying and it works perfectly fine.

What I would like to do is to allow users to be able to click on the flash image in the web pages. Once clicked, a new pop-up window will appear and it will show the freeze image of the flash that was being clicked at the moment.

Currently I am only able to make the new pop-up window and the flash still played through itself in it while I need it to freeze and be static.

View 2 Replies

Cs5 :: Flash Freezing When Clicking Between Applications

Jun 28, 2010

Flash seems to crash/freeze when clicking through to other applications.

i cant get any work done because its crashign all the time.

View 2 Replies

Flash Freezing When Playhead Reaches End Of Timeline

May 19, 2009

I have a piece of code like a the end of a timeline, most usually looping back to frame one or a stop() if I let the playhead play through to this frame then flash will freeze!

View 1 Replies

ActionScript 3.0 :: UnloadAndStop() Freezing / Crashing Flash?

Jul 24, 2009

I have been using the new unloadAndStop() function to unload some loaded SWFs after they are no longer needed. This has been working fine whilst testing in flash, and when I have tested it using firefox. However, to my utter horror and despair unloadAndStop() seems to be crashing safari and IE8. I haven't tried IE7.

After replacing unloadAndStop() with the old unload() the crashing stopped. So I am certain this is the problem. unloadAndStop(false) also caused flash to crash. No error was displayed.

This project has been 7 months in the making and involved a lot of hard work in the evening and weekends. I noticed that it was starting to lag after being in use for a while because SWFs weren't being released from memory. When I say lag as well, It's not like normal frame rate slowing down lag, the whole application will simply freeze up for a couple seconds, and the freezing lasts longer the longer the app has been running. I have gone through and made sure to null almost every variable myself, and null any variable in the loading swf that points to anything in the loaded SWF. It appears to be working now using the old unload() function, but will need more testing to be sure because the lagging only turns up after the application has been running for about 45 minutes and has loaded and unloaded several SWFs.

Anyway, is there anything that I can do about this or am I missing something obvious? I haven't found any other posts about this, has anyone else had this problem? Why does god hate me so much?

Sort it out please Adobe, I really don't think it should be this hard to get rid of a loaded SWF. If you were in front of me right I would be screaming at you.

View 3 Replies

Professional :: Flash Player Freezing IE Browser

Apr 8, 2011

So I recently got a new laptop. It came installed with Windows 7 64-bit and Internet Explorer 8. However, after installing the current Flash Player update, IE started freezing. I would open certain pages, and the browser would become unresponsive, leading me to end the program. I would try it again, and still the same result. The culprits were always the same, hotmail and tvshowsondvd, among others. Internet Explorer 9 was released a few days later, so I uninstalled IE8 and installed IE9.

The browser worked fine for a few days, but then it started to do it all over again, with the same web pages! Then I noticed something, all these pages were heavy in flash objects. So I tried uninstalling Flash Player 10 and guess what, it started working! No more problems loading pages. I can no longer view flash objects, especially on YouTube. I haven't had the problem since, but I need Flash Player installed.

View 1 Replies

Flash :: Camera Freezing When Using FlareNFT With FLARManager?

Jan 24, 2011

I'm trying to run the example application from the FlarManager download. It worked first time using the FlarToolkit engine, but the webcam freezes if I change to the FlareNFT tracker. The only change I've made is to the onAdded function:

From this:

this.flarManager = new FLARManager("../resources/flar/flarConfig.xml", new FlarToolkitManager(), this.stage);

To this:

this.flarManager = new FLARManager("../resources/flar/flarConfig.xml", new FlareNFTManager(), this.stage);

When using the FlareNFTManager it compiles but freezes the camera feed. No errors are thrown, but the FlarManager event handlers are not triggered (e.g. onFlarManagerInited, onMarkerAdded, etc.).

View 2 Replies

ActionScript 3.0 :: Stop A Loop From Freezing The Flash Movie?

Aug 14, 2009

How do you stop a loop from freezing the flash movie? I want to put a progress bar and the loop will return the % status but the loop always freezes?

View 4 Replies

AS :: Professional - Prevent Flash Player 10.1 Freezing When Off-screen?

Jun 22, 2010

I'm working on a set of SWFs that need to sync with each other using LocalConnection in AS2It was working fine in Flash Player 10, but as 10.1 throttles Flashes when they are not visible, the SWFs lose their sync if any of the SWFs are not visible on the page.This is particularly annoying as we were not aware of this new behaviour in 10.1 and I expect the update will break a lot of similar websites.

View 3 Replies

ActionScript 2.0 :: Flash8 Data Loading From Server Is Freezing Flash

Jun 10, 2009

I have an ASPX script that load the properties of a long list of objects from database (about 1000).

Then I have a spinning mc to entertain the user while data is loaded.

The problem is that it starts to spin, and then, at certain point of data reading the animation freezes indicating that Flash is too busy gathering and putting data into the LoadVars object (it restarts to spin after finish data reading).

Question is: there is a way to override this and force Flash to give priority to the animation? I think that's a very ugly behavior by the point of view of user and would be nice if it could be fixed.

Personally I cannot see another way to turnaround it but performing several smaller and consecutives database readings (to reduce CPU load), but I think that's a totally unaceptable solution...

View 1 Replies

ActionScript 3.0 :: Parse Multiple Files Without Flash Player Freezing?

Sep 9, 2011

I am trying to parse a string. It involves a huge for loop.

Tried making livesdocs out of this but it failed. So I looked with google and found this.

Does any one know...how I could apply this to a huge for loop? Trying to parse multiple files without flash player freezing.

View 8 Replies

ActionScript 3.0 :: Get Rid Of Hanging Indent?

Dec 21, 2009

how to get rid of hanging indent?

I load a simple XML text into a dynamic TextField (Flash CS4):

HTML Code:
<?xml version="1.0" encoding="utf-8"?>
<xml>
<b>TITLE</b>

[Code]....

Maybe I could use myTxt.condenseWhite = true; but dont know how to aply line breaks there.

View 4 Replies

ActionScript 3.0 :: Pre-Loader Hanging At 99% In Firefox

May 13, 2009

URL...This pre-loader is working fine on IE and Safari, but for some reason it hangs at 99% on Firefox.[code]

View 15 Replies

ActionScript 2.0 :: Hanging The Value Of A Global Variable?

Mar 17, 2006

I'm having a problem changing the value of a global variable.

I'm using the xml photogallery thats available on Kirupa. I have 2 movies on the main timeline: the galley movieclip and a navigation movie clip. I want the buttons in the navigation clip to change the global varable 'section' and this to be passed to the galley xml load function. So far i have this for the button:

Code:
gallery1button.onRelease = function(){
_root.nav.select(0);
_global.section= "gallery1";
};

I am using php to deliver the xml data dynamically to flash so I only have one xml file for several galley section. the AS looks like this:

Code:
xmlData.load("photos_xml.php?section="+_global.section);

It doesnt seem to be working though.

View 2 Replies

ActionScript 2.0 :: How To Get Light Hanging From Top Of Page

Jun 12, 2007

I'm trying to get a light that is hanging from the top of the page by a chord to be drag-able and then for them to be able to let go and the light swing back and forth. Right now I've got a pretty cool as that is onLoad it will swing and gradually slows down until it is sitting still, but I'd like to have it have a little more elasticity added to it for them to be have some fun with the hanging light..

View 1 Replies

ActionScript 2.0 :: Loading Swf Hanging Browser?

Aug 4, 2008

I'm seeing a problem whereby a video playing in the FLVPlayback component is "hanging" periodically, where the download stops for several seconds, ultimately causing FLVPlayback component to think it's at the end of the video and auto-rewinding. I've managed to reproduce this by killing my network connection when the video hasn't finished downloading, so when the playhead plays up to what's been downloaded, it then auto-rewinds and stops.

This problem is exacerbated when a different swf is being loaded in the background. what might cause a browser to "hang" when loading the other swf. For example, if the server on which that swf resides is backed up, will the HTTP GET block other files from loading? I'd always assumed that the actual socket implementation was multi-threaded and the loading of one file shouldn't ever cause another to hang. However, I'm not sure if the bowels of flash just leverage the browser's socket implementation, or whether it has its own.? I can't find any documentation on the flash socket design.

This has been seen in numerous browsers, so I'm suspicious it's a Flash issue. The loading is done using the MovieClipLoader class, AS2.

View 1 Replies

IDE :: Hanging Indent When Displaying Xml Data?

Nov 24, 2008

This is the data, and you can see that it has an indent on its first line.

Where I would like to see this:

This is the data, and you can see that it does not have an indent on its first line.

Some of the code,

// Define variables
var xmlLoader:URLLoader = new URLLoader();
var xmlData:XML = new XML();

[Code]....

I suspect that it has to do with prettyIndent and prettyPrinting, and I could not make it to work.

View 1 Replies

ActionScript 2.0 :: Weight Hanging From The Mouse Cursor?

Apr 1, 2004

I have recently been trying to recreate the effect of a weight (ball?) hanging from the mouse pointer, suspended by a thread, elastic or chain and exhibiting inertia, etc. I am a newbie, so the outlook seems rather grim. Is this at all possible?

View 1 Replies

ActionScript 2.0 :: [FMX] Weight Hanging From The Mouse Cursor?

Apr 1, 2004

I have recently been trying to recreate the effect of a weight (ball?) hanging from the mouse pointer, suspended by a thread, elastic or chain and exhibiting inertia, etc.

View 1 Replies

Motion Tween Animation Hanging/pausing In Browser?

Jan 1, 2010

Let me start by stating that I am a complete and total noob to web design, programming of any type, and flash animation. I've spent more hours watching videos on YouTube and reading web pages than I ever should have.I've created my first flash animation for my business website that consists of four pictures moving across the pageThe problem I'm having is that as the first two pictures reach the side of the page where they exit, they pause for a second or two. This happens even when the animation is fully loaded.

View 3 Replies

Professional :: Hanging At White Box Before Playing Progressive Download

Apr 8, 2011

I have several flv files displaying just fine on my website. All I am am trying to do is replace an enormous .flv file with a smaller file of the same movie. The new smaller file is just 25 MB, compressed with a bitrate of 1000kbps. The test page that contains the smaller file previews just fine of course in Dreamweaver, but after uploading the clip, the html page, the .swf files (in the same directory) and the Scripts folder to my host's ftp server, the browser shows me that dreaded white box on my test page for a full seven minutes until the file loads up completely. Then it plays through beautifully with no buffering. On the other pages of my site, the videos all show up without such a wait, even the enormous 179 mb flv!

[Code]...

View 1 Replies

Flex :: Debug Pending / Hanging Webservices In It With Builder 4?

Jan 8, 2010

Sometimes (too often...) some webservices "hang". I can see the clock cursor in my app and the network monitor of FB2 shows the webservice as "pending". After waiting a long time, the status changes to "OK" and the clock cursor disappears. How can I find out why a webservice takes sometimes minutes while it usually takes not even a second?

My webservices run on my localhost during development using the Zend AMF Server.

View 1 Replies

Flash :: Multithreading - Replace While() Loop With Timer To Prevent The GUI From Freezing [Multithreading]?

Jan 19, 2012

How can I use the Timer class and timer events to turn this loop into one that executes chunks at a time? My current method of just running the loop keeps freezing up the flash/air UI. I'm trying to acheive psuedo multithreading. Yes, this is from wavwriter.as:

[Code]...

View 1 Replies







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