Flex :: Flash Player 10.1 Crash On Shared Object Access

Jun 14, 2010

since updating my Flash Player plugin from 10 to 10.1, I'm seeing a weird crash when accessing shared objects. Flex Builder's debugger pops up and prints a stack trace like this:

undefined
at flash.net::SharedObject$/getLocal()
at my.code::MyClass$/load()[/my/path/to/my/MyClass.as:27]
(...)

This happens when calling SharedObject.getLocal("someString") for the second time for the same string, though it doesn't always crash. When using another browser on the same machine (not configured as the preferred debugging browser in Flex Builder), Flash Player remains silent. The code is wrapped in a try/catch(Error) block which does not catch this error. I'm using Flex SDK 3.5 and Flex Builder 3 on Mac OS X 10.6.3.

View 4 Replies


Similar Posts:


ActionScript 1/2 :: Shared Object Causing Flash Application To Crash

May 26, 2009

I have a couple of static functions (one shown below) that can be called from multiple instances; there is a problem because of a shared object I am using.
 
My tracing shows that the application is in this function or the converse function addRec when my application is crashing.
 
[Code]....
 
In another class I have this statement where I set the value of some date in my shared object. I have to comment the following lone of code out in order for the application not to crash after a short while:
 
so.data.rArray = currentRecs;          // the culprit I see the first trace in the removeRec function but then nothing. I expect to see the second trace indicating that the array of current recordings taking place (currentRecs) has been cut back by one.
 
Originally my function was not static and my application crashed very quickly. By making the function static the situation improved insofar as it took longer for the application to crash. Flash seems to be very particular about the way it handles shared objects.

View 5 Replies

ActionScript 1/2 :: Shared Object Causing Flash Application To Crash?

Jan 31, 2004

I have a couple of static functions (one shown below) that can be called from multiple instances; there is a problem because of a shared object I am using.My tracing shows that the application is in this function or the converse function addRec when my application is crashing.
 
public static var currentRecs:Array;
private static function removeRec(recName:String) {        trace("Removing record "+ recName + " from currentRecs");        for (var item in currentRecs) {            if (currentRecs[item] == recName) {                currentRecs.splice(item, 1);                trace("Finished recording " + recName + " currentRecs = " + currentRecs.length);            }        }    }
 
In another class I have this statement where I set the value of some date in my shared object. I have to comment the following lone of code out in order for the application not to crash after a short while:
 
so.data.rArray = currentRecs;// the culprit I see the first trace in the removeRec function but then nothing. I expect to see the second trace indicating that the array of current recordings taking place (currentRecs) has been cut back by one.
 
Originally my function was not static and my application crashed very quickly. By making the function static the situation improved insofar as it took longer for the application to crash.Flash seems to be very particular about the way it handles shared objects.

View 1 Replies

Flex :: Why SWF Causing Flash Player To Crash

Aug 6, 2009

I've got a flex-based swf, which is loading an AS 2-based swf and then, negotiating further activity via a LocalConnection. From time to time, the AS 2-swf can request that the flex-based swf load a movie. I've arranged this via on(release){} functions. The AS 2-swf, I'm making in Swish Max. In Swish, when I set the on (release) on a text field, (to invoke .send() on my localconnection), it works splendidly. However, when I attempt to perform the same calls for an on(release) attached to a movieclip, it actually causes the Flash player, and even the browser plugin to crash. In fact, the browser (IE) crashes as well. I checked the debug trace that ie asked me to send to microsoft at the last IE crash, and i noticed a StackOverflow exception embedded deep in the trace, but I couldn't determine its source.

View 5 Replies

Access An Existing Flash Shared Object?

Oct 31, 2011

I am trying to access a flash shared object using sharedObject.getLocal("sharedObjectName"); But, it always creates a new object and doesn't locate the existing object, then I searched the location where it saves the object and I got this location from the internet c:/Documents and Settings/username/Application Data/Macromedia/Flash Player/#SharedObjects But, I could not get this directory in my windows XP. access my shared object which is residing in my flash media serverapplication folder..

View 1 Replies

ActionScript 2.0 :: Access The Same Shared Object From Different Flash Movies?

Feb 23, 2003

Is it possible to access the same shared object from different flash movies. I am trying this, and I put the exact same code to access the shared object in the first frame of both movies, but when I update the SO in one of the movies, the other one does not reflect the change. Both movies are in the same folder. Any ideas?

Since it is called a "shared object, I would think that more than one movie could access it, but what do I know. I don't know if it matters, but here is the code:

[Code]...

View 3 Replies

ActionScript 3.0 :: Clear Shared Object When Close Flash Player?

Aug 9, 2011

Is there a way to clear shared object when I close Flash player.

stage.addEventListener(Event.UNLOAD, Close);
function Close(event:Event):void
{
mySO.clear();
}

View 1 Replies

ActionScript 2.0 :: Access Shared Object For 2 Or More Swfs

Jun 21, 2004

I've read and tried every post concerning shared objects on this and other boards but it's not working: Trying to access shared object for 2 or more swfs Code: This is what I have on the swf that will flush the object:

[Code]...

View 9 Replies

ActionScript 2.0 :: Cannot Access The Shared Object Which Is Created By A.swf From B.swf

Jan 14, 2006

i have two swf: a and b, I cannot access the shared object which is created by a.swf from b.swf. I only catch it from a.swf. Is there any way to get it from b.swf.

View 9 Replies

ActionScript 2.0 :: Access Shared Object For 2 Or More Swfs?

Jun 21, 2004

Trying to access shared object for 2 or more swfs

Code:

This is what I have on the swf that will flush the object:

swf 1:
user = SharedObject.getLocal("orange3", "/");
if (user.data.firstname == undefined){
_root.loadMovie("LOGIN.swf");

[code].....

I am running it from a shared hosting server I also tried to do a absolute path but it's still not working.

Code:
user = SharedObject.getLocal("http://www.mydomain.com/orange3", "/");
message = "Welcome " + firstname +" "+ name;
_root.loadMovie("Home.swf");

View 9 Replies

ActionScript 3.0 :: Access A Shared Object Declared In A Certain Function?

Jan 20, 2011

I am trying to access a shared object declared in a certain function, from another function. I am having

difficulty doing so. My code are as follows:

Code:
//Constructor code
public function EventTest()
{

[Code].....

View 1 Replies

ActionScript 3.0 :: AIR Shared Object Shared Between Flash & AIR?

Mar 13, 2009

I created a very simple experiment to attempt to access the same shared object in Flash Player and AIR.

A Flash SWF creates a local shared object.

A AIR application (being tested from CS3 or installed) opens the same shared object.

The data does not persist. Is this theoretically possible?

View 1 Replies

ActionScript 2.0 :: Foolproof Way To Crash Flash Player?

Nov 19, 2010

Long story short, I'm having my SWFs packaged by a 3rd party projector wrapper. That wrapper's "quit/exit" functionality appears to be broken. So I figured, why not just force a crash when I want to exit (triggered by user input)?

View 1 Replies

ActionScript 3.0 :: Flash Player Crash After Closing SWF

Dec 22, 2010

so I was having this weird phenomenon in a rather complex flash app, that even though the app worked fine and didn't throw any errors, it just crashed the flashplayer upon closing the SWF... I first thought that there was something in my code, that I was doing something wrong in my code, but I now have my app stripped down to this:

[Code]...

View 5 Replies

ActionScript 3.0 :: Simple New Code Causes Crash In Browser, Not In Flash Player?

Mar 7, 2012

I am working on a game. All behavior was as expected, and I got no crashes when testing on my machine using FlashDevelop and the Flash Player. But if I open the .swf in Chrome directly or through the Kongregate test area, the game crashes 100% of the time that that function is called.

[Code]...

The selectDebater function is not new, and has never had a problem.

View 6 Replies

ActionScript 3.0 :: FileReference - Flash Player Crash Loading Large Files

Sep 16, 2011

I'm trying to load a local file using FileReference load(). It will load small files just fine, but when I try to load a file of around 4-80 megabytes the flash player will crash. I read the load method officially supports up to 100 megabytes.

Here is the exact class I'm using to test:
ActionScript Code:
import flash.events.Event;
import flash.events.IOErrorEvent;
import flash.events.ProgressEvent;
import flash.net.FileReference;
import flash.net.FileFilter
[Code] .....

View 1 Replies

Flash 10 :: Not Work Correctly In Chrome And Will Ultimately Crash The Flash Player

Jan 20, 2012

If you set a .swf with wmode transparent mode and register the Event.RESIZE in it. It will not work correctly in Chrome and will ultimately crash the Flash Player. Of course same thing in FF, EI or any other browser works like a charm. Setting wmode to window fixes the problem but anyone knows a work around with wmode set to transparent?

View 0 Replies

Professional :: Flash Player 10.2.159.1 Standalone Application CRASH With High Graphical Processing

Apr 16, 2011

Flash Player  10.2.153.1and  Flash Player  10.2.159.1 are crashing my standalone application. Later with  version 10.1 the application run ok, never crashes but was taking more than  90% CPU. The  new Flash Player solve the problem of resources, and drop down CPU to  30%, but  the application crashes always after a while, unespectly, or if I open the window of other application.
 
In  the other hand when I disable the harware acceleration at the swf  settings, the application goes crazy and start to make rapid flashes, and frame rate goes down to 8. [URL]. Right click on the Flash logo, Settings,then UNcheck the hardware acceleration in Display Settings.)
 
I'm  on a Mac Mini Core 2 Duo with Mac OS X 10.6.7 (the last Snow Leopard  these days). The graphical card is Nvidia GeForce 9400M.
 
I  did test the application at a Mac Book Pro core i5, Mac OS X 10.6.7,   graphica card Nvidia GeForce GT 330M and the application is more  stable but finally crashes too.
 
Finally if I export my application  with GPU Hardware acceleration at Publish Settings, my application  crashes almost inmediatly after I open it in each of the computers.
 
My guess is that the new Flash Version is using my graphical proccesor in a corrupted way.

View 6 Replies

Flex :: Get An Access To A Flash Player`s Events Pool?

Sep 22, 2009

I want trace every event on every object, there is way to do it?

View 2 Replies

Flex :: Disabling The Flash Player Security Question To Access Cam And Mic

Aug 26, 2010

does anybody know if disabling the security question in the flash player is ok? I need to know the exact facts by reference whether it is ok or not. I found some answers to this but they were assumptions but nor rigid. for instance a reference to Adobe's documentation that says any workaround is illegal.

View 1 Replies

AS :: Flex - Read All Data From Abstract Shared Object File?

Jun 4, 2010

what I meen is to get all objects and their properties, is it possible? How to do such thing?

View 2 Replies

Flex :: Get Property Values From Shared Object In Client's Load Event?

Mar 5, 2010

I am using shared object to share data between two users. First user connect to shared object and set some value in shared object. Please consider that second user has not connected with the shared object yet.Now when second user connects to the server and try to get that property set by first user, he could get shared object but could not get properties of Shared object set by first user. I observed few times that Second user can get these properties within "Sync" event between two users. But I would like to get these values for Second user in any stage (i.e. in load event etc.). Whenever Second user tries to get the property of Shared object, the object will reset the actual property value and then return reset value.

1) Is there any way to get all the properties of shared object before sync event called, as I want to get it immediately when second user connect to the application and perform next task based on the values stored in shared object.

2) Is it possible for second user to check whether any property has been set by first user? So that second user can use the property instead of reset it.

View 1 Replies

Flex :: Access To Object Property When The Propety To Access To It's In A String Variable?

Oct 20, 2010

It's too complicate to explain but I'll give you an example

I have an AS3 ResultEvent Object and this object has several propeties which can be accessed by this like:event.result.name or event.result.age and, I have this String variable: eventProperty:String that contains "name" or "age" How do I access to event.result. with the variable?

View 2 Replies

IDE :: How To Flash Shared Object

Jun 24, 2009

Can I use Flash Shared Object to pass information between two different SWF files on two different pages within the same website?I know it can if the SWF files are the same. But what if they are different Flash object with different SWF files?

View 7 Replies

Actionscript 3 :: Developing Chatroom In Flex / Red5 / Remote Shared Object Based UserList / Serverside?

Mar 29, 2010

We are going to develop a simple chatroom in flex using Red5.Should we store UserList in a Remote Shared Object or Server Side List?Are there any example exit on Red5 or FMS , which uses Server Side programming and Remote Shared Objects? Red5 examples are not documented at all.

View 2 Replies

ActionScript 3.0 :: Flash - Access Player.x And Player.y From External Class?

May 8, 2011

I am trying to put together a simple game and have been doing really well until I decided I am going to have to create a new class to handle enemies.What I have so far is a player walking around on random terrains and I am up to the point where I have placed x amount of enemies on stage at appropriate times. I have written their class which will hopefully eventually handle their behavior and it outputs simple trace("BOO!").

Where I face the problem is that I obviously would like to make these enemies follow the player to attack. But when I try to access the .x or .y attributes of the player, it throws an error: 'call to a possibly undefined property with static type Class'?I have tried accessing the .x using the following ways (where badger is my player instance and Main is my class definition within the properties of the FLA):

Main.badger.x
Main(root).badger.x
Stage.badger.x

I have also tried to access other vars and still nope..My class code is this:

Code:
package
{
import flash.display.MovieClip
import flash.display.Stage

[code]....

View 1 Replies

Shared Object In Flash For Stats?

Aug 23, 2009

I have a gane that uses shared object and keeps note of highscores and users names. So - if that is possible then I can set up teaching courses on standalone pcs can't I? ie: Databses I have in access can go in XML and the recording of position in course and results of tests can also be recorded using Shared object.Is that a good way of going about things OR should the whole thing go over to AIR and its sqlite system?

View 3 Replies

Flash :: Local Shared Object Path?

May 10, 2011

I have a Flash.exe projector that stores data in a Shared Object. Anything works fine if I launch it from my desktop. The Flash.exe will be recorded and used from a CD-rom. Will the path of the Shared Object change? Say, will it try to record itself on the cd?!

View 1 Replies

ActionScript 3.0 :: Shared Object Using A Flash Server?

Jul 31, 2011

At the moment I'm developing something in which I need to have a server of some sort store and send Shared Objects. When I was looking into it the API said that you would use something like a flash media server. Well the student price for that is about 1300$ so I can't do that. Is there a way for me to create a server in actionscript using socket connections (or something). To send and receive shared objects? I haven't started on this yet I'm just looking ahead into what I'm going to need.

View 2 Replies

ActionScript 2.0 :: Removing A Shared Object Outside Of Flash?

Feb 13, 2007

How can I find a shared object file that flash uses to store data? I want to remove it manually.

View 2 Replies







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