ActionScript 2.0 :: Target A Mc Properly After LoadMovie?

Apr 9, 2003

how to target a mc properly after loadMovie. I have a swf where an mc is copied 15 times (so a 4*4 grid is formed) like this:

Code:
Movieclip.prototype.duplicateMC = function(){
amount = 16
x = 1;
y = 0;

[code]....

This works fine. However, when I load it into another movie with loadMovie, it doesn't work anymore because of the _root that I use.
I thought that using _parent["copy"+i]._x += 50*x; would do the trick, but it doesn't.....

View 14 Replies


Similar Posts:


ActionScript 2.0 :: LoadMovie Can't Play Properly

Jan 12, 2009

This is my first post, I'm a newby on Action Script and I'm having some problems when using loadMovie.The script that I'm using is very simple[code]...

The movie loads ok but it doesn't play as it should and I think it must be something concerning the fact that the frame is being loaded on the main timeline, anyway I tried usn loadMovieNum using the following [code]...

View 1 Replies

ActionScript 2.0 :: LoadMovie Not Centering Movieclip Properly

Dec 12, 2005

I'm loading an external movieclip into an empty movieclip which is inside of another movieclip. But the movieclip I'm loading isn't properly centering to the top movieclip.

Code:
this.createEmptyMovieClip("side2", this.getNextHighestDepth());
this.side2.loadMovie("skins/default/red.swf");
this.side2._x = this._x;

[Code]....

Way way way off of the top movieclip. I'd at least expect side2's 0,0 point to be in the upper left which would snap to the center point of this. But not even close.

View 2 Replies

ActionScript 2.0 :: CS3 Loadmovie Into Target Mc - Not Level?

Apr 5, 2009

got a file that contains scripting that creates and animates a carousel effect in a faux 3d space - it all works great on a mac and some pc's but on a lot of pc's it doesn't play nicely! i have added some script to carousel script so if the carousel item is clicked it rotates that item to the front and then loads the specified swf into level 1

pc's don't seem to recognise the alignment of the loaded swf and brings it in half cropped off the screen - appearing in the top left of the stage area.how do i tell the loaded swf to centre in the middle of the stage just like the rest of the elements in the movie? how to make the target mc sit at the highest level/depth - in other words above the carousel? this is my onclick script:

Code:
function released()
{
output.text = this.txt_label.text + " has been selected";[code].........

View 1 Replies

ActionScript 2.0 :: Loadmovie And Target A Frame

Jul 17, 2009

I want to load a movie and have it start on a specific frame within that movie instead of starting on frame one. The code I have now is this:

stop();
loadMovieNum("mc2.swf", 2);

I want it to start on the frame label in the movie called "in" instead of on frame one. How the hell do I do this, I looked everywhere

View 1 Replies

ActionScript 2.0 :: Loadmovie To Target Not Totally Working?

Mar 11, 2003

So I am tring to load a movie into a target. It is loading but all of the scripts are not working (some of the scripts are working). All the scripts work if I load the movie to a level instead of a target. But I need the movies to be in a target because of the motion that I want to apply to the loaded movie

View 1 Replies

ActionScript 2.0 :: LoadMovie In The Target _root.as. And The Url Is Dynamic

Nov 26, 2005

I want to loadMovie in the target _root.as. And the url is dynamic: _root.as.loadMovie(_root.link) Unfortunately the movie isn't loaded I tried to convert _root.link to string but nothing

View 13 Replies

ActionScript 2.0 :: Loading A Swf To Target By Using NamedMC.loadmovie

Apr 11, 2003

I have been loading an swf to target by using namedMC.loadmovie ("path+name", _levelN) altho I notice there is another method suggested here about using createEmptyMovieClip so it is all in script. Can anyone suggest a way of preloading all my separate swf files and then playing them at various specified points, like when the previous animation is finished/finishing. I have tried things like altering the _alpha and using namedMC.stop(); and namedMC.play(); but that aint working.

View 1 Replies

ActionScript 2.0 :: LoadMovie - Target A Specific Scene In The Load Movie Command?

Jul 9, 2002

I want to load a movie loadMovie ("target", _root....) and so on. My question is can you target a specific scene in the load movie command?? I have a movie with a button that loads a new movie into level 0 so it replaces the first movie. Now in the new movie I have a button that unloads the new movie and loads the previous one. But it starts it off at the veru beginning of the movie. I want it to pick up where the first button click took place.

View 2 Replies

ActionScript 2.0 :: LoadMovie "target" & Kirupa's Image Pan?

Nov 27, 2006

Description: HTML page containing MC1 and MC2. MC1 has container MC-C inside and MC2 has button with AS ... loadMovie ("MC3.swf", _root.MC1.MC-C") Problem: when I hit the button nothing happens When I assigned this script to a button inside MC1 (excludeing "MC1." from target value) than it works. Would anyone know how should my target value look like to achieve desired load into container within MC1?? conditions: (MCs 1,2,3 are in same folder, with correct instance names, have tryed few variations but no success)

Q2: Kirupa's Image Pan - is there any way how to integrate whole thing inside another MC without messing it up like me?? Cause I have noticed that it is fixed to "stage.width" and stage of the MC I wanted to plece it is a bit different.

View 2 Replies

ActionScript 2.0 :: LoadMovie Getting "Target Not Found"?

Jan 29, 2009

have a hard time seeing why the code isn't quite working:on frame 4 I have:

var mc:MovieClip = this.createEmptyMovieClip("mc", this.getNextHighestDepth());
var image:MovieClip = mc.createEmptyMovieClip("image", mc.getNextHighestDepth());
image.loadMovie("gallery1.swf");

[code].....

View 1 Replies

ActionScript 2.0 :: Stop Further Items Being Dragged Onto A Target When The Target Box Is Full?

Sep 29, 2003

On the attached exercise, is it possible to stop further items being dragged onto a target when the target box is full?

View 1 Replies

Flex4 :: Difference Between Target And Current Target

Nov 28, 2011

What is the difference between target and currenttarget in flex?What is the difference between Target and Current Target in Flex especially in mouse events.

View 2 Replies

ActionScript 3.0 :: Target Movieclip With E.target?

Aug 30, 2010

qi have a movieclip which is added to the stage:

var profileholder:profileHolder=new profileHolder ;

inside of profileholder is another movieclip(infoBtn) that acts as a button.when the mouse is over profileholder i want to do something with infoBtn like:

//profOver is the over state of profileholder
function profOver(e:Event) {
e.target.infoBtn.alpha=1;
}

this doesn't work and brings up this error:ReferenceError: Error #1069: Property infoBtn not found on flash.display.Loader and there is no default value.
at main_fla::MainTimeline/profOver()

i also tried:
function profOver(e:Event) {
var item:profileHolder=e.target as profileHolder;
item.infoBtn.alpha=1;
}

and get this error:TypeError: Error #1009: Cannot access a property or method of a null object reference.

View 1 Replies

ActionScript 2.0 :: Error - Target Not Found: Target="whoweare" Base="_level0.instance20.instance48.instance49"

Mar 14, 2005

i don't know why this isn't working.i got a button. and when it's pressed, i need it to go and play a frame in a movie clip. i'll test it and then when i click on it, i get this:

Target not found: Target="whoweare" Base="_level0.instance20.instance48.instance49"

this is the code that i am using:

on (press) {
tellTarget ("whoweare") {
gotoAndPlay (51);
}
}

View 14 Replies

ActionScript 2.0 :: Target Not Found: Target="_root.icon01" Base="_level0"

Feb 16, 2005

so, i'm making an animated rollover, and i get an output error that says this:

Target not found: Target="_root.icon01" Base="_level0"

i have no idea what the base="_level0" means.

View 1 Replies

.flv Won't Display Properly

Jan 8, 2010

I have loaded a .flv in a Wordpress site KeepMachSpecialdotorgdotuk and used the following code - the sources have to be in different places. The video is only half loading (top half) in Safari and I think there's probs with IE.

[Code]...

View 1 Replies

IDE :: SWF Won't Play Properly?

Aug 22, 2009

I'm working on redoing some very old HTML/Javascript effects on a client's website using Flash for better browser compatibility. On one of the pages, there is a SWF on/off audio button that when the page loads immediately starts playing audio (I didn't make this myself, it's already on the site). When you click the button, the sound goes off, and on again when you click a second time.

I downloaded the SWF and whenever I open it up in Flash player it functions fine, as it should. However, when I try to load it into an empty movie clip on the FLA I'm working on, it doesn't work. You have to click the button to get the audio to play, and then it won't turn off again. It's very odd.I'm using CS4 and AS2. Here's the code I'm using to load the SWF. "Sound" is the empty movie clip. It loads, but just doesn't function properly and I can't seem to fix it. I don't understand why the SWF isn't functioning as it does when you open it in Flash player.

Code:
loadMovie("cs_clip.swf", "sound");

View 3 Replies

IDE :: Swf Not Playing Properly?

Dec 24, 2009

This is sidd. i have problem with flash movie in website.

the problem is some time its playing good. but some times it is breaking. voice is breaking.

[URL]

View 1 Replies

CS3 Can't Get Characters To Embed Properly

May 7, 2009

I have created a dynamic text box which is used to put the length of a sound clip (which is worked out using AS2).

I want to use a font which isn't standard - VAGRounded, so I need to embed the characters.

If I select Family : VAGRounded and Style : thin then all is well. Ditto if I pick style:light but if I pick Style:bold or Style:black then the nothing displays

In my windows font folder all 4 appear to exist.

I notice that exactly the same appears to happen with the times font too (except some of the family options are different)

When I open the font-mapping box it tells me that there aer some fonts that I can't use but there is not list of what they are.

View 2 Replies

ActionScript 2.0 :: Properly Loading The XML?

Jul 22, 2009

I'm loading XML, but I'm having trouble making a for loop so that I can output into text fields my xml info.I use this to load and put into the output window. Eventually I will put it into a text field.What I want really to do is for flash to output a list. This is what I want it to look like.

PHP Code:

var newsXML:XML = new XML();
newsXML.ignoreWhite = true;
var output:String = "";

[code]....

If you look at this XML you will see that there are many different TOURNAMENTS. What I want is to have them all in a list.

View 1 Replies

ActionScript 3.0 :: Alpha Not Getting Set Properly?

Jul 13, 2010

I have a page with buttons and i want the buttons to grow on click, get bright on mouse over, get brighter on click, go back to original on mouse out (Unless clicked). Then I want the current selected button to shrink and return to normal alpha upon clicking another button. This is the code i have, and it works pretty well:

Actionscript Code:
import fl.transitions.Tween;import fl.transitions.easing.*;homeClip.addEventListener(MouseEvent.MOUSE_OVER,

[code]....

View 3 Replies

ActionScript 3.0 :: [CS4] Swf Won't Unload Properly

Jan 25, 2011

I have an application program that loads and unloads other swf into it. For example, I have 4 different swfs that are loaded and unloaded via:

[Code]....

They all load fine, but when it comes time to unload one and then load another, I get : Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed. Everything seems to still work correctly. The next swf appears to load completely, so I assume it is that the previous swf is not completely unloading. Is there an eventListener or something that I should be using when unloading before I load another swf? I am loading and unloading the swfs like this:

[Code]...

View 1 Replies

CS3 : Can't Get Characters To Embed Properly

Sep 7, 2011

I have created a dynamic text box which is used to put the length of a sound clip (which is worked out using AS2).I want to use a font which isn't standard - VAGRounded, so I need to embed the characters.If I select Family : VAGRounded and Style : thin then all is well. Ditto if I pick style:light but if I pick Style:bold or Style:black then the nothing displays

In my windows font folder all 4 appear to exist.I notice that exactly the same appears to happen with the times font too (except some of the family options are different)When I open the font-mapping box it tells me that there aer some fonts that I can't use but there is not list of what they are.How can I please get the characters like bold to embed properly.

View 1 Replies

'If' And 'Else If' Conditionals Not Running Properly?

Jun 11, 2009

I've got a function which looks at movieclips (ball#_mc) which have been placed in a target zone (_ballPlaced[#] boolean). It then decides where to go on each movieclip timeline depending on which other balls have been placed in a target zone.Only the first condition is ever met, i.e. when all the balls are in a zone, they jump to their correct places in their timelines....however, it doesn't work for any of the other 'else if' conditions?
 
Here's my code...
 
// function to determine which video to play for each ballprivate function playVideo(event:Event):void            {                if (ball0_mc._ballPlaced[0] && ball1_mc._ballPlaced[1] && ball2_mc._ballPlaced[2] && ball3_mc._ballPlaced[3])                {                    ball0_mc.gotoAndPlay("BluYelRedGre");                   

[code]....

View 2 Replies

UILoaded Swf Not Displaying Properly

Jun 21, 2010

I've got a customized xml driven flv player that I have output as an swf. It looks and works perfectly[url]...

However, when that very swf file is called into another swf file via the UILoader componenent, those modifications don't show up.[url]... The red text is now white and the orange fade-up blinks black first.

View 4 Replies

ActionScript 2.0 :: Swf Not Preloading Properly

Apr 1, 2010

On scene 1 I have a preloader on first frame then the main mivi is on scene 2

When I simulate the download in flash API it works fine. But when it's online it waits until the swf is fully loaded then just plys scene 2

View 1 Replies

ActionScript 3.0 :: XML Not Functioning Properly?

Aug 5, 2010

My XML isn't exactly doing what I want. It's putting a lot of 'undefined' entries in my Flash file and it's not updating correctly and I don't know why it's doing that.Top square is add entry to XML, button square returns to the 'room'.

This is my Script:

ActionScript Code:
package
{
//Import Stuff
public class AddQuestionMenu extends MovieClip

[code].....

View 1 Replies

ActionScript 2.0 :: Swf Not Showing Properly

Jun 28, 2011

Normally this swf works fine if it is inserted in a html page but with this type of code it is not visible. I appended below the code to look into. The name of the swf is "cdl_flash.swf"

[Code]...

View 0 Replies

ActionScript 2.0 :: HitTest() - How To Properly Use It

Aug 18, 2005

I've been working on a drop-menu and my buttons are contained within a MovieClip. Problem lies with the rollOver(), rollOut() methods.

Whenever I rollOver, the buttons that are revealed dont fall unter the 'hit area' of the button that animates the movieClip. (If that made any sense)... so, after searching the forums here and stopping by Macromedia and searching their Knowledge base/Forums, I am convinced I need to use the hitTest() [MovieClip.hitTest()]I just dont know how to use this function/method, whatever you wanna call it. (What is it called BTW?)

View 7 Replies







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