IDE :: Can SharedObject.data.thing Be An Array

Nov 20, 2009

if I need to make several entries, or can I put an array into SharedObject.data.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Make A File Data Center Sort Of Thing In Flash

Jun 12, 2009

Im making a file data center sort of thing in flash. What's meant to happen is: You click an button on the side of the list and on the display area beside it it shows the text info on that item and the button that you click to display that item! really simple but i dont know how to do it Instance names: what ever you want
Actionscript dyscription:

1. Click button
2. [instance name: "display" MOVIECLIP] displays the frame("display2")
3. Click other button in list and goto and stop ("display3")

View 2 Replies

ActionScript 3.0 :: SharedObject Not Saving Data?

Aug 29, 2009

I'm working with AS3 with timeline code. I would like to save date and time a user took a quiz. This information will help check when a user took a quiz. I can see the date and time as I want, but it isn't saved. SharedObject is not saving date and time. Here is my code. How can I do this?

var mySharedObject:SharedObject = SharedObject.getLocal("sampleCode", "/");
var today_date:Date = new Date();var thismonth:uint = today_date.getMonth();var thishour:uint = today_date.getHours();var thisminute:uint =

[Code].....

View 1 Replies

Flash :: Sharedobject Don't Remember Data?

Sep 27, 2011

I have this code for sharedobject:

var mySharedObject = SharedObject.getLocal("republicofcode");
mySharedObject.data.clientID = my_vars.clientID;
mySharedObject.data.question = my_vars.question;

[code].....

View 1 Replies

ActionScript 3.0 :: SharedObject Not Saving Data

Aug 30, 2009

I'm working with AS3 with timeline code. I would like to save date and time a user took a quiz. This information will help check when a user took a quiz. I can see the date and time as I want, but it isn't saved.[code]...

View 1 Replies

ActionScript 2.0 :: SharedObject To Associative Array?

Jan 19, 2010

I am able to save file using a local sharedObject.

Code:
note_so = SharedObject.getLocal("notes");
note = note_mc.notetitle_txt.text +"~"+ note_mc.note_txt.text;

[code].....

View 9 Replies

ActionScript 2.0 :: An Array From An XML And A SharedObject File

Dec 14, 2011

After spending a whole week on this,which most likely will turn out to be very simple, I have an xml file (with over 1300 cNodes) that is set up like this:

Code:
<?xml version="1.0" ?>
<rNode>
<cNode theWord="A" theSynonym="A" theMeaning="A" theExample="A" />

[Code].....

What I am trying to do is to create an array (arr =[]) that hold only the cNodes chosen in the "saveText" .. in other words the cNodes assigned the value var = 1 in the SO file.

Is this easier done as a temporary array or as second SO file.

View 9 Replies

ActionScript 3.0 :: SharedObject Data After Windows Shutdown?

Jul 3, 2009

Will sharedobject data be gone after windows shutdown?

View 2 Replies

Media Server :: SharedObject - Consuming Data?

Aug 21, 2009

Is it possible to set just one property of a remote SharedObject to clear itself?  I understand that calling "clear" on an RSO will cause ALL properties to fire the "clear" event and clear out; however, what I want to do is clear out the data in a specific property so that the "clear" event/message is fired (and not the "change" one since I already have some actions in that).
 
I suppose I could just set the property to an empty string and put guard code inside my handling of the "change" event/message, but, I'd rather not do that.

View 7 Replies

ActionScript 3.0 :: SharedObject Data--> Where Is It On The User's Harddrive

Oct 26, 2010

I've looked on Adobe's Flash Player guide and in the official docs, but it's not mentioned. I'm creating a game that saves your progress to the local drive using SharedObjects and want to reassure users about what's going on

View 3 Replies

ActionScript 3.0 :: Array Retrieval In Each Individual SharedObject

Jul 4, 2009

Code:
Frame44
var newstudent:String = NewFishInput.text;
var sl:SharedObject = SharedObject.getLocal("studentlist");
if(sl.data.hasOwnProperty('name')){
sl.data.name.push(newstudent);
[Code] .....

I have sharedobjects with names as above, i.e. there is a sharedobject name Jack, Another named Russell, etc. What I am trying to accomplish is to retrieve the student's name in SharedObject (studentlist) and use it to retrieve information in each individual's SharedObject.

View 1 Replies

ActionScript 2.0 :: Saving A Numeric Array To A SharedObject?

Apr 8, 2010

I'm saving several arrays into a SharedObject and I'm able to read them back fine from the SharedObject when the movie loads. However, one of these arrays contains numbers instead of strings, and the contents of this numeric array show up as 'undefined' when read back from the SharedObject.

View 0 Replies

ActionScript 2.0 :: Array And SharedObject - All Elements Unidentified

Dec 19, 2011

This code seem to work fine; getting the array "arr" based on the SharedObject variables and picks only the ones with the value = 1. But when it gets to the function randArray(), all elements become "unidentified":

Code:
score = 0;
arr = [];
id = 0;
count = 0;
_xml = new XML();
[Code] .....

View 3 Replies

Data Integration :: SharedObject Saved On Hard-drive

Oct 22, 2006

I've created a SharedObject on My Computer, saved it in a movie, and ran the movie again and data came up well enough.My problem is, I want to delete the SharedObject saved on my hard-drive. I currenly have Flash 8, and Flash MX 2004 uses the .sol extention, but I can't find the SharedObject anywhere on my computer. With the release of Flash 8, did they change the SharedObject file extention? Is there a way to set up the path to which SharedObjects should be saved in your script file? The second parameter of the getLocal() method, stores a URL. Is that the same as a directory on your computer?

View 3 Replies

ActionScript 3.0 :: Make A Dynamic SharedObject Data Property?

Oct 13, 2011

I cannot find and information on how to make a dynamic sharedObject data property.
 
Simplified Code for what I need/want to do
  
var iData:SharedObject = SharedObject.getLocal(userInfo);
var dataArray:Array = ["a","b","c"];
var property:String = "prop"
iData.data.this[property] = dataArray;
 
That is what i was thinking.
 
It doesn't matter how the property is created, just that it needs to be done on the fly.

View 2 Replies

Media Server :: Cannot View SharedObject Data In Admin Console

Mar 2, 2010

I'm attempting to view Shared Object data in my FMS Administration Console, but I consistently get the error:Object encoding error; terminating connection.I'm using Flex 3 with FMS 3.5, I'm positive that everything is using AMF3. The Shared Objects do seem to work. I can connect to the shared object through another instance of the app and pull saved data but they are not inspectable in the administration console. Also,very often when a new instance connects to the server I get a RangeError and all of my Flash Player instances crash.

View 9 Replies

Java :: Send Data From Red5 To Flex Using Remote Sharedobject

Jul 3, 2011

I want to send data from Red5 to Flex using remote sharedobject.

my Red5 code :

this.addScheduledJob(5000,new IScheduledJob() {
@Override
public void execute(ISchedulingService jobs0)

[Code].....

it doesn't shows error or warning, but my flex function doesn't work, even Alert in my function not working.

View 2 Replies

Media Server :: SharedObject.NoAccess Error When Trying To SharedObject.getRemote?

Feb 18, 2012

I've installed developer version of Flash Media Server 4.5 and trying to get remote object, but no matter how I call my object all i get is this error .I've rad configuration guide and it told me that I should set StorageDir for shared objects, enable RPC (<RPC enabled="true">) and allow shared object (<Allow>users</Allow> in <RPC> - <SharedObject> tags)

View 1 Replies

Media Server :: Create A FMS Application That Is Broadcasting Some Data Across Connected Clients Using SharedObject

Feb 8, 2011

I'm trying to create a FMS application that is broadcasting some data across connected clients using SharedObject. I want only the Application to be granted to set SharedObject properties.

[Code]...

View 4 Replies

ActionScript 3.0 :: SharedObject Data - Arrays - Error #1069: "Property Undefined Not Found On BaseScreen And There Is No Default Value"

Mar 5, 2012

The player buys engines these are added to an array called _model.purchasedEngines. During save i'm trying:

[Code]...

View 14 Replies

ActionScript 3.0 :: SharedObject Error: Error #2134: Cannot Create SharedObject?

May 9, 2011

Gives me this error:

Error: Error #2134: Cannot create SharedObject.
at flash.net::SharedObject$/getLocal()
at as3_shared_objects/showVar()

[code]....

View 2 Replies

Xml :: (Flex 3) Get Data From A File Using HTTPservice And Save The Return Data As An Array?

Oct 15, 2009

I have an xml file (externally saved) that is similar to the following:

[root]
[main]
[title]...[/title]

[Code]....

What I like to do is to get what's in [title] tag using HTTPservice, import it into Flex, and save it as array objects, and do the same thing for [content]. This way I can later refer the array object saying title[0] or content[2].

View 1 Replies

ActionScript 3.0 :: Sample Data Event Not Firing - Record Data From A Microphone To A Byte Array?

Dec 13, 2010

I have bought Learning AS 3.0 (O'Reilly) but I have been having difficulty getting one of the tutorials to run. The tutorial shows how to record data from a microphone to a byte array, playback the saved data and save as a WAV file. For some reason, I can't get this working. When the swf runs, the Flash Settings screen doesn't pop up to request permission to access the microphone but I can still trace properties such as gain.

I've uploaded a zip containing all the classes and an FLA - just use RecordMicrophone_Example.as file as the document class. Here is the problematic area of the code:

[Code]....

View 0 Replies

Data Integration :: Instead Of The Vertical List , Get An Unparsed Data Array?

Jul 20, 2006

I have No problems inserting data from flash to PHP into MySQL,it's sendind them back properlly.All I'd like to see happen is for one row of data to be inserted into a dynamic text field. here's what i've got if i access this php file, it prints out a vertical list from
a single MySQL row,I was happy.

$query = "select row from table";
$result = mysql_query($query, $db);

while($row = mysql_fetch_row($result))[code]...

and Instead of the vertical list (which i would love to see)i get an unparsed data array.

View 2 Replies

Flex :: Data Grid Not Displaying Data In Array Collection?

Oct 7, 2010

My data grid is displaying stale data, rather than the real time data available in it's data provider (array collection). I've tried refeshing the data in the collection, but that has no effect. Below is my code, does anyone see what could be the problem?

<mx:Accordion/>
<fx:Script>
<![CDATA[[code].....

View 4 Replies

ActionScript 2.0 :: Converting Internal Array Data Into External XML Data?

Nov 9, 2006

I have this code inside my flash to name my navigation menu. Now I want to put this outside flash and load it via XML. How do save my different arrays into a variable for later use in my code?

In my nav fla (what i want to load from XML):

Code:
// MAIN MENU ARRAY
var mm_array:Array = ["MAIN1", "MAIN2", "MAIN3", "MAIN4"];
// SUB MENU ARRAY

[Code]...

View 9 Replies

Html :: Flex - Export Array (array Collection) Data Into A Table Or Text File?

Oct 9, 2010

I have an array collection of strings and integers (which I have displayed in a data grid) and I am wondering if it is possible to export the array collection into an html table? or even a text file for the user to download

I found some pages that had an export to .xls files but I want to stray away from that for now.

View 1 Replies

Data Integration :: Get Rid Of The Xml Tags With Assigning The Data To An Array?

Feb 5, 2007

Let's say you have the following xml document. Now how do I access the name thumb here is my loop. Also I want to store the value in an array but I don't want the xml tags to be stored in there as well. How do I get rid of the xml tags with assigning the data to an array.

View 1 Replies

Actionscript 2.0 :: Converting Array Data Into Numeric Data?

Mar 25, 2009

I feel like this should be really easy, but I don't get what I need to do.I have a value bgW[j] stored in "j" equaling a number.But I can't seem to get it to register as a number.What commonly needs to happen to convert this value into a numeric datatype?I've tried a bunch of stuff: eval, parseInt, multiplying it by 1.

View 2 Replies

Use Either Maintaining Movieclip Array Or Bitmap Data Array?

Jun 5, 2009

I am working on a project in which I am suppose to matain an array of movieclips, and I can also convert the movieclips into bitmap data. so I would like to know which one is the best to use either maintaing movieclip array or bitmap data array.

View 2 Replies







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