Questions tagged [shared-objects]

Shared Objects in Flash are used to store persistent data on the client or server side.

Local Shared Objects

Local Shared Objects are used in Flash-based applications to store ActionScript objects persistently on a client. The disk space is limited and defaults to 100 KB per domain.

Remote Shared Objects

Remote Shared Objects can be used with Flash Media Server to store ActionScript objects remotely. They can be shared across multiple clients.

418 questions
0
votes
1 answer

Persistent MP3 player using SharedObject

I'm trying to create a persistent MP3 player using SharedObject. Initially I tried using frames and while it worked, frames suck so I continued looking into it. I came to find out about Flash's SharedObject. It seems easy enough but I can't nail…
0
votes
1 answer

What is IDA and how does it help me view .so files?

So I'm reverse engineering an Android app and looking for a string that I know is inside the app, somewhere. I've decompiled the app. I've done a search for the string in all files, looking for the string, but nothing is returned. I was told to use…
User
  • 23,729
  • 38
  • 124
  • 207
0
votes
1 answer

Action Script 3 , SharedObject , Save Loader Data

I have a question where is my mistake and how can I improve it? the main thing is Image data have saved but I can't load it again my data is an image I get this error every time I have tried to load the loader TypeError: Error #1034: Type Coercion…
Diesel
  • 27
  • 3
0
votes
1 answer

Creating a pacman-style game using Flash (AS3)

Creating a pacman-style game using Flash (AS3). There are 3 players competing to eat the most dots. Right now when one player eats a dot, on that player's screen the dot goes away (but only for a second) and appears again in the screen. The other…
jc70
  • 255
  • 2
  • 13
  • 32
0
votes
1 answer

Can a Flash SharedObejct expire per session?

I'm trying to display certain content per session, but the site has the same Flash embedded in the different sections of the site, so I can't set it on the site's Model or a Global Variable. I also can't use PHP or JS.
Jotapes
  • 3
  • 1
0
votes
1 answer

'cannot open shared object file' while running firefox on linux machine

I recently installed Firefox v45.0.2 on linux machine. After finishing installation I ran firefox -v command to check version, however this command is giving me following error: XPCOMGlueLoad error for file…
Yogesh Patil
  • 536
  • 5
  • 20
0
votes
0 answers

Can one pass an array of objects as an argument within the object window.dialogArguments?

I am working on an AngularJS 1.x project with an ASP.NET Web API 2.2 backend. I would normally handle this in the normal Single-Page Application (SPA) fashion. However I have receive some strange requests to do... popup dialogs (remember...…
0
votes
0 answers

Compiler performance: multiple libraries vs one library in CMake

I've long wondered when writing my C++ CMake files which is faster for the compiler: Putting all my project's cpp files in a single shared .so library using add_library() Using multiple libraries, one for each class / logical component. Internet…
0
votes
1 answer

AS3 Shared Object as a Variable

I'm sure this is a very basic question, but I'm just wondering if it's possible to create shared object and name it after a string variable. For Example: var newvariable:Number = 0; so.data.newvariable.toString(); = ?? Now I know that with the…
user1666767
  • 117
  • 3
  • 13
0
votes
1 answer

It's possible to write a sharedobject when allowscriptaccess is = "never"?

I will try to write a sharedObject item using my swf embeded into an html page. "allowscriptaccess" is setted to "never". I can't write sharedObject! However if I set allowscriptaccess to "always", write action work well... If I can't use…
user2354037
  • 195
  • 2
  • 8
0
votes
3 answers

Shared Whiteboard with AS3. Code

I am building a shared whiteboard and I cannot get the shared whiteboard to be shared. I have successfully created a shared method and I see the shared object in the Admin Console that it is there and connected but can't see the drawing on a…
hoyt.dev
  • 485
  • 3
  • 6
  • 19
0
votes
0 answers

Error: Recompile with -fPIC when trying to ./configure && make package nap

I am trying to configure and make install package nap6.4 for tcl, but it fails in during "make" with the following error: cc -shared -o libnap6.4.so cart_proj.o eval_tree.o function.o geometry.o land_flag.o land_flag_i.o linsys.o nap.o…
0
votes
0 answers

Error on comparing Shared Object Data with a Number

Hey everyone so been at this for a couple hours now and cant seem to figure it out. So I have a Shared Object Data variable sharedObjectStarsPoints that is used to keep track of the number of stars that a player unlocks in a game. So what I am…
Nathan
  • 536
  • 4
  • 21
0
votes
1 answer

What is vtable anchoring, and how does it work in a shared object?

I was performing research into some issues with a C++ library and ensuring type information is consistent between the application and the shared object. I'm also interested in ensuring an EqualObject comparison works, meaning I indeed have the same…
jww
  • 97,681
  • 90
  • 411
  • 885
0
votes
2 answers

How to interrupt or stop a background process?

I have created a Powerbuilder app that has the capability to spawn new threads. Now, these threads will do some background process. I have implemented this one, but the problem is I don't know how to "stop" or "abort" a spawned thread. I tried…
Dac
  • 210
  • 3
  • 19