I'm using a local shared object (SharedObject) to store some data for my flash game.
One of the bits of data I'd like to save is a ColorTransform object. I have no problem saving the colorTransform to the sharedObject, but when I try to load it the game crashes. I'm saving and loading other types of variables at the same time as the colorTransform, and they save/load just fine... Has anyone else experienced this? Is there a solution floating around out there?
Loading ColorTransform from SharedObject
123 Views Asked by Pacifist Games At
1
There are 1 best solutions below
Related Questions in ACTIONSCRIPT-3
- How to create an ActionScript 3.0 in Flash to display Current Date, Time and Day of Week
- textinput.needsSoftKeyboard does not work (air for android)
- AS3 Get currentFrame of current MovieClip
- call Win32 API in flex to set Window Display Affinity
- Air Native Extensions: Released Air App w/Windows Native Extension works fine on develpment PC but not on other computers
- TestFlight API and stats with as3
- Error while using removeChild() and accessing members of array
- Flash erase image with mask - gotoandplay next frame
- Adding a listener to a VerticalScrollBar in flex
- AS3 array to clean up long code?
- AS3 - How can objects that appear randomly never touch each other?
- import a sound externally or from the library? AS3
- Nesting Asynchronous Promises in ActionScript
- AS3 - How can multiple objects that appear randomly NEVER touch each other?
- ActionScript + Ruby
Related Questions in AIR
- textinput.needsSoftKeyboard does not work (air for android)
- call Win32 API in flex to set Window Display Affinity
- Air Native Extensions: Released Air App w/Windows Native Extension works fine on develpment PC but not on other computers
- can Adobe Flash CS6 export for mobile correctly?
- Air for iOS SDK higher as 14, gives strange stage behavior
- Using AS3 Timer & distriqt Notification ANE To Send Notifications While In Sleep Mode
- Google Play shows wrong minSdkVersion for Android app
- Actionscript 3 Air iOS POST data not sending with URLLoader
- Adobe AIR app with ALIPAY
- Facebook AS3 api - mobile login window missing cancel button
- AIR Google Play Services library classes missing apk
- ANE-Push-Notification from fresh planet won't fire events
- How to add multiple pages in AIR for Android
- AIR server connections
- AS3 LocalConnection: function is not firing
Related Questions in SHARED-OBJECTS
- JNI UnsatisfiedLinkError undefined symbol
- How can I inject or dynamically load an c function into another c program
- Visual Studio 2015 Android native C++ nested shared object reference causes crash
- creating a remote sharedObject using amazon cloudFront
- rsync: /usr/lib/libpopt.so.0: no version information available (required by rsync)
- How to use remote SharedObject in AS3 and Red5 -- Second Attempt
- Filling SharedObject with big amounts of data
- Best Way to update Array with SharedObject As3
- ActionScript 3 (AS3) Gathering data from a SharedObject
- building a shared object library: ldd does not show specified name
- How to use SharedObject from an external swf in AS2
- Not receiving onSync delete events for multiple SharedObjects in same SWF
- is there any way to automatically execute registerClassAlias on Actionscript/Air?
- Why is gdb refusing to load my shared objects and what is the validation operation
- understading the flash/flex shared objects and hashing technique
Related Questions in COLORTRANSFORM
- AS3: newbie, problem with addChild
- After transform.colortransform on mc, can't change textfield's color within mc
- PorterDuff.Mode.MULTIPLY - the sence of this color transformation in Android
- how to change gradient fill of a movieClip in AS3
- How do I change the fill and stroke separately in a vector graphic using actionscript in flex in flash builder
- ActionScript 3 color transform changes border only
- AS3: Pick color from object
- Create highlight and shadow in ActionScript 3
- Actionscript 3.0 - Using an if-statement with colorTransform
- AS3 colorTransform over multiple frames?
- colorTransform equivalent color matrix
- R: custom ggplot2 color-transform gives error in labels
- AS3 Check if two movie clips are the same colour?
- How can I assign a custom color to a cell in Aspose Cells?
- Incorrectly embedded jQuery variable
Related Questions in LOCAL-SHARED-OBJECT
- Why is my local shared object of flash deleted as soon as I close my swf
- ActionScript 3 (AS3) Gathering data from a SharedObject
- Do Flash Locale Shared Objects behave like cookies?
- Flash Actionscript 3 - Simple Btn Click save game/app
- Save movieclip location Rotation and x and y
- Something like cookies in Flash/ActionScript
- Local Shared Object localPath
- Where should a Python package store compiled libraries?
- AS3: How to detect the local storage popup window in Flash?
- SharedObject and Dictionary problems in Flash Builder
- Flash server-side Shared Objects - LSOs
- Saving MovieClips and ActionScripts - Flash Shared Objects LSOs
- AS3 sharedObject - How to load my last sharedObject on a btnCLICK
- shared library how to link to a symbol?
- Flex: How to detect if user has blocked shared object from writing
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Try using registerClassAlias() like this:
before loading a ColorTransform out of your SharedObject, or saving it in there. Then your loading should work like this: