View Single Post
03-28-2008, 01:56 PM
#2
eXtreamData is offline eXtreamData
Status: I'm new around here
Join date: Mar 2008
Location:
Expertise:
Software:
 
Posts: 2
iTrader: 0 / 0%
 

eXtreamData is on a distinguished road

  Old

Use ActionScript on button

Code:
on(release) {
getURL( "http://site.com", "_blank" );
}
Or use ActionScript on frame

Code:
button_name.onRelease = function() {
getURL( "http://site.com", "_blank" );
}
PM me if u need help.