Hi i am making a new type of youtube player, i completed what i wanted with some awfully long functional programming without classes. i decided i needed to start writting some classes before i get too much scope creep.

the problem i am having is how to handle the event.

onYoutubePlayerReady(playerid){} 

documentation for this can be found here

this has to be called when you want to start a chromeless player, and get a reference to it.

here is my class...

function onYouTubePlayerReady(playerId) {
        main = document.getElementById("main");
        console.log(playerId);
        //ytplayer1.loadVideoById("YhycjXvFDy8");
    }
function Player(id, playerEmbedDiv){ 
    //public
    this.id=id; 
    this.ref;
    //private
    var params = { allowScriptAccess: "always" };
    var atts = { id: id };
    var playerEmbed = playerEmbedDiv

    //constructor
    swfobject.embedSWF("http://www.youtube.com/apiplayer?" +
                       "version=3&enablejsapi=1&playerapiid=player1", 
                       playerEmbedDiv, "640", "385", "9", null, null, params, atts, test);

    function test(e){
        console.log("id:   "+e.id)
        console.log("success: "+e.success)
        console.log("ref:   ")
        console.log(e.ref)
        this.ref=e.ref;
        this.ref.loadVideoById("YhycjXvFDy8");
    }



    //public




    //private

 }

as you can see i am learning my way round object oriented programming with Javascript and the only way i could get the onYoutubePlayerReady(playerid){} function working was to put it outside of any of the classes called in the index.html. This is frustrating as i want the reference to the html object to be used in my class, and i am finding it very hard to get a reference to that object without hardcoding it into my functions as you can see.

i imagine there is a big gap in my knowledge of classes and object oriented programming with Javascript. Many many thanks for help and direction on this problem i am having!

link|improve this question

55% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.