Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

i want to "open URL" link in my function on thumb.

New Here ,
Jun 20, 2013 Jun 20, 2013

function callThumbs() {

                                        root.createEmptyMovieClip("wall",root.getNextHighestDepth());

                                          wall._x = root.galleryx=0;

                                          wall._y = root.galleryy=230;

wall.addEventListener(MouseEvent.CLICK);

                                            var clipLoader = new MovieClipLoader();

                                            var preloader = new object();

                                            clipLoader.addListener(preloader);

for(i=0; i<1;  i++)

                            thumbURL = myImages.attributes.thumb_url;     

myThumb_mc = wall.createEmptyMovieClip(i,wall.getNextHighestDeph());      

myThumb_mc._x = root.thumbheight*    

myThumb_mc._x = root.thumbposition=-3260;         

clipLoader.loadClip("thumbs/"thumbURL,myThumb_mc);

};

};

TOPICS
ActionScript
325
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 20, 2013 Jun 20, 2013
LATEST

You appear to be mixing AS2 and AS3 in the same code.  You can only use one version of Actionscript in one file.

What do you mean when you say you "want to open URL" on thumb? 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines