TwelvestoneFlash

Mac hyperlink double pop up problem


Sign in

  • Waiting for Godot ( 730 k posts )
    Just conversation.
  • Thunder Dome ( 23 k posts )
    Photoshop Tennis and Collabs.
  • Photography ( 5.1 k posts )
    For all you shutterbugs, sh...
  • Flash ( 18 k posts )
    ActionScripting to tweens, ...
  • Front End ( 5.9 k posts )
    general front end design an...
  • Back End ( 9.7 k posts )
    serverside scripting, progr...
  • Projects and Theory ( 12 k posts )
    This forum is for discussio...
  • FAQ ( 269 posts )
    All those nagging questions...
  • Design ( 17 k posts )
    graphics & all aspects of g...
  • Purgatory ( 3.6 k posts )
    12stone Jail, feel free to ...
WebMinx
 
2003-01-28

I'm having an issue with Mac and a standard hyperlink. The link is to an audio file. When you click on the link it opens a blank window, which is fine but then it opens a second window and plays the audio in that one.

Why???? :confused:

garyalfred
 
2003-01-28

Ghost in the Machine?

Post the source.. lez see if we can help.

WebMinx
 
2003-01-28

Just the basic code...

on (release) {

  getURL("hart_audio_1.mov", "_blank");

}

garyalfred
 
2003-01-28

Im gathering you are getting the double window problem from either your test environment or a published executable. The problem is that get URL is FIRST going to open a browser to execute the command in. It is THEN going to pass it a request. The request you are sending it is calleng for a new window (named blank) so the second window is popping. Change _blank to _self and see if that fixes it.

If you truly want it to pop a new window for the movie.. leave it as it is.. Once the SWF is embedded into a web page it will work correctly.

WebMinx
 
2003-01-28

It's an audio file so the client insists that it open another window and play. The client hates that it opens 2 windows.

Is there anyway around using getURL? Some other code maybe?

garyalfred
 
2003-01-28

You could import the MOV into its own Flash SWF and pop that.. Otherwise Im at a loss.

WebMinx
 
2003-01-28

That sounds good. How would I do that?

garyalfred
 
2003-01-28

import or import to library.. and then select your movie

WebMinx
 
2003-01-29

Wouldn't it get rid of your QuickTime audio controls?

garyalfred
 
2003-01-29

yes you would need to script them in flash.. using flash controls.

WebMinx
 
2003-01-29

I understand the "request I'm are sending " through my actionscript but why do you think it's only happening on the Mac? Just curious.

garyalfred
 
2003-01-29

no clue.. I am only a sporadic mac user.

Sorry, you must be a member to post to a conversation. Either log in or sign up to get involved.
TwelvestoneFlash

Mac hyperlink double pop up problem