Click to See Complete Forum and Search --> : Multiple links ?


cyberpatje
09-26-2003, 02:44 PM
Is there a possibillity of opening several pages in different frames, with a flashbutton(dreamweaver)

Jona
09-26-2003, 04:29 PM
In Flash code, you'd use getURL, I believe...


on (release) {
  getURL("http://sub.domain.com/dir/file.html","name_of_frame")
}


The part above that says "name_of_frame" should be changed to the target frame you want to load the document in. The document's location is in the first parameter (http://sub.domain.com/dir/file.html is the location of the file you want to load).

[J]ona