how to skip video?

Hi,
I have created a short video wich appears allways you start the game.
But its a little problem here: mabey not everyone qould like to see it, so i would like to give it a function, that if the user click on the video, it skips and the next scene loads.
ive tried this sript put to Canvas, but it didnt work
using UnityEngine;
using System.Collections;

public class skip : MonoBehaviour
{

    void onMouseDown()
    {
        Application.LoadLevel("FirstMenu");

    }
}

can you please help me?

guys, I found a way how to solve it: just create biiiig button and in button image type select sliced and unselect fill in center. than add to on click emty object with scrip what you wanna do with button on click :slight_smile:
1