Old 07-24-2009, 10:44 AM   #1 (permalink)
Senior Member
 
Laurentiu's Avatar
 
Join Date: Jul 2009
Posts: 858
Default Action On Pics

if you don't want to use geturl standard events on picture click just do as it follows:

find slideshow.as in you source file Folder and search for:

mc.onPress=function()
{
if (this.par!="_blank")
{
pictureClick(this.nm);
}
else
{
getURL(this.nm,"_blank");
}
}

and replace it with:

mc.onPress=function()
{
if (this.par=="action")
{
pictureClick(this.nm);
}
else
{
getURL(this.nm,this.par);
}
}

sorry for this ..

cheers
Laurentiu is offline   Reply With Quote
Old 07-24-2009, 10:46 AM   #2 (permalink)
Senior Member
 
Laurentiu's Avatar
 
Join Date: Jul 2009
Posts: 858
Default Action On Pics

if you don't want to use geturl standard events on picture click just do as it follows:

find slideshow.as in you source file Folder and search for:

mc.onPress=function()
{
if (this.par!="_blank")
{
pictureClick(this.nm);
}
else
{
getURL(this.nm,"_blank");
}
}

and replace it with:

mc.onPress=function()
{
if (this.par=="action")
{
pictureClick(this.nm);
}
else
{
getURL(this.nm,this.par);
}
}

sorry for this ..

cheers
Laurentiu is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 07:05 PM.