get url
Shared by: docstoc.hosamea
-
Stats
- views:
- 10
- posted:
- 11/30/2012
- language:
- pages:
- 3
Document Sample


Author: Mark Monciardini. From the website: www.designsbymark.com
© Copyright 1998, 1999, 2000, 2001. Mark Monciardini All Rights Reserved.
Get URLs & L-i-n-k-s
I want to apply the Get URL Action to my
button so it works - How?
Most people apply the Get URL Action to the button in Symbol Edit Mode, well it doesn’t
work that way :) You must be in the Movie Edit Mode and then right-click (Mac:Ctrl-click)
on the button and choose Properties>Actions>+>Get URL. For switching movie scenes
or movie frames, go to +>Go To, then set it for where you want to go.
When my Intro movie is done, how can I make it link to
my home page automatically?
Right-click (Mac: Ctrl-Click) on the last frame of the movie and choose Insert Keyframe.
Now double-click the same last frame and go to Actions>+>Get URL. Enter
"yourhomepage.html" where it says URL. Click OK.
Some links I want to open in a new
browser window - How?
Right-click (Mac:Ctrl-click) on the button and choose Properties>Actions>+>Get URL.
Enter the URL in the URL spot. Now select "_blank" where it says Window
Ok, but I want to set the width and height of that new
browser window and I don’t want the browser buttons to
show and stuff - How?
Java Script...
Copy and paste the code below and put it between the header tags in your source
code. Like this <HEAD> Mark’s Java Script </HEAD>.
Here it is:
<script>
var WinNum=0;
function WindowOpen(Url,x,y)
{
var String;
String =
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=2,resizable=0,copyhistory=0,
";
String += ",width=";
String += x;
String += ",height=";
String += y;
WinPic=window.open(Url,WinNum++,String);
}
//--->
</script>
Right-click (Mac:Ctrl-click) on the button and choose Properties>Actions>+>Get
URL. Enter the code below in the URL spot. Change the 400 for the width and change
the 200 for the height. That’s it!
Here it is:
Javascript:WindowOpen('thepage.html',400,200)
How about e-mail links - so it opens the e-mail
program, ya know?
Right-click (Mac:Ctrl-click) on the button and choose Properties>Actions>+>Get URL.
Enter mailto:joe@cool.com in the URL spot.
I just want the button to link to another page. How?
Right-click (Mac:Ctrl-click) on the button and choose Properties>Actions>+>Get URL.
Enter the HTML page in the URL spot.
Get documents about "