Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

GetURL Not Working?

Status
Not open for further replies.

hedidit

Technical User
Joined
Jul 21, 2005
Messages
142
Location
GB
Hi This is probably a stupid question, I've used GetURL before with no probs but now its refusing to work!

I've put a keyframe at the end of my movie and typed in the action:

Code:
getURl('javascript:window.location("Default.asp")')

Thing is my movie just hangs when it gets to that keyframe / action it doesn't forward to the address i provide... any ideas? What am I doing wrong?

Cheers
 
try:
Code:
getUR[COLOR=red]L[/color]('javascript:window.location("Default.asp")[COLOR=red];[/color]')[COLOR=red];[/color]
You missed out some semi colons, and a capital L on URL

Regards,

Martin

Computing Help And Info:
 
I've never tried that... Meaning window.location...

But make sure you use the proper caps (getURL), use the full url, and make sure the "D" of Default.asp is capitalize (or not) both in your movie, and in the actual file's name...

Code:
getURL('javascript:window.location("[URL unfurl="true"]http://www.yourDomain.com/Default.asp")');[/URL]

Maybe even add the "_self" window parameter...


Regards. Affiliate Program - Web Hosting - Web Design
After 25,000 posts, banned on FK, but proud not to have bowed down to them!
 
Is there any way to not use the full path?

Right now, we don't have our site live on a registered domain name so I'm browsing to it in test mode using an IP address. So, do I have to use an IP address now and a full path w/ the new domain name later??
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top