ActionScript 2.0 :: Copy A Shared Object File To A Memory Stick?
Jan 23, 2009
I have been trawling around forums for hours now and the only was to save information LOCALLY in Flash seems to be using the SharedObject stuff. which is fine. BUT I am making a project which is meant to be entirely run from a memory stick i.e. portable. So, I was thinking it would be good to save the information from the flash to a SharedObject .sol file and then to copy the .sol file to the memory stick, then load the information back into the flash file from the copy of the .sol file on the memory stick!
Dont know if this is possible, but I need to some how save information created in the flash file stored on a memory stick (which will be text and possibly an image which would be loaded from the users pc) to a file on the memory stick and then next time the flash file is run, load all of the information back in!
I know all this stuff is possibly using PHP etc. but as I am running it from a memory stick on a pc which probable wont have internet access.
View 3 Replies
Similar Posts:
Mar 7, 2012
I changed a layer entry of my Flash file by moving around various elements within the layer. I sitll have the original file, too. I'd like to put it back exactly like it was in the original file. How do I replace the changed sprite element from the new file with the original from the old file?
View 5 Replies
Jun 4, 2010
what I meen is to get all objects and their properties, is it possible? How to do such thing?
View 2 Replies
May 16, 2007
Is it possible to load data from another shared object from another flash file? if so how?
View 1 Replies
Mar 14, 2011
I am trying to write a piece of code to retreive data from a SOL file : this is my code :[CODE]//get External interfaceimport flash.external.*;
[Code]...
How can that be ? what can I do ? What am I doing wrong ?(bear with me, as I said, I'm kind AS newbie).
View 4 Replies
Jun 8, 2004
!--Does anyone know if it possible to save the local shared object(.sol) file at a desired location or to embed it within the flash movie?
2--Is it possible to create an image file at runtime from a flash projector file?
View 1 Replies
Nov 3, 2011
I have a bat and ball game and was wondering what eventlistener I would use to include a hand that would hold the bat instead of the mouse using the bat.I have made a new class called hand and addChild (aHand) and I want the x and y to stick to the bat I already have that is pinned at the bottom of the stage.
View 1 Replies
Oct 25, 2009
I am going to start using copypixel and I wonder if I am understanding the concept well. I am having doubts about memory use. This is my question: If I have an external image (tile map) I loaded , each time I use copypixel to copy a region from this tile map, I am using additional memory or only the map is located in memory? In my application I need to copy a bitmap region from a tile map to a variable (var 1) and then copy another region from this var 1 to a second one (var 2). My concern is to increase the use of memory.
View 5 Replies
Jun 7, 2011
Suppose that I have two applications running on the same page. I have the Libraries compiled into the SWF file: [code]Is RSL intended to just improve the download time (via caching) or does it also lower the memory foot print of an applicaiton?
View 1 Replies
Mar 13, 2009
I created a very simple experiment to attempt to access the same shared object in Flash Player and AIR.
A Flash SWF creates a local shared object.
A AIR application (being tested from CS3 or installed) opens the same shared object.
The data does not persist. Is this theoretically possible?
View 1 Replies
Apr 13, 2004
I'm trying to learn shared objects by attempting a basic function. I would like to have an .sol file remeber what buttons are clicked on by a user and assign an alphavalue for the buttons that have been clicked. Here's what I have..
[Code]...
View 8 Replies
Jun 8, 2004
!--Does anyone know if it possible to save the local shared object(.sol) file at a desired location or to embed it within the flash movie?
2--Is it possible to create an image file at runtime from a flash projector file?
View 1 Replies
Jul 22, 2006
I was wondering if there was a way of making your mouse cursor stick to an object for a period of time when clicked?
eg. If i clicked "about" then the mouse would stick to that button while it slid to a new location on the stage. Once the tweening stops, you can move the mouse again.
View 5 Replies
Dec 6, 2011
FMS is crashing with the following errors:
2011-12-06 10:24:02 12461 (w)2581227 Shared memory heap (__FCS__) has exceeded 90 usage. Consider increasing the heap size to prevent future memory allocation failures. -2011-12-06 10:24:02 12461 (w)2581227 Shared memory heap (__FCS__) has exceeded 90 usage. Consider increasing the heap size to prevent future memory allocation failures. -2011-12-06 10:24:02 12461 (w)2581227 Shared memory heap (__FCS__) has exceeded 90 usage. Consider increasing the heap size to prevent future memory allocation failures. -
When I try to restart I get:
2011-12-06 17:33:27 7933(e)2781340 Process 7933 failed to create IPC queue __FCS__ : Failed to allocate shared memory. - I've noticed the problem resolves when I restart fmsadmin. I think fmsadmin is using up all the shared memory, not sure. There are HTTP requests periodically being sent to fmsadmin, could this be a source of memory leak?
The server has 6 GB RAM and there are only about 100-200 connections being used. Runs without issues most of the time, crashes once every few days.What is the shared memory heap and how do I increase it?
View 2 Replies
Jan 24, 2009
I want stick my flash file to the left-bottom corners of browser window. I used below html code for this purpose but when I change the size of my browser flash file goes down.[code]
View 3 Replies
Mar 24, 2011
I found a really weird behavior when using deep copy for objects (ObjectUtil of Flex framework).Imagine we have a class B which extends class A. Class A has property body which is of type ByteArray.I create object b (instance of B). Then I make a deep copy object bCopy, BUT this bCopy object does not contain body property at all! All others properties (of scalar types) defined in Class A are copied properly.When I define property of type ByteArray directly in class B, then this property is copied properly..
View 2 Replies
Jan 22, 2011
I'm using a loader for people to use to upload their own images for a background, and I want it to remember the image the next time they come to the page, so is there any way to save the loader data in a shared object? I haven't tried just using something like
Code:
sharedObject.data.dataName=loader
because I assume it doesn't work that way.
View 9 Replies
Jul 20, 2011
I am creating an object pool to cache some recyclable objects in memory at the outset of my application in order to avoid (as much as possible) the performance issues caused by GC running; if possible I'd like to minimize the memory my object pool reserves, so I'm attempting to pool generic forms of the objects (with no methods) and then casting the generic variants to more specific and complex object types which extend the generic form when I actually want them on the stage.
The trouble is that to do this requires the generic variant class to import/extend MovieClip (because the more complicated objects are themselves MovieClips and make use of DisplayObject methods)-- does simply importing and/or extending a class add to the memory an object takes up when instantiated even if it never uses methods from the inherited class? It makes sense that it would, and some light profiling seems to suggest that it does, but I'm not 100% certain. About how large should an 'empty' MovieClip instance be in bytes?
View 1 Replies
Dec 8, 2009
how to copy one xml object values from one xml object to another empty xml object.
I have one xml object from the xml array and need to copy that to another xml object. How can i copy xml from one object to another
if am parsing the XML object with for loop and i get the nodes
var myXML:xml = new xml();
for(...)
if(xmlObj.product[i].name == 'myproduct'){
[Code]...
View 2 Replies
Nov 21, 2010
I've been starting to create my own classes for a project and I've encountered an error that I don't know how to solve. This is for a Game class collection.
How do I create an object with ActionScript if I only know the name of it? I have a class that should add an object as a "grid" and place it accordingly, so if I have a Square box that I want to place by 4x4 on the screen it calculates it automatically. Well, that's the goal anyway.
I have a function in my Grid class, Add_Background that accepts an Object to be added as the grid background. I use a movieclip (don't know if I can use a graphic element).
I call the function myGrid.add_background("name_of_my_movieclip") or myGrid.add_background(new name_of_my_movieclip());
The first one I don't know how to use, I don't know how the syntax for creating an object this way (etc: grid[a][b] = new name_of_my_movieclip() doesn't work...) so there has to be some other kind of way on how to pass this to the function and that it knows what to do with it.
The other thing I've tried is passing the object to the function (new Grid_Background() etc) but I can't clone the object anyway I try it and the ActionScript reference site says there's an mx.utils.ObjectUtil that I can use for this, but I have no access to it that I know of (tried it).
View 1 Replies
Sep 12, 2009
I can't seem to remove / unload the external swf files e.g when the carousel.swf (portfolio) is displayed and I press the about button the about content is overlapping the carousel (portfolio) . How can I remove / unload an external swf file from the main flash file and load a new swf file, while at the same time removing garbage collection from memory?
View 15 Replies
May 20, 2008
Just wondering if you can use more than one shared object, as my AS code doesn't act as i would think
Code:
---this one works
var submenu_so:SharedObject;
submenu_so = SharedObject.getLocal("menu");
[Code].....
View 1 Replies
Jun 24, 2009
Can I use Flash Shared Object to pass information between two different SWF files on two different pages within the same website?I know it can if the SWF files are the same. But what if they are different Flash object with different SWF files?
View 7 Replies
Jan 28, 2010
Does anyone know if it's possible to save and access a LSO from an EXE projector on a CD?
Obviously the LSO couldn't be saved on the CD itself - would it be able to save the LSO somewhere on the users hard drive?
View 4 Replies
May 28, 2010
I'm having trouble making a copy of objects in AS3 instead of making references.
eg.
var mainMovie:MovieClip = new MovieClip();
var copyMovie:MovieClip = mainMovie;
copyMovie.x++;
I don't any calls on copyMovie to edit things on mainMovie. I was reading that I should try implement a clone method on the objects I want to copy. Surely there is an inbuilt way to do this for most objects.
View 7 Replies
Oct 1, 2009
I know there are a million and one posts about how to copy a MovieClip object, and I'm fully familiar with the method of[code]...
For this reason I can't use the original.constructor job as flash obviously thinks it's a straight MovieClip, so I just get an empty MovieClip. So far I've been getting by with creating a Bitmap, but in future these swfs will contain animations too.
View 9 Replies
May 28, 2009
I made a shared object whiteboard but I have a stupid problem with removing objects. This is function to clear shared object :
public function clearShape (so:SharedObject):void {
trace('clear:', this.name);
delete so.data[this.name];
[code].....
View 2 Replies
Aug 7, 2011
I was thinking if there was a way to remove the shared object pop up from popping up lol?Its because Im making a game where when the player saves the pop up comes up over a 100 times and it's really frustrating, so I was thinking if you could remove the pop up entirely by using actionscript?I've found a script that shows the popup:System.showSettings(1);So is there a way to reverse this script? like System.hideSettings(1); ?
View 1 Replies
Jun 9, 2009
I have a client who has a video that is to only play once when a user visits. So I created a shared object to create a param that the video has been played. It works perfect locally and on my live test site. However when the client posts it on his ning website in the header it doesn't work. The strange thing is that live and locally on my server you can see the shared object and it's size through the advanced tab in Flash's privacy settings.
View 7 Replies
Aug 23, 2009
I have a gane that uses shared object and keeps note of highscores and users names. So - if that is possible then I can set up teaching courses on standalone pcs can't I? ie: Databses I have in access can go in XML and the recording of position in course and results of tests can also be recorded using Shared object.Is that a good way of going about things OR should the whole thing go over to AIR and its sqlite system?
View 3 Replies