Well...Recently I have found a very cutie picture which I wanna use as the logo for the video I encode so that I could share with somebody else. However, I am not really good at scripting, so I am just wondering what I gotta do esp what is the script for it which can allow me to set position where the picture can be situated. I know it would be fairly easy to some of you already.

I don't know where I found the script but here is the user-defined function

Code:
function insertsign(clip mainclip, clip overlayclip, int startframe, int "endframe") {
    endframe = default(endframe,startframe+overlayclip.framecount()-1)
    endframe = (endframe == 0) ? startframe+overlayclip.framecount()-1 : endframe
    endframe = (endframe >= mainclip.framecount()-1) ? mainclip.framecount()-1 : endframe 
    
    begin    = (startframe == 1) ? mainclip.trim(0,-1) : mainclip.trim(0,startframe-1)
    middle    = mainclip.trim(startframe,endframe)
    end    = (endframe == mainclip.framecount()-1) ? blankclip(mainclip,length=0) : mainclip.trim(endframe+1,0)
    
    middleoverlay = Overlay(middle, overlayclip, mask=overlayclip.showalpha())

    final = (startframe == 0) ? middleoverlay ++ end : begin ++ middleoverlay ++ end
    return final
}
What I want is an animated logo running from the end of the right and then towards the end of the left of the video along with some texts next to it and then fade away. Is it possible to do that? Hope you guys could help me out.