thread: Flash
View Single Post
  #1  
09-16-2001, 11:01 AM
Gluk Schmuck's Avatar
Gluk Schmuck
Not living with Max any more
 
: Jul 2001
: Sheffield, UK
: 2,874
Rep Power: 26
Gluk Schmuck  (11)
Flash

I love Macromedia...they sent me a "Macromedia Flash Jumpstart Kit" all the way from LA! aren't they kind...it's got lodsa cool stuff on the CD...if you've got Flash, i advise you get it...

oh...back to the reason i made this topic in the 1st place...
is anyone here good at Flash? cos i'm quite good, but i'm having a little problem with fscommand...

here's what i've got on my homepage:
:
{script langauge="javascript"}
{ !--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

function launch_DoFSCommand(command, args) {
  var launchObj = InternetExplorer ? launch : document.launch;
    if (command == "popup") {
      url="pop.html";
      width=520;
      height=330;
      windowprops = "width="+width+",height="+height;
      OddS = window.open(url, "OddS", windowprops);
    }
}

//--}
{/script}
change the "{"s and "}"s into angle brackets...

and i've got this as an action for a button:
:
on (release) {
    fscommand ("popup", "0");
}
what's suppost to happen is a browser window should popup, but it dosen't...

please help me...

[ September 16, 2001: Message edited by: Gluk Schmuck ]
Reply With Quote