Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7782355
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T19:31:01+00:00 2026-06-01T19:31:01+00:00

I’m making a video player in actionscript 3, I’m quite new to it so..

  • 0

I’m making a video player in actionscript 3, I’m quite new to it so..
Anyhow, what I’m trying to do now is to make the application auto click on the first thumbnail,

Heres some code from my application:

function createThumbs():void{
    var i:Number = 0;
    //For loop that iterates through all of the videos in an XML file that has a list of videos in it
    for each (var videoEntry:XML in videosList) {
        i++;
        var thumbnail:MovieClip = new thumb_mc;
        thumbnail.name = "thumb"+i;
        thumbnail.addEventListener(MouseEvent.MOUSE_UP,thumb_click);
        thumbs_container.addChild(thumbnail);

        //Now attempting to simulate a click if it's the first thumbnail
        if(i == 1){
            thumbnail.dispatchEvent( new MouseEvent( MouseEvent.MOUSE_UP ) );
        }
    }

}

I’ve been trying to google it and found that maybe I’ll have to add an event listener to know when the thumbnail is actually being added to the stage, and just then click on it.

I don’t know how to do that though, and would be grateful if you guys could help me.
Thanks in advance!

EDIT:
According to Ascension Systems’ answer, I tried to edit my if statement to this:

    if(i == 1){
        thumbnail.addEventListener(Event.ADDED_TO_STAGE, function clipAdded(e:Event):void {
        MovieClip(e.currentTarget).dispatchEvent( new MouseEvent( MouseEvent.MOUSE_UP ) );

        });
    }

I did that just to see if anything happens and if it’s really clicking on the thumbnail, but it isn’t.

EDIT:
I just found out that the code that Ascension Systems provided worked, but it didn’t work at first because of a different error I had,
the thing is, I’m working with the youtube API, FLVPlayback and such,
And Each one of them is in a different movieclip,
In the youtube movieclip I added this function:

function destroyPlayer():void {
    player.destroy();
}

But apparently it caused this warning that I haven’t noticed before:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at FLVTOO_fla::YT_mc_4/destroyPlayer()

I am setting the player as an object in the beginning of the script like so:
var player:Object;

Any idea why this warning is popping up?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T19:31:02+00:00Added an answer on June 1, 2026 at 7:31 pm
    thumbnail.addEventListener(Event.ADDED_TO_STAGE, function clipAdded(e:Event):void {
        MovieClip(e.currentTarget).dispatchEvent(new MouseEvent(MouseEvent.MOUSE_DOWN, ... rest of arguments);
    
        //Remove the listener when done
        (e.target as EventDispatcher).removeEventListener(e.type, arguments.callee);
    });
    

    This code is untested and note that the dispatchEvent code is pseudo code. The way that I’ve dropped an anonymous function here into the event listener… is kinda lazy and some might not like it but there is code within the callback to clean up the event listeners and since it’s a function that will only ever run once, well I think it’s okay for this purpose. For more info on what exactly this is, see this question and answer.

    I’m not sure however that this will solve your issue. Like I said this is not tested and it’s done on the assumption that dispatching the event prior to having the object actually be on the stage is the issue here. Let me know if this works out for you.

    Also, as a side note, if you’re new to flash/AS3 then you definitely need this website: http://gotoandlearn.com/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm making a simple page using Google Maps API 3. My first. One marker
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I am trying to understand how to use SyndicationItem to display feed which is
I have a jquery bug and I've been looking for hours now, I can't
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I want use html5's new tag to play a wav file (currently only supported
I am trying to render a haml file in a javascript response like so:
We're building an app, our first using Rails 3, and we're having to build

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.