Actionscript :: Shared Object Doesn't Work In Separate .as Class?

Aug 28, 2009

bit of an odd problem, I have the following piece of code

Code:
var myCookie:SharedObject = SharedObject.getLocal("mySavedData","/")
if(myCookie.data.mySavedText != undefined)
{
var gallerypath:String = myCookie.data.mySavedText;
}
which retrieves a shared data.

If I put this actionscript on the first frame of a new document, it works fine, however I want to use it in something I already have, which uses an external Document class.

[Code]...

View 1 Replies


Similar Posts:


Media Server :: Why Server Side Shared Object Doesn't Work

Mar 29, 2011

application.onPublish = function (client, p_stream){  var myInfo = SharedObject.get(p_stream.name);   myInfo.setProperty("live", true);

I set the sharedobject using code above,now I can publish video,but so is not set(from admin console, "shared object" tab).

View 3 Replies

ActionScript 3.0 :: Shared Object - Trace The Score After Finishing But It Doesn't Update Hightscore.txt?

Jan 6, 2010

ActionScript Code:
var shared:SharedObject=SharedObject.getLocal("hightscore.txt");
shared.data.score=Score;
shared.flush();
trace(shared.data.score);

it trace the score after finishing but it doesn't update hightscore.txt

View 3 Replies

ActionScript 2.0 :: Shared Object Wont Work In Firefox, Fine Elsewhere?

Nov 18, 2009

ActionScript Code:
stop();
var myCookie:SharedObject = SharedObject.getLocal("mySavedData");

[code]....

View 3 Replies

ActionScript 2.0 :: How Does The Shared Object Work - Get A Save And Load Function

Sep 21, 2006

I have developed a game in flash and I am trying to get a save and load function so that the user can come back to the game that they were playing. Can this be done using the Shared Object....

View 2 Replies

ActionScript 2.0 :: SetInterval With A Class - Function Doesn't Work Inside Class ?

Oct 7, 2004

I was wondering why my current code for calling a setInterval on a function doesn't work inside my class.I have this code inside one function, calling a second function.

intID = setInterval(selfReferential, dupe, 30, 0x000000);

The selfReferential keyword refers to the current class,but was defined previously (selfReferential = this; ).I get no errors, but the dupe() function is never called.and I had the selfReferential variable replaced with the this keyword at one point as well.

View 5 Replies

Professional :: Copying A Class - Frame 4's Class Doesn't Work?

Oct 3, 2011

I copied my actions from frame 3 to frame 4 and frame 4's class doesn't work when frame 3's class works fine and normal, here is the source code:

Frame 3: 
stop();
var rowNum:int = 10;
for (var i:int=0; i<rowNum; i++)[code]....

View 7 Replies

ActionScript 3.0 :: Acces Remote Shared Object From Other Class

Oct 29, 2009

How to acces remote shared object from other class?

I have

package {
import flash.net.*;
import flash.display.*;
public class Main extends Sprite {

[Code].....

I would like to add some data or modify shared object. How can I acces _sharedBoardObject from another class? Or maybe I need to connect to "sharedBoard02" directly?

View 0 Replies

Flash :: Create A Separate Class Then Create An Object Of That Class Within The Main Class?

May 17, 2011

I'm new to Flash AS3. I started making a game and I am a bit confused. Let's assume that I want to create a game that has multiple levels/modes, how can I do this in an object orientated way?

When i create games in other languages e.g. XNA C#, i create a separate class then create an object of that class within the main class and run the game based on a simple statement.

[Code]...

View 2 Replies

ActionScript 2.0 :: Save Instance Of Custom Class With Local Shared Object?

Mar 26, 2008

I am programming a web based application with Actionscript 2.0 classes for flash 8, and I want to save user data using the local shared object.As the data is potentially rather complex I would prefer to store it in an instance of a custom class that I then stick in an array property of the local shared object data property.However, when I try to do this, if I retrieve the stored object it seems to have lost all its instance methods. If I do a for in on it, I can see the private properties to which I have assigned my data, but as they are private I cannot retrieve them.how I can store an instance of a custom class in a local shared object without it being corrupted in this way?

View 4 Replies

ActionScript 3.0 :: Swf Object Doesn't Work In FF3?

May 8, 2009

I've run into this problem where swf Object doesn't display Flash in Firefox 3.

View 1 Replies

ActionScript 2.0 :: Draw With Path Class Doesn't Always Work

Mar 29, 2009

So, I'm using this Path Class to make a path and then draw it. I'm having a problem where there are some positions that I draw the path, the entire line does not draw.You can see an example of this here as the dot moves. The line flashes at a few coordinates. Just a small concept example I made. The path is there, it's just not being drawn.

The code :

Code:
import com.senocular.drawing.Path;
// create a path instance that draws in _root
var myPath:Path = new Path();

[code].....

View 2 Replies

ActionScript 3.0 :: ExternalInterface Class Doesn't Work In IE Instead It Outputs 0?

Aug 5, 2009

[Code]....

this works in FF and outputs 600 like expected and it doesn't work in IE, instead it outputs 0??? why is this handled differently in different browsers?

View 5 Replies

ActionScript 3.0 :: Beginer Class Mcp Inherit The Mc Doesn't Work

Jan 25, 2009

Runtime error at the line : var mcp: MovieClipPlus =
MovieClipPlus(mc);

It doesnt work.. how can I let mcp inherit the mc?

View 2 Replies

Professional :: Import Of Custom Class Doesn't Seem To Work

May 30, 2010

OK, I have my custom class defined in a file called "rootInstace.as". This is what it contains:
 
[Code]...

View 3 Replies

ActionScript 3.0 :: Flash Class Doesn't Work After Published

Oct 9, 2010

I created a class for showing a Alert Message Window, everything is working OK while I executed it from Flash, but when I published it I can't see nothing... I tryed in differents browsers, I tryed from localhost, uploading to an internet server, creating crossdomain.xml file in the root server, turning to "Access network only" the Flash Publish preferences... and nothing yet.

Here the class

Code:
package com.nuedi.ui
{
import flash.display.Bitmap;
import flash.display.BitmapData;

[Code].....

View 9 Replies

ActionScript 3.0 :: Calling A Method From Outside An Object Doesn't Work?

Oct 14, 2011

I am using the below package to play back a wav file. In my main file I create several of these objects, put them in an array, and then try to call
playBack().

Unfortunately it doesn't work. However, I can call playBack() from within the object, for example by having this object create a button.

Code:
package
import flash.display.Sprite;
import flash.net.URLLoader;

[Code]....

View 2 Replies

ActionScript 3.0 :: AIR Shared Object Shared Between Flash & AIR?

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

ActionScript 3.0 :: Singleton ENTER-FRAME UpdateList Class Doesn't Work?

Feb 12, 2011

I'm making a class that manages all of my updates with a single ENTER_FRAME. I think I should be getting the OnUpdate trace but it doesn't seem to work?[code]

View 2 Replies

ActionScript 3.0 :: Auto-complete Feature Doesn't Work Well / When Creating New Class File

Aug 3, 2010

For some reason, in the past few days, the auto complete feature doesn't work well when I'm creating a new class file. I'm trying to write a new class which uses away3D, and even though the auto-complete works well when I start a new AS3 file, it just doesn't work as far as away3D is concerned when I try to create a new AS3 Class file. Other features of the auto-complete don't work as well, for some reason.

View 1 Replies

ActionScript 3.0 :: A Super Class That's Runtime Shared Independent From The Class That Extends

Nov 4, 2010

I'm not really asking how. What I'm asking is, is it possible? And I ask because I thought it was not - certainly it didn't work in AS2 - and yet that's what I appear to have done. Am I going crazy? Structure: A SWF (#1) with a class NewActivity that extends class AActivity. Another SWF (#2) with a shared library of code in it, including AActivity. A third SWF (#3) which loads the library followed by SWF#1. Here's what happened: I didn't expect AActivity to be able to be shared. I mean, it should be compiled no matter what in SWF#1, as SWF#1 includes a class that extends AActivity. I had added some properties to the AActivity class, ran the project, and when SWF#3 tried to set those properties I was told they couldn't be applied. "Of course", I said, "I need to recompile SWF#1, because the code is now out of date. The version of the class there doesn't include these new properties.".

However, that didn't work. I got the same problem. Maybe, I thought, there's a definition conflict between SWF#1 and the library, so I removed the AActivity class from the shared library in SWF#2 for the time being. Only SWF#1 uses it, and it should already be compiled into SWF#1 as, like I said, it is extended by another class there. But when I ran the project, I was then told that the AActivity class could not be found at all! Looking at SWF#1 in a decompiler, there is in fact no mention of AActivity (I had up to this point assumed it was implied). So this left just one option: I needed to recompile the library in the first place, not SWF#1. I added AActivity back to the library, recompiled, and it worked.

To check I wasn't going crazy: I added a test property to the AActivity class and recompiled the library. The containing project - SWF#3 - then set this property on SWF#1, which had NOT been recompiled, and then read it back out. No errors. I should point out that the getting/setting of this property is done through an IActivity interface - AActivity is not being accidentally compiled into the main project (SWF#3), and the decompiler indicates this also. Am I going nuts? I really didn't think having a runtime shared super class was possible in any way. If it is, that opens up a whole new world of awesome, even though I've created this project on the basis of that being impossible.

View 4 Replies

ActionScript 3.0 :: Save Visual Object Data In Shared Object?

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

ActionScript 2.0 :: Dynamic Masks - Trail Doesn't Resize And The Mask Still Doesn't Work

Oct 16, 2009

I decided to try to use setInterval for myanimation, which is just a mouse trail.However, I'm trying to get teh mouse trail to be a dynamic mask.In my previous swf this was achieved by using a holder mc with the animation inside and then using this as the mask. But this time I just canpt seem to hit on the right way to get it to work. The code I am using for the mouse trail is:

Code:
var i:Number = 0;
var myInt:Number;
var t:MovieClip;[code].....

in the function, but now the trail doesn't resize and the mask still doesn't work.

View 1 Replies

Actionscript 3 :: Flash - Calling A Function From A Class Within A Separate Class?

Feb 4, 2012

I've been searching around trying to work this out for a while now. There's been various ideas popping up, like dispatchEvent etc but nothing that seems to be a clear, simple way of doing this.What I'm trying to do is call a function from a class seperate (but in the same folder as) my document class.Specifically, I want to 'spawn' an object and run a function within that object's class from my Main.as.The snippet I have at the moment is as follows;

In Main.as:
var object:class_Object = new class_Object();
object.spawn();

[code].....

View 2 Replies

Flash :: Interact With All Instances Of A Class From A Separate Class?

Jul 25, 2011

I've been hitting dead ends while programming lately all over, and I finally came to the realization all the code I have that is broken is because I don't know how to interact with instances of one class from within another. Here's the gist of what I am trying to do:

if(this.hitTestObject(targetClip)){
trace("hit!");
}

The problem is, if I address a single instance that is on the canvas, I get "access to undefined property targetClip", even though the document class can interact with it fine. If I target the class file of targetClip, I get "Implicit coercion of a value of type Class to an unrelated type flash.display:DisplayObject". It isn't just a problem with hitTest either, I'm having this problem with other actions, so there is some basic syntax I'm failing to comprehend.

View 2 Replies

ActionScript 2.0 :: Separate Objects Are Made, Object A And Object B?

Nov 11, 2008

Inside the attached .rar Two seperate objects are made, object A and object B, but they share the same variable (only works with arrays) even though they aren't linked in any way. Any changes made to A is reflected in B, and vise versa.

How would I go about fixing this issue? (SIMPLY, aka I don't want to write a class or whatever, I just want to know if I am doing something wrong, like not writing new or something)

View 2 Replies

Flash :: Shared Objects Don't Work In Code?

Nov 3, 2010

However, they work in other examples, even locally, when I download the source.

Code:
//Button
on(release)

[code]........

View 1 Replies

ActionScript 3.0 :: Arrays - Cannot Get Shared Objects To Work

Mar 6, 2012

I am trying to make a to-do list application. I would like it to save each time I close. So I researched shared objects, and somehow cannot get it to work. I hold all my "items" in an array, then copy that array to a shared object. Here is the code used to copy the array: At the top. I put the array in a Global class, just ignore the GlobalVars.vars. junk. It's not really necessary, but it definitely works everywhere. ListItem is a class I made that works fine by itself.

Code:
var listCookie:SharedObject;
listCookie=SharedObject.getLocal("lkjasdf");
if(!listCookie.data.itemArray) {
listCookie.data.itemArray=new Array();
} for(var i in listCookie.data.itemArray)
[Code] .....

When this function is called, it equates the two arrays fine. I trace them both afterwards, and they have the same items in there. But when I close the .swf and reopen it, the saved array is full of undefined references. It has the same length, just nullifies everything it was supposed to have.

View 3 Replies

ActionScript 3.0 :: Width Doesn't Work - How To Make It Work

Apr 21, 2010

I have a button object that I need to scale to align with the variable width of an array of images.However, when I set the width in code, the button does not actually become that width. Tracing out the width gives me the correct value, but on screen.. it's off.

I've proved it to myself by scaling the same button object manually in the properties pane and visually comparing. Both of the buttons below have a width of 410.

Code:
navigatorDown_btn.width = 410;
navigatorDown_btn.x = (stage.stageWidth/2)-(navigatorDown_btn.width/2);
trace(navigatorDown_btn.width); // output: 410

View 4 Replies

Fonts - Cannot Get Flash Runtime Shared Library To Work

Oct 18, 2011

I am using Flash CS5 (assets) and FlashDevelop (code) for my project. We have about 20 fla/swf's that contain textfields. All of our textfields use the same Font, and the font is specific to our company so won't be installed on anyones computers, hence it needs to be embedded.

My ultimate goal is to have one single font embedded that all of the textfields use, for 2 main reasons:

Whenever we add more characters to the font (other languages), we only need to add them once and not 20 times The file size doesn't blow out dramatically

I'm having great difficulty in trying to achieve this. It seems that everything I try, characters are missing (only characters entered in the text property of the textfields in each fla seem to be embedded).

The latest solution I am trying is using Runtime Shared Libraries, as this seems like it should work. I have an fla called FNFont.fla. It contains just one object in the library, the embedded font. The font is exported to AS3, exported in frame 1 and exported for runtime sharing. The URL is FNFont.swf (all swf's are in the same folder).

In all the other fla's, I create the font object in font embedding. I tick Import for Runtime Sharing and give it the same class name as the one in FNFont.fla. The URL is FNFont.swf. The fla(s) contain many textfields using this font. The textfields have instances of themselves as children of other movieclips.

When I run the program and attempt to load a movieclip that contains an instance of one of these textfields, I get the error:

[Fault] exception, information=ReferenceError: Error #1065: Variable FontName is not defined.

FontName is the class name of the Font object in FNFont.fla and all other fla's. It is not the instance name of the textfield (nor the class name), so I don't understand how it thinks its a variable.

View 3 Replies







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