//--------------------------------------
    //  PUBLIC METHODS
    //--------------------------------------

    void OnGUI()
    {
        if (GUI.Button(new Rect(30, 70, 180, 50), "Share Image"))
        {
            SPInstagram.Share(imageForPosting);
        }

        if (GUI.Button(new Rect(250, 70, 180, 50), "Share Image With Message"))
        {
            SPInstagram.Share(imageForPosting, "I am posting from my app");
        }
    }
    public void PostScreenShotWithScore(int score)
    {
//		SPInstagram.Share(instaAd, "I just Scored "+score+" on #CirclePong iOS game , can you beat my score ? \n Game Link : bit.ly/1v2KpyG");
        SPInstagram.Share(instaAd, "OMG! I got \"" + score + "\" points in #CirclePong http://bit.ly/1v2KpyG");
    }