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

Why sometimes linking with .so files give linker errors?

I am too much curious about the issue that sometimes .so linking fails, but whenever I use static libs (.a) it doesn't. Do anyone have idea on that? For example in linux I have used libcrypto.a lib which is ok every compilation time. But…
Naseef Chowdhury
  • 2,357
  • 3
  • 28
  • 52
0
votes
1 answer

Does sharedObject.getLocal work with Air for iOS?

So, I've created a save system for my game.The thing is it works fine on Flash and Air for desktop, but not Air For iOS when I wrap it as an iOS app.Does sharedObject.getLocal work with iOS? If not, what else can I use?
user1666767
  • 117
  • 3
  • 13
0
votes
1 answer

Assigning Data to a Shared Object using a Variable's content as the identifier

I have been musing over this problem for the past few days, and whilst I can find other people that have had issues that kind of revolve around the use of dynamic variable names, none of the solutions quite work for what I am trying to do. I have…
0
votes
1 answer

AS3 shared objects that can be accessed by swfs on different html pages?

Is there a way to make a shared object that can be accessed by two different swf files on two different web pages? It works locally but when not when I upload the files to a server. How else can two swfs share information, without a database? I'm…
user157131
0
votes
1 answer

AS3 How to Synchronize an event

I am attempting to build a small chat application using a remote shared object (RSO) for FMS. My question is, how do you dispatch the SyncEvent when the RSO has been updated? Example, what I want to do is to update all the clients connected when a…
0
votes
1 answer

SharedObject between Air and Flex Web application

I have an Air application that runs an embedded web flex application (This is done in that way because remoteObject calling is faster than webService calling). The problem is that I need to have a sharedObject between air and web embedded…
Yury Euceda
  • 570
  • 4
  • 15
0
votes
1 answer

Loading ColorTransform from SharedObject

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…
0
votes
1 answer

Using Shared Objects

I am rather new to as3. My question is...how do you update a server using a remote shared object? Example, your in a chat room the application stores a list of users connected and is visible to all connected clients. When a user enters or leaves…
0
votes
1 answer

AS3 Value-search an Array using indexOf()

In the below code, indexOf() is always returning -1. The array being searched definately has the values within. We've tried converting the checked integer into a string in case the array has string formats within, no luck there either. If anybody…
Nick Price
  • 486
  • 1
  • 10
  • 25
0
votes
1 answer

AIR SharedObject in IOS App disappears after reset

I use SharedObject in AIR to storage some data in IOS App. when I set UIApplicationExitsOnSuspend to true, shared objects work fine, it means if I remove it from Fast App Switcher(Fast App Switcher appears by double clicking on home button), and…
0
votes
1 answer

Linux, concurrency in shared objects

I have a question related to one of my backend environments: On a linux machine (suse linux), there is an apache webserver, with cgi enabled: 2 different users (in different places), in our webapp on the browser, click the "events" button AT THE…
Wolfgang Adamec
  • 8,374
  • 12
  • 50
  • 74
0
votes
1 answer

ActionScript code problems

I have only recently started to learn ActionScript 3.0 I was practising in Flash and i ran into this problem: Scene 1, Layer 'Layer 1', Frame 1, Line13 1119: Access of possibly undefined property dosomething through a reference with static type…
0
votes
1 answer

FMS video text chat method

I am a new user member here. And i am new to FMS. I have a question i would like to ask in regards to sending text data messages in a live video chat app from one user to another. I am wanting to create a video chat application using Flash Media…
0
votes
1 answer

SharedObject Send Method

In FMS i want to use Shared objects to send messages in a chat application because its in real time. My question is...How do you use Shared Objects to send messages back and forth to users in a live chat application? Would this require Server-side…
0
votes
2 answers

connection to a red5 remote shared object from a flex app

I'm writing a Flex application. The server side application is Java application that is on top of Red5 1.0. that connection is made throught RTMPE protcol. (the results are the same with RTMP or RTMPE). I have am able to properly connect to the…
ufk
  • 30,912
  • 70
  • 235
  • 386