ActionScript 3.0 :: Clip To Call A Public Function Of RadioPlayer?

Dec 15, 2010

I'm a bit confused in AS3, after long developing in 1 & 2. I'm doing a radioplayer, so I did set my document to be of document class: RadioPlayer. Here is everything ok, sound playing etc. Now my client wants to add a volume button. So I made a movieclip of class VolumeManager. Now, to change the volume, I want my clip to call a public function of RadioPlayer.

As RadioPlayer is the document class I don't know how to reference it inside VolumeManager to call its public function. In AS2, I would say: _root.setSoundVolume(volume);

View 4 Replies


Similar Posts:


ActionScript 3.0 :: Call Public Static Function From JS?

Jan 6, 2011

Is it possible to call/envoke a public static function from JS? I can't seem to get it working and Im almost certain it cannot but I thought I would ask the community.

View 2 Replies

Professional :: Call Create A Public Function To Make Something Happen In Another .swf?

Feb 16, 2012

I am trying to create a public function, i have a decument class with all of my variables in it, I have worked out how to bring in external .swf files, now  I need a way to have an even trigger something on a separate .swf So at the moment I have a flunction that works on the parent
 
stage.addEventListener(MouseEvent.MOUSE_MOVE, mousePosition);
function mousePosition(event:MouseEvent) {
if(mouseX>=125)

[Code]....

View 4 Replies

Flex :: Call A Custom Component's Public Function In The Main App?

Oct 6, 2010

How do I call a custom component's public function from the main app. For example, I've got a timer component, MyTimer.In the main app, I want to call startTimer() or stopTimer().In the main app, I've got:

<visualcomponent:MyTimer />
In the component, I've got:
public function startTimer():void {

[code].....

View 1 Replies

Flash :: Call A Class Public Function From Another Class?

Jun 30, 2010

can i call a class public function from another class? what's the cleaniest solution to do that?

[Code].....

a button wich is istanced in Menu, run showTheThumbs method, in Thumbs.

View 2 Replies

ActionScript 2.0 :: Target The Selected PicFrame Clip And Have It Call The Function ResizeFrame To Change The Width Of Border Clip?

Feb 19, 2007

i have a loop that attaches clips of the picFrame to a holder clip based on the number of childNodes. how do i target the selected picFrame clip and have it call the function resizeFrame to change the width of just the border clip inside the picFrame the onRelease was chosen? i realize under the resize function i have it targeting the holder clip's width. i just don't know what else to do and i've tried many else's.

[Code]....

View 3 Replies

ActionScript 2.0 :: Write A Function To Move An Object And Then Call That Function On A Clip Event?

Jan 29, 2003

is it possible to write a function to move an object and then call that function on a clip event for instance

function (bounce){
script;
script;
}

and then call it by saying

on(mouseOver){
this.bounce;
}

View 2 Replies

ActionScript 2.0 :: Call A Function On A Clip?

Oct 13, 2003

i'm trying to call a function on a clip, but i want to use a variable that i'm sending to the clip so that when the one function gets done it knows what to do next.

MovieClip.prototype.moveHere=function(x,y,spd,func ){
this._x+=(x-this._x)/spd;
this._y+=(y-this._y)/spd;
if(Math.abs(this._x-x)<1 && Math.abs(this._y-y)<1){

[code]....

View 3 Replies

ActionScript 3.0 :: Call A Movie Clip's Function From Outside Of It?

Jun 28, 2011

I'm trying to use a movie clip's function from a fellow movie clip 2 children up and I can't find the right code.  I've used:

MovieClip(datalist.getChildByName("content")).onpauseButton();
MovieClip(datalist.root.root.root).onpauseButton();
MovieClip(datalist.scrollb.content).onpauseButton();
MovieClip.(datalist.onpauseButton);
 
and none of them work.  The function is "onpauseButton" and it is inside of "content" which is inside of "scrollb" which is inside of "datalist." I'm trying to call it from datalist's neighboring movie clip so that it activates along with another function:

manualButton.addEventListener(MouseEvent.CLICK, fl_ClickToLoadFile_1);
function fl_ClickToLoadFile_1(event:MouseEvent):void{ navigateToURL(new URLRequest("M-23 6263.pdf"), "_blank");// want to add the onpauseButton code here
}

I recall that there is a way to do it, I just can't find the right sequence.  Everything online is about how to call up to a function outside of the movie clip and not down to a function inside of one.

View 4 Replies

ActionScript 2.0 :: Possible To Call A Function From A Different Movie Clip?

Aug 1, 2006

Does anyone one know if it is possible to call a function from a different movie clip than the one it is in. For example, a function named loadData() which is on the first frame of a movie clip instance named thumbNail which is on level 0 on the stage i was thinking that it should work to call the function from frame one on the stage with..

View 5 Replies

ActionScript 3.0 :: Call A Variable Or Function From A Movie Clip?

Apr 2, 2009

I just need to call a variable or function from a movie clip to main timeline. In AS2 I would use something like:

_root.myvar = "Hola";
or
_parent.myfunc(4,2);

But this doesn't works on AC3. I tried to remove the "_" but its the same.

View 2 Replies

ActionScript 2.0 :: Rollover Call A Function That Changes Each Movie Clip?

Oct 16, 2005

Suppose I have three different movie clips. mc_A, mc_B, mc_C I want to have a rollover call a function that changes each movie clip. But I don't want to type it out like this:

Code:
mc_A.onRollOver = function() {
Explode.newExplosion(mc_A);
};
mc_B.onRollOver = function() {

[Code]...

Above you will see that I used this, it made sense to me, but this always refers to the main timeline (root in my case). So how do I pass the name of hte clip I am rolling over to a function?

View 8 Replies

ActionScript 2.0 :: Movie Clip OnRollOver Function Call?

Jul 23, 2007

I'm having an issue with a simple movieclip onRollOver event. Here's my code:

Code:
_root.mc_shutternav.mc_nav_8.onRollOver = over;
_root.mc_shutternav.mc_nav_8.onRollOut = out;
_root.mc_shutternav.mc_nav_8.onRelease = hit;

[code]....

However, with this setup the function hit() is called automatically every time I publish the movie. What's wrong with this? What's the difference between mc.onRelease = function; and mc.onRelease = function()?

View 1 Replies

ActionScript 3.0 :: Call Function In Parent Movie Clip?

Feb 23, 2009

I have a child movie clip attached to the parent via the flash interface. The child is running a timer via code on its (the child's) timeline. When the timer finishes it needs to trigger a function on the parent's timeline. All the examples show how to trigger a function on the child - that is easy and I have got that working.

View 1 Replies

ActionScript 2.0 :: Call This Function From A Button Inside A Movie Clip?

Jul 1, 2004

I have a function at frame 1 (_root). Well, i am trying to call this function from a button, inside a movie clip, but it's not successful..

View 2 Replies

Flex :: Call A Method When A Public Property Changes?

May 12, 2011

If I have a .mxml file that has a method in it and a public property, can I have the method execute whenever the property changes.

<?xml version="1.0" encoding="utf-8"?>
<mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>

[Code].....

In another .mxml file I have added this .mxml file like so:

<viewComponents:MyViewComponent myProperty="{myVariable}" />

View 3 Replies

ActionScript 3.0 :: Call File Function From Actions Panel Of A Movie Clip

Sep 15, 2011

i have a movie clip with an actions layer can i call a function from an actionscript file from the actions panel?

View 6 Replies

Ajax :: Flex - Bridge On Safari - Cannot Call Any Of Public Functions

Jul 25, 2009

My flex project uses FA-Bridge, and apparently in Safari browser I cannot call any of my public AS functions that have arguments passed in. For example I can call this AS function from javascript:

[Code]....

In the above call safari throws an error # 1063, (i.e. Argument count mismatch) in the safari javascript console, and points to line 561 in FaBridge.js. It thinks I didn't pass in the requied parameters. Now the above issue exists only on Safari. Both of the above approaches work on IE, Firefox and Chrome browsers. Note: I am NOT using swfObject for embedding my swf.

View 1 Replies

ActionScript 3.0 :: Know Public Method's Call Has Been Made From Outside / Inside Class?

Jul 16, 2009

I have to know if a public method has been called from outside the class or from inside. The reason is that depending on this, one of the actions to be executed in this method vary a bit.

View 3 Replies

ActionScript 3.0 :: How To Run A Public Function

Sep 26, 2010

How can I run a public function in the DocumentClass?

View 4 Replies

ActionScript 3.0 :: Return A Value From A Function To Public?

Sep 26, 2008

there is an interesting problem here:

How to return a value from a function to public?

Here is the code:
var df:String; //i declared it here
function onResult(e :OperationEvent):void
{
df = e.data.toString(); // i set it here

[Code]...

View 5 Replies

ActionScript 3.0 :: Have A Class With Public Function?

Jan 14, 2009

Is it possible to have a class with a public function [code]...

View 8 Replies

Actionscript 3 :: Override Public Function Both Are Called?

Jun 16, 2011

If I override a public function in a base class, I would have thought that this override function is called and the original is ignored? though this doesn't seem to be the case...

public class AbstractScreen extends Sprite
{
public function AbstractScreen()
{

[Code]....

If my model dispatches a CHANGED_LANGUAGE event, the text in the views gets updated, But I also get a trace of "WARNING: need to override public function updateLanguage()"

View 1 Replies

Flex :: Access A Public Function Outside Of The View It Is In?

Feb 6, 2012

I have been working on a Flex Mobile application using Flash Builder 4.6. I have 2 mxml 'views' in my project. In one mxml file, i have a function that grabs xml data. In my other mxml file, I have a refresh button that when depressed is suppsosed to call the function in the first mxml file in order to once again grab the xml data. I dont know how to call that function from outside the mxml file it is housed in. [UPDATE #2]* I thought I should share some more details about my issue.

It is a reddit client mobile app. It fetches the feeds, etc. In my main view called RedditReaderHomeView.mxml, I am using a splitViewNavigator spark component to house two other views like so:

[Code]...

View 2 Replies

ActionScript 3.0 :: Load 2 Xml File Into One Public Function?

Aug 12, 2010

If i want to load 2 xml file into one public function, do i need to have seperate private functions for both. do in need to declare 2 variables.

View 9 Replies

ActionScript 3.0 :: Override A Protected Function To A Public?

Sep 1, 2010

Is it possible to override a protected function to a public.

View 5 Replies

ActionScript 2.0 :: Calling Public Static Function Set?

Jul 4, 2007

I'm using exanimo's statemanager class but I dont know how to use this function:

public static function set defaultStateID(defaultStateID:String):Void

how do I call this function?

View 1 Replies

ActionScript 3.0 :: Using Objects When Accessing A Public Function?

May 4, 2009

I have (may be a simple solution needed) a problem with a class I've wrote. I've wrote a class named Navigation [URL] and in there I make all the buttons for the navigation. Next to that I have a Ipage class [URL] and in there I have all the pages stored. When I click on a button, the Navigation Class is called and tries to access the public function ChangePage in the Ipage class. In the ChangePage function I trace if the function is called and the trace comes back. So it works... BUT if I want to access another object it's not working. I can't even set sprites on visible = false.

View 7 Replies

ActionScript 3.0 :: Flash Accessing PUBLIC FUNCTION From Different?

Jan 5, 2011

i've put some public functions in one as-file. how an i call the functions in the .fla-code?

just calling the name "go();" doesn't make it:

View 2 Replies

ActionScript 3.0 :: Public Function Inaccessible Method Error

Nov 20, 2010

I have two classes that I am trying to get to intereact, main.as which is the class attached to the stage and then light_mc.as which is attached to a movieclip.

I have a function in main that I would like to access in light_mc. I have set it up so main stores "this" in a variable called instance so I can easily access the functions within main.

Here is the code the main.as

Code:
package
{
import flash.utils.Timer;

[Code].....

View 6 Replies







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