Questions tagged [local-shared-object]

34 questions
19
votes
6 answers

block third party cookies - workaround (facebook apps etc)

Safari on a Mac has a Block cookies set to From third parties and advertisers by default. It stops the SharedObject from working if the embedded swf is from a different domain. This problem isn't new: Safari 3rd party cookie iframe trick no longer…
sanchez
  • 4,519
  • 3
  • 23
  • 53
6
votes
1 answer

Flex: How to detect if user has blocked shared object from writing

Simple question is, how do i detect in actionscript if user have blocked from writing data to shared object? sharedObj = SharedObject.getLocal("rememberme"); This return always shared object but it's size is 0, even I have blocked shared…
Jarno Lahtinen
  • 1,713
  • 17
  • 30
2
votes
1 answer

What is the proper way to add a SharedObject to a .AS file?

Having trouble adding a SharedObject to a .AS file, I am trying to add the users name to the .flv file in red 5 like "username_myfile" I am not sure I am adding the code thats saves the name in the correct part of the class. is there a proper way…
shelfish
  • 73
  • 2
  • 12
1
vote
2 answers

How to parse flash cookies (.SOL files) with JAVA

Is there a JAVA library/class which provides parsing capabilities for Flash cookie files (.SOL) by any chance? The user case scenario is quite simple: Given a *.SOL file I need to read all the text info (programmatically). PS.: From a similar…
Max
  • 1,989
  • 4
  • 17
  • 20
1
vote
2 answers

Saving MovieClips and ActionScripts - Flash Shared Objects LSOs

I know its possible to save an object (and all subclasses, arrays, strings) into a Flash LSO, locally to a user's computer. Is it possible to save a MovieClip or a Function? I tried once with MovieClips, but it just stored the reference (pointer) to…
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607
1
vote
0 answers

Where should a Python package store compiled libraries?

I downloaded an API from some external hardware. Its Python bindings are a bunch of .py files and an .so, like so: aa.py bb.py cc.pp api.so I want to install that as a Python package so that they do not clutter up my main program directory. Can I…
Kit
  • 30,365
  • 39
  • 105
  • 149
1
vote
2 answers

Flash Actionscript 3 - Simple Btn Click save game/app

I'm working on a project that requires me to save all of the bits and pieces on the second frame of the stage. This is a glorified dress up game where the user game make design or a piece of art and save the project and come back to it later by…
0
votes
1 answer

LSOs deleted in latest browsers

Local Shared Object, sometimes referred to as SuperCookies, or Flash Cookies is used by my website to uniquely identify user's computer and prevent him/her from using same credentials on many computers. Up until very recently web browsers were…
0
votes
1 answer

AS3: How to detect the local storage popup window in Flash?

When I flush a local SharedObject that is over 100KB, this popup window appears asking the user to allow or deny storing information onto their computer if they haven't already allowed it. How can I detect when the popup appears and when it goes…
0
votes
1 answer

Flash server-side Shared Objects - LSOs

The Adobe docs (I can't find which) state that Flash can read Shared Objects (.SOL files?) off a server. This could be an interesting way to store data and retrieve it client-side. Any ideas on how to do this?
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607
0
votes
2 answers

Do Flash Locale Shared Objects behave like cookies?

Cookies are sent to the server per each request making them a slow choice for data storage. However, what's the case with Flash's LSOs? Are they only script accessible and not sent to the server? If it matters, I'm looking for a way to store data on…
Tower
  • 98,741
  • 129
  • 357
  • 507
0
votes
0 answers

Action script3 save movie clips state between scenes

I have a problem here, I cannot save movie clips state within scenes especially when I use "gotoAndPlay" to go between them.. I tried to search a lot but none. I am using Action script 3 The codes that I tried but I got error from: *var so:…
0
votes
0 answers

Save data to PersistanceManager or SharedObject

import spark.managers.PersistenceManager; var persistenceManager: PersistenceManager = new PersistenceManager(); persistenceManager.setProperty('Story1', counter_stories); persistenceManager.save(); Error message: Can not find…
0
votes
0 answers

AS3: Caching files without user interaction?

I'm working on a Flash browser game that will download large amounts of external MP3s through the use of URLRequest. I want to cache those MP3s on the user's computer so they don't get re-downloaded every time the user plays the game in order to…
0
votes
1 answer

AS3 SharedObject - Background images fails to load correctly. Set of images stored inside MC fails to load correct image from save

having issues with making a set of background images save and load correctly. Please note, that this has worked correctly in the past with "1 - 2" images in the caseSwapper. Structure : On my stage I have set of draggable objects that you can save…
user3082874
  • 61
  • 2
  • 11
1
2 3