ActionScript 3.0 :: SetProperty Method Only Applicable To Remote SharedObject?

Jan 25, 2011

Is the setProperty method only applicable to remote shared objects and not to local shared objects? The following code works fine:
Code:
web_so.setProperty("web", "someURL");
trace(username_so.data.Name);

Where 'web_so' was earlier declared as a remote shared object. When the above line of code is parsed, the bbc website opens in the browser and the trace statement get's printed in the output cosole. However if I were to replace the web_so...code witht the following:
Code:
username_so.setProperty("web", "someURL");
trace(username_so.data.Name);

Where 'username_so' was earlier declared as a local shared object. The trace statements prints out fine, but the brower dosent fire up at all. Which makes me wonder if the 'setProperty' method is something unique to remote shared objects, but I dont see the API mentioning that.

View 0 Replies


Similar Posts:


Media Server :: SharedObject - SetProperty/getProperty No Change?

Feb 15, 2012

I can't seem to get setProperty to affect any change detectable by getProperty, or any other means.
 
* Can you please help me find and fix the problems in my code? Also, it would be great if you could provide a snippet of code to both read/write to the SO from the Flash swf client, and changes required in the FMS server-side code to receive events onSync from another FMS server (also sending to another FMS server.. I know it should be very similar in theory).

[Code]...

View 2 Replies

Actionscript 3.0 :: Translate From AS2: Parallax/ Panning Effect - SetProperty Method

May 18, 2009

Can anyone translate this AS2 code to AS3? I tried myself but I am having a problem with the setProperty method. Code is pasted and here's the link to the source files.

[Code]...

View 1 Replies

Media Server :: FMS Remote SharedObject Not Always Updated?

Apr 8, 2011

I'm somewhat new to FMS. We're creating a chat application and using s remote SharedObject to keep everyone in sync about who is in the room. But despite the fact that I use the following:

_sharedObject.setProperty("groupList", groupList);_sharedObject.setDirty("groupList"); to force the shared object to update the list of who's in the room, for some reason it does not always update correctly when someone enters the room and adds themselves to the shared object. The problem seems to be that the SyncEvent.SYNC event does not always get sent all the time.

More troubling it that if the user closes the browser window or navigates to another page, NetStatusEvent NetGroup.Neighbor.Disconnect and NetGroup.MulticastStream.UnpublishNotify are not reliable to use to remove user's from the list. My assumption is that remote shared objects are just not that reliable in some cases. Should I use server side scripts to keep track of users and what groups they are in?

View 9 Replies

Actionscript 3 :: FMS4 : Remote Sharedobject Reading?

Feb 20, 2012

I can create (AC3 and FMS4) remote sharedObject (but it's not listed on FMS admin panel, either on local server running on winXP Pro). When I trace results I see firstame value "myfirstname":

<...>
public var _so:SharedObject;
<...>[code]...

but when I want to get these values from another swf and browser with the same connection details, I don't receive anything. No ideas about returned errors, but i think it should be o.k., as I use like this to receive _so values:

<...>
_so = SharedObject.getRemote("myRemoteData", nc.uri, false);
_so.connect( nc );

View 1 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

Flex :: Handle Remote Method Calls Via AsyncToken?

May 25, 2011

So here is the mxml i would like to get working:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[code]....

View 2 Replies

Php :: Dynamically Typed Languages And Remote Method Invocation

May 31, 2011

Some may know that PHP methods can be remotely invoked from Flash.Sometimes the input parameter of a remote PHP method is an array of integers.Because PHP is dynamically typed an attacker can pass an array of anything.The array of integers has to be used in a SQL query.[code]

View 2 Replies

Java :: How To Call Method On Remote Class Returned By Object

Nov 5, 2009

I have a RemoteObject returning a 'Schedule' class. I've created a client side RemoteClass to map to it. All properties of the class instance are coming in fine. I just not clear on how I go about calling methods on the class. How would I call a setter on startdate?

package classes.remote {
[Bindable]
[RemoteClass(alias="com.site.data.schedule.Schedule")]
public class Schedule {
public var id:int;
public var modifydate:Date;
public var startdate:Date;
public var enddate:Date;
}}

View 2 Replies

ActionScript 3.0 :: FlashBuilder Will Be Directly Applicable To Flash CSx - Correct?

Apr 20, 2010

I'm heads down working with the FlashBuilder tool which is heavy AS3, and have used Flash CSx for years. My question: I'm assuming my AS3 skills that I develop with FlashBuilder will be directly applicable to Flash CSx, correct? I understand I'll need the context of applying my AS3 code to the Flash objects when working in Flash CSx but for the most part will my AS3 skills carry over from FlashBuilder to Flash CS4/5?

View 3 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

ActionScript 3.0 :: SetProperty() Will Not Work?

Jul 27, 2007

I seem to have found a bug.....setProperty() will not work

View 5 Replies

ActionScript 2.0 :: SetProperty - Can See Only With One Coordinate

Oct 8, 2005

first have a look at this: [URL] It loads "auto" coordinates from php file, and makes the "auto" move after timeinterval. It is needed tht it could load infinate coordinates, but i fail to do it. If u change setProperty(auto, _x, kord ) to setProperty(auto, _x, x2 ) , it works, but as u can see only with one coordinate.

View 9 Replies

Flex :: Difference Between SetProperty And RemoveChild

Jun 15, 2011

When state is changed, we can define the new properties for the new state overidding the properties of the base state.

But, I had a doubt. What is the difference between using setProperty() and removeChild() in Flex ?

Take the following case.
Suppose there are 2 Vbox inside the application container. When the state is changed by some event, I need only 1 VBox in the appln container.

(a) Should I set setProperty for that particular VBox of width and height to 0 ? or (b) Should I remove the VBox from the new state by using removeChild() property ?

View 1 Replies

ActionScript 2.0 :: Unable To SetProperty Deprecated?

Jun 21, 2010

I have read this a few times, however, I never really understood the alternative. Please help me understand.How would I, without SetProperty, change the _alpha of a movieclip defined by a variable.With setProperty I would define the variable(which obviously will be changing, therefore a variable is needed):var movieClip = "_root.someMovieClip_mc"setProperty(movieClip, _alpha , 50)

View 5 Replies

ActionScript 2.0 :: SetProperty Doesn't Work?

Jul 16, 2010

I'm trying to do something pretty simple: I am duplicating a movie clip and setting the _x and _y properties of the duplicate. The reason it is driving me up the wall is that the code works if I export for Flash Player 6, but not for anything later, and according to the sites I've read this code should work. I don't want to get into this project (which is big) and find out later that I can't export for such an old player.Here's the code:

Code:
function createBalls(ballNum) {
var newClipName:String = "ball" + ballNum;

[code].......

View 4 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

ActionScript 2.0 :: Create Ball1 To Manipulate Them With Setproperty?

Jun 12, 2005

i want to duplicate a movie clip b1 and create ball1 to manipulate them with setproperty, and the same for b2 but this one into ball2. when i execute this code it would only do it for b1 and not for b2.

Julie(^_^)
var x1=50
var y1=100
var x2=60
var y2=89

[Code]...

View 12 Replies

ActionScript 2.0 :: Using SetProperty Function In Masked Layer

Jul 12, 2002

I'm having some problems setting _x and _y positions of a movie clip attached (into a clip on a masked layer) using attachMovie. The code should position the clips icon1-8 on the y axis (100 pixels Ipart). The destination movie clip (the one with the actions) resides in a masked layer, I remember reading that there were some problems with masked layers in version 5. (i'm using flash MX). The movie clip is _root.openwindow.files

onClipEvent (load) {
for (var counter=1; counter<9; ++counter) {
this.attachMovie("icon", "icon"+counter, counter);
this["icon"+counter]._x= 37;
this["icon"+counter]._y=counter*100;
}}

I am pretty sure there is nothing wrong with the code.. as it works outside the masked layer..

View 2 Replies

ActionScript 2.0 :: SetProperty (multiple Targets, _property, Value)?

Mar 28, 2005

I've 2 mc in timeline instance names are:

form1
form2

in first frame I wrote the following code

setProperty(form1, _alpha, 50);
setProperty(form2, _alpha, 50);

this works ok. but the question is... multiple targets, how could I do something like this:

setProperty((form1; form2), _alpha, 50);

although I know this doesn't work... how could I setProperty of more than one instance?

View 4 Replies

ActionScript 2.0 :: SetProperty Of More Than One Instance (multiple Targets - _property - Value)?

Mar 28, 2005

got stuck with this... I've 2 mc in timeline instance names are: form1 form2 in first frame I wrote the following code

[Code]...

this works ok but the question is... multiple targets, how could I do something like this: setProperty((form1; form2), _alpha, 50); although I know this doesn't work... how could I setProperty of more than one instance?

View 4 Replies

ActionScript 2.0 :: Set Alpha Property In Flash Mx Without Using The Setproperty Action?

Jul 4, 2003

how can i set alpha property in flash mx without using the setproperty action. when i use setproperty action to change alpha value ,the graphic doesn't animate.

View 3 Replies

ActionScript 3.0 :: 1180: Call To A Possibly Undefined Method Error For DEFINED Method

Nov 19, 2010

I am getting this error: 1180: Call to a possibly undefined method startWorld.but the method startWorld is defined as you can see in attachment.

View 4 Replies

Actionscript 3.0 :: Make A Public Static Method Call Another Method, But Flash Throws Error 1180?

Feb 19, 2010

I'm tryng to make a public static method call another method, but Flash throws error 1180, sayng that the method called by the static method is undefined.

Code: Select allpackage
{
import flash.display.MovieClip;[code]....

View 2 Replies

ActionScript 2.0 :: Convert A Fortran Method To A Macromedia Flash Method

Dec 23, 2010

i have a fortran method which creates random numbers. i want to convert this method to a flash method . I want to get numbers from this method and use them in the delay method of flash.

the fortran method is the folowing

real znew1 , zold1 ,a,m,z1,p,TIME1
a= 16807.
m=2147483647
B=2

[Code]....

View 7 Replies

ActionScript 3.0 :: Overcasted Superclass Method Not Triggering Subclass Method?

Feb 1, 2011

I have a class called Animal that has a method foo() and I call it out within the Animal class.

Code:
protected function foo():void
{
trace("Animal");
}

I also have a class called Cat that extends Animal and overrides the method foo()

Code:
override protected function foo():void
{
trace("Cat");
}

However when calling the function foo() from the superclass it traces out Animal not Cat (using a Cat object).How can I make superclass call out methods in the subclass?

View 14 Replies

ActionScript 3.0 :: Static Method Accessing Instance Method?

Sep 14, 2010

two classes, both extend EventDispatcher. Static method in 1st class calls instance method in 2nd event not getting caught. [code]also, since dispatchEvent() is an instance method, is there any way of calling it without first instantiating the class? i expect not.

View 2 Replies

ActionScript 3.0 :: Sharedobject To Remember For The Day?

Feb 16, 2009

i need to stop a flv from playing again until the next day ( needs to be AS3).

View 2 Replies

ActionScript 3.0 :: SharedObject And HitTestObject?

May 12, 2011

Im trying to get Flash to rember if the logo_mc has been hitTested with the holder, and if it has when the movie is played again it appears in the box and not the original spot

var mySO:SharedObject = SharedObject.getLocal("ObjectPlace");
var logo_mc:Sticker = new Sticker  ;
addChild(logo_mc);

[code]....

View 1 Replies

AS2 :: SharedObject Code Not Working?

Nov 27, 2009

I have searched all of the engines to find out why my SharedObject code is not working. It works when I publish from flash but not when live? I have this code in the first frame and the movie starts on the second. I only want the user to have to view the swf every other time they land on the page containing the movie. I am using AS2.

var replay = SharedObject.getLocal("save");
if (replay.data.name == undefined){
gotoAndPlay(2);

[code]....

View 1 Replies







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