Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Simple Add Target="_blank" To This One Please.



Hi all,

A simple one,
I use xml to have a dynamic text and link it to whatever.com,
I need it to open in a _blank window for obvious reasons.

all i need is to add target="_blank"

but it doesnt work...

the code line is:

news += "<font color='#ffff00' size='8' face = 'standard 07_65'><a href=' " +articles[i].source_one_url+ articles[i].link + "'>" + articles[i].headline + "</font></a><br>";

Thank you



FlashKit > Flash Help > Flash Newbies
Posted on: 10-08-2002, 03:24 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Target _blank
How do i do this? I have some links on my site but i don't know the actionscript to open the links in new windows...

I know how to do with textbuttons, but not with other buttons, and it's really starting to irritate me!

Target _blank?
I have a flash file (that's online) that contains a button. When clicked, I would like this button to open another website in a new window.

This is the code that the button has now:

on (release) {
getURL("http://www.darkmotions.co.uk");
_blank;
}

I'm pretty sure it's wrong, so if someone could tell me how to do this properly, I'd appreciate it.
Thanks!

Target=_blank
I am working with flash 5.

How can I please add target=_blank to my link?

Thanks.

XML Target=_blank
Hi,
Im having trouble adding a target=_blank to my xml.
I have a flashfile which loads in jpgs via an xml file. I made a button with a dynamic textfield inside which loads in the url via the same xml file.
So far so good.
Now I want the url to open in a new window. I've tried altering the fla
Code:

gotourl.onRelease = function() {
   get_url("_blank");
}
i've tried several things in the xml. like
Code:

<target>_blank</target>

This is part of the xml code so far:

Code:

<images>
    <pic>
        <image>http://www.gotoandflash.com/xavier/1.jpg</image>
      <description>Voorbeeld 1,'n meisje</description>
      <description2>http://www.google.com</description2>
      <url>http://www.google.com</url>
      
      
      
    </pic>

Does someone know the answer? I would very much appreciate it,
Thanks,
Marieke

XML Link For Target=_blank
OK I am using a file I found on Flashkit. Loading in a bunch of links using an XML file. There is no getURL function in the Flash file. All the script is in the xml file. I can not figure out how to get the link when clicked to load into a new window. It keeps replacing the current site which I do not want...any help would be appreciated. This is what the code in the xml file looks like

Anyone have any ideas??

Thanks in advance!!

lisa

<database>
<object header="lisaraymond.com">
<link>http://www.lisaraymond.com</link>
</object>
</database>

TARGET=”_BLANK” In Flash Text Box
When creating a HTML text box within a Flash movie, is it possible use a:

TARGET=”_blank”

tag. I’ve tried using:

<A HREF=”http://myprecious.co.uk” TARGET=”_blank”><B>MYPRECIOUS.CO.UK</B></A>

But unfortunately it just comes up with a load of errors.

Please for the love of...relieve my headache, tell me there is a way!!

Xp _blank Target Link Problem
Hi all
when i link a flash button to an external file (like a .zip or .rar file) using GetURL action and the _blank target everything seems ok when using windows 2000 professional
Instead when i click on the same button using windows xp another browser page opens up and close immediately without giving any option to download or save the file...it's like xp recognizes this zip or rar files are potentially harmful and blocks them...
Is there any way i can solve this issue?
please help and thank you

Using Url= And _blank Target For Dynamic Urls
I'm working on a dynamic flash file and want to have a window open, but the command as it stands now is:


Quote:




onClipEvent (load) {
loadMovie("flashpreview/images/1.jpg", this.cont.cont1);
url=_root.url7;
}




I don't know where to have the command for "_blank" go!!!

Target _blank Pop Up From Static Text Field?
For reasons of alignment and easy editing, I'd like to use a static text field for a block of text that contains URLs, rather than a dynamic field with HTML.

It seems that I cannot target a blank pop up window from this configuration. Is this correct? Is there a work around? JavaScript?

Thanks in advance for your help.

Jason

Dynamic Scrolling Text <target=_blank>
Anybody out there got the answer to this problem:

I'm working with a text scroller which doesn't recognise a popup window command within the dynamic text. It always opens the target page within the same browser window.

Here is the code that I've added to the required link:
<a href="my.html"><font color ="#0033CC" target ="_blank">

Using Target _blank Generates Firefox Pop Up Blocker
I've some html formatted text that is loaded from an xml file into flash. My problem is that an html link with the target="_blank" activates the firefox pop up blocker.

<link>
<![CDATA[<a href='http://www.myurlhere.org' target='_blank'>www.myurlhere.org</a>]]>
</link>

I tried a solution from flashloaded that recommended using the asfunction as below:

this on my fla timeline:

function openLink(url_str) {
getURL(url_str, "_blank");
}

this in the xml

<link>
<![CDATA[<a href='asfunction:_root.openLink,http://www.myurlhere.org'>www.myurlhere.org</a>
</link>

this still activates the firefox pop up blocker

I would welcome any ideas/solutions
thanks

How To Do A "target = _blank" In Flash Launch Link
I am trying to make a link in my flash movie open up a new browser window to show the link in a new page. How do I do this? Thanks...

GetURL Target="_blank" Gets Blocked In IE
Recently IE have introduced a policy where it will block any new window that obscures the address bar. So if you use a javascript command to open an onclick pop up, it will be blocked unless you position the new window below the address bar.

It seems also that in Flash any getURL function with a target="_blank" is treated as a pop up window, and must also be position to comply with the above.

Since the getURL function is the main way of opening external links from a flash movie, i would have thought that a lot of people will be having to re-write their links to comply with this new IE policy.

Is anyone else finding this a massive pain? What do people think about this?

Target="_blank" (in XML)
Hi there!... NEED SOME HELP!

I have this lines of code which works fine, the problem I found is that when you click the word coming from the XML contained in the childnode "articles[0].contactinfo_var07" the browser opens the link on the same window and I need to open a blank page where the link should show up!

WHERE SOULD I ADD THE ..... target="_blank" ..... ????

_root.web_field = "<a href='"+articles[0].contactinfo_web+"'>"+articles[0].contactinfo_var07+"</a>";

Target="_blank" (in XML)
Hi there!... NEED SOME HELP!

I have this lines of code which works fine, the problem I found is that when you click the word coming from the XML contained in the childnode "articles[0].contactinfo_var07" the browser opens the link on the same window and I need to open a blank page where the link should show up!

WHERE SOULD I ADD THE ..... target="_blank" ..... ????

_root.web_field = "<a href='"+articles[0].contactinfo_web+"'>"+articles[0].contactinfo_var07+"</a>";

Simple Tell Target
Im trying to do a simple tell target ive went to create new instance movie clip and made a simple mc of a ball tween.Nothing out of the ordinary I just want to get the basics on how to do this.I created two buttons one for stop one for play simple rite. I go to the main stage drag the mc out of the libuary onto the stage and the two buttons. And apply these actions to the button(as below).When I test it I get it doesnt work error.
I mean the movie works the ball goes accross the screen in a loop but the buttons dont stop it ( this error on the press of iether button.

Target not found: Target="mc" Base="_level0.instance2"

Im only new to this so obviosly ive gone wrong can somebody piont out to me how to do it.Any kind of example is good long as it works or a tutorial??Its not for a site or anything im just trying to learn the basics.

//PLAY BUTTON ACTION

onClipEvent (load) {
tellTarget ("mc") {
play ();
}
}

//STOP BUTTON

on (release) {
tellTarget ("mc") {
stop ();
}
}

Tell Target Simple Help
Ok I have a simple (Sorta) Chatroom setup. Well I want it to be moderatable. So here's what I need. I want every user to be able to log in without a password except me. I want it to be set so the name SteveJay needs a password. I want it setup so that when the login name Stevejay comes in it take me to the frame "password" here's what i got

on (release, keyPress "<ENTER>") {
if(userID == "" || userID == undefined) {
userID = "guest";
}
if(userID == "SteveJay") {
gotoAndPlay("password");
}
gotoAndStop("connecting");
connect();
}

Now I'm pretty sure I messed up with the if section but can someone tell me how to fix it. Also as an op I want to be able to disconnect certain users by clicking a button. and i want to be able to make them quit sending stuff to the XMLsocket. Any Ideas on those either?

Simple Tell Target Problem
Hello

I've created a button on frame one at root level. When I "roll over" the button it plays movieclip (1) when I "roll out" of the button it's supposed to play movieclip (2). Which plays a blank movie about 20 frames then tells movieclip (1) to move to a certain frame. (Hence giving it a delayed reaction)

MC1 = bjthedj
MC2 = blanker1
both are at root level

When I telltarget movieclip (2) to goto frame 2 and play it comes up with the following message when I test the movie.

Target not found: Target="bjthedj" Base="_level0.blanker1"

what am I doing wrong? is there any other way to make a movie clip stand still for about 20 frames and then continue?

Simple Target Question
Is it possible to go up a level (with targeting) when your using the dot syntax? as it is when you use the forward slash syntax? (such as "../")

thanks.

phil.

Simple Target Question
hi there,

Please some advice 'couse I cant get this to work.
I try to duplicate an MC and change a dynamic textfield in every duplicate.......but I cant target the textfield for @#$%sake.

thanx alot

code

for (i=1;i<=4;i++){
path = "thing"+i;
trace (path);
duplicateMovieClip(thing,"thing"+i,i);
setProperty("thing"+i,_x,300); //works
setProperty("thing"+i,_y,75*i); //works
_root.eval(path).textfield = "sample text" // <--
}

Simple Tell Target Problem, Please Help
Gang,

I need help with this.....I am trying to have one movie tell target another movie. But i keep getting this error.

Target not found: Target="_root.bluetooth" Base="_level0.els"


Could someone please help me troubleshoot this file. THe zip is available here:


http://www.voodoozoo.com/ex.zip

I know it may seem simple but i cannot figure out why the movieclip wont teltarget the other.

thanks!

Simple Target Question
excuse my ignorance but all I'm trying to figure out is what is the ".1" targeting in the following:

setProperty("_root.button1.1", _yscale, "100");

I assume it is a layer? I've looked in books, etc. and can't find it.

thanks, b_briggs

Simple Target Question
How can I make this work with dot targeting:

tellTarget (year+month+"/dmc"+day) {
gotoAndStop("start");
}

Simple GetURL With Target
Hi,

I have the following code:
Code:
on(press){
getURL("http://www.flickr.com/photos/caillouette/sets/");
}
I want to ad the following: target="_blank"
But it seems to make my code not valid. any ideas?

Thanks

Simple (?) Target Question... Maybe?
I reckon this is probably a really easy question, but I just can't do it and don't really know what to search for (shrug). I've attached a simplified .fla to illustrate the issue.

On the main timeline in my movie I have nav buttons, an MC called "Pages" containing a few individual pages, and an animation of a door positioned off the stage.

I want to click the nav buttons and target the pages, but I want to use the door as a transition.

So, let's say the user is on page1, and they click page2. I want the door to slide onto the stage covering up the page info (page1), and when the door slides back off the stage it reveals the new page info (page2... or which ever button was pressed). I don't want the page info to switch while visible, so the door must be shut first.

Hope that makes sense. Cheers

Target Path...simple ?
say i have a main swf. and i have an external swf called music.swf with an animation on frame 2.

how can i access frame 2 on music.swf from the main timeline?

ive tried a few things and they dont work so im lost...

Simple Target Path Question.
I'm new to actionscript and a little confused:


I have a named instance of a mc (techMovie) on my stage which is hidden behind other "interface graphics." I want this mc to move from hiding to a visible portion of the stage by having a button attached with actionscript cause the mc's playhead to goToAndPlay another frame in which I have set up a motion tween that will cause the mc to move. Let me note that this resides within a scene labeled, "AutoSync." Also, the actual mc has a layer of actionscripting with stop() actions on both the 1st and 10th frames (labeled "Hidden" and "Down".)
Here is the actionscript that I attached to the button to make the mc "move."

on (release) }
_root.AutoSync.techMovie.goToAndPlay("Down");
}


Any help would be greatly appriciated.

Thanks

Simple Target Path Question
Simple question...

In movie I have scene A, B, C.
I have a movie clip in scene B that when it gets to the end I wnat to play frame 180 in scene B.
How to I write the path to target frame 108 in scene B from a movie clip in scene B

where can I learn more about target paths? how to designate a movie/scene/movieClip/frame/level/etc?

Thanks for your help!

Simple Question With Target Movieclips
im having a brain fart....

I can't remember how to tell multiple instances of a movie clip all to do a function.

Ive named 15 or so instances of a movieclip "fade", and i have some code on a button that does this:

Code:
on (release) {
_root.fade.dothaFunction(0);
}


dothaFunction(0) is obvioulsy a function i have defined earlier in my movie.

My problem is that only 1 instance of the movieclips i dragged on stage is reacting to this code, although they are all named "fade".
I thought I would outsmart flash, naming every movie clip that i wanted dothaFunction() to effect the same name, but flash has outwitted me again! alas, im having a brain fart.
(helppleaseimpullinghairouttryingtoremember)

Movie Target (simple) Problem
I'm trying to integrate a simple slider puzzle game into a flash site.
The original code works fine as one frame on the root time line.
My frustration (sleep deprevation isn't helping) is that I lose the working integrity of the script when loading the code in a sub movie. The pieces initialize fine. But nothing moves when I click.
So I'm sure this is a movie targeting issue but I'm just missing it.

Hopefully another set of eye ballz can quickly spot what I don't see.

There are just two blocks of code.
One on the first frame of the movie. :


ActionScript Code:
if (!initialized) {    Initialize();    initialized = true;}function PieceX(col){    return xBase + col * xSpace;}function PieceY(row){    return yBase + row * ySpace;}// Subroutine Initialize// Puzzle Initialization Codefunction Initialize(){    Congratulations.stop();    // Set dimensions of game grid    numRows = 3;    numCols = 3;    numCells = numRows*numCols;    xBase  = p0._x;    yBase  = p0._y;    xSpace = p0._width * 1.025;    ySpace = p0._height * 1.025;    // Create pieces    var c = 1;    var r = 0;    for (var i=1; i<numCells-1; i++) {        var name = "p" + i;        var newPiece = eval(name);        newPiece._x = PieceX(c);        newPiece._y = PieceY(r);        newPiece.PieceNumber = i+1;        if (++c >= numCols) {            c = 0;            r++;        }    }    // Set initial positions of each cell, including empty space    posArray = [];    for (i=0; i<numCells-1; i++) {        posArray[i] = i;    }    empty = numCells-1;}// Subroutine Winner// Tests whether the current piece positions is a winning position (that is, every piece in sequence)function isWinner(){    for (var i = 0; i<numCells-1; i++) {        if (posArray[i] != i) {            return false;        }    }    return true;}// Subroutine Click// Puzzle click handler.When a piece is clicked, determine if it is adjacent to the empty space.  if it is, move it into the empty space.// Check if this is a winnerfunction Click(clicked){    clicked--;    if (isWinner()) {        // Start a new game        shuffle();        // Get rid of the congratulations message        Congratulations.gotoAndStop(1);    } else {        // Get the position of the clicked piece        pos = posArray[clicked];        // Get row, column of empty spot        emptyRow = Math.floor(empty/numCols);        emptyCol = empty-emptyRow*numCols;        // Get row, column of clicked piece        clickedRow = Math.floor(pos/numCols);        clickedCol = pos-clickedRow*numCols;        // Test adjacency        // adjacent(i, j) = i is above j or i is below j, or i is left of j or i is right of j        rowDiff = Math.abs(clickedRow-emptyRow);        colDiff = Math.abs(clickedCol-emptyCol);        adjacent = (rowDiff+colDiff) == 1;        if (adjacent) {            // Move the movie clip for the piece            var piece = eval("/p" + clicked);            piece._x = PieceX(emptyCol);            piece._y = PieceY(emptyRow);            // Swap the clicked piece with the empty space            posArray[clicked] = empty;            empty = pos;            // If this is a winner, start the winning movie clip            if (isWinner()) {                Congratulations.play();            }        }    }}function Shuffle(){    // We want to arrange the cells in a random    // order.  We do this by generating a random    // number r(i) for each cell i, and sorting    // the pairs (i, r(i)) using r(i) as the key.    // Comparison function for the sort    var cf = function (x, y) {        if (x[1] < y[1]) {            return -1;        } else if (x[1] > y[1]) {            return 1;        } else {            return 0;        }    }    var i;    var cell = [];    for (i=0; i<numCells; i++) {        cell.push([i, Math.random()]);    }    cell.sort(cf);    // We've sorted the ordered pairs...    // Now position the pieces according    // to the new order.    var r = 0, c = 0;    for (i=0; i<numCells; i++) {        var piece = cell[i][0];        if (piece == numCells-1) {            empty = i;        } else {            posArray[piece] = i;            var p = eval("/p" + piece);            p._x = PieceX(c);            p._y = PieceY(r);        }        if (++c >= numCols) {            c = 0;            r++;        }    }}


And the other assigned to each button (sliding puzzle piece.)


ActionScript Code:
onClipEvent (mouseDown) {    if (hitTest(_root._xmouse, _root._ymouse, false)) {        var MovNum = Number(substring(this._name, 2, 1))+1;        _root.Click(MovNum);    }}


I've named the instance of the sub movie containing this code and buttons "game." I thought the following change to the code would work.... but no.


ActionScript Code:
onClipEvent (mouseDown) {    if (hitTest(_root.game._xmouse, _root.game._ymouse, false)) {        var MovNum = Number(substring(this._name, 2, 1))+1;        _root.game.Click(MovNum);    }}



thanks for the help

Simple Help Needed, Changing A Tell Target To Flash MX
Could someone help me out and change the following actionscript from the old Flash to Flash MX actionscript?

on (rollOver) {
tellTarget ("thumbs") {
prevFrame();
}

Thanks to anyone who can help!

Conditional Statement + Tell Target Issue (probably Simple)
hi there chaps, i'm a newbie to the site, looking for a little enlightenment.
i have button actions (like a home button) which control a movie clip, except i want the movie clip to play from different points on the timeline within the movie clip based on the this movie clips current frame reference #, i'm sure this is a farely simple if/else statement, but i can't figure out how to base its conditions on a frame # within the movie clip.

any advice would be great, as i'm not too versed in actionscript, yet.

thanks

Conditional Statement + Tell Target Issue (probably Simple)
hi there chaps, i'm a newbie to the site, looking for a little enlightenment.
i have button actions (like a home button) which control a movie clip, except i want the movie clip to play from different points on the timeline within the movie clip based on the this movie clips current frame reference #, i'm sure this is a farely simple if/else statement, but i can't figure out how to base its conditions on a frame # within the movie clip.

any advice would be great, as i'm not too versed in actionscript, yet.

thanks

Get Different Url's In The Same _blank
I've got several links (other people's) on my webpage that I'd like Flash to open, but when I put the geturl _blank it opens up a new browser window for every webpage, when I want them all to open in the same one (not mine, but a secondary page where all of the links open).
Is it possible to do? I don't really understand the _parent and _top pages, maybe it's got to do with that? Or a an applet that I need?
Plase help!
Thank you so much!

_blank
With this line of script

onClipEvent (load) {
url=_root.url28;
}

&url28=http://www.msn.com - this is the page to be displayed


What needs to be done to redirect the URL to blank?

Please email any help to kevin@act-li.com. Thanks.








Attach Code

onClipEvent (load) {
url=_root.url28;
}

_blank + Resolution
hey guys...
I have this buttom on my flash frame...on click or down... i need it to open a flash movie (_blank) at a specific size of like 788 X 420 pixels....is this possible? Please help me

Pop Up From A Pop Up _blank? Old Question
my pop up wont work from another po up. my index page opens my site in a pop up window but in my web site i have two links that open their own pop up. the problem is that they open the object page in _blank and then the new pop up opens in my original web site pop up instead of their own new window. my code is
---------------
on (release) {
getURL("javascript:NewWindow=window.open('http://www.mywebsite.com/mypage.htm','newwindow','width=511,height=455,left =0px,top=0,scrollbars=yes,resizable=no');NewWindow .focus();void(0);", "_self");
}
--------------
this is an old question but i've had some beers and my patience is running low. can any one help?
if you need i'll give you an example link

JavaScript Vs. _blank . . . Arg
From one flash file, I want to open a new window
and play another file. I have had success with using

on(release){
gerURL("new.html","_blank")
}

But I'm not able to define the size of the new html window. I want my html page to be the approx. same size as my flash file.

I have also tried using javaScript. But the code is not working, and I've heard that javaScript can be problematic. I've tried two commands.

on(release){
getURL("javascriptpenNewWindow('new.html','thewi n50','height=560,width=410,toolbar=no,scrollbars=n o') ");
}

and I've tried this from http://flash-db.com/PopUp/

on(release){
getURL("javascript:NewWindow=window.open("new.html ;,'newWin','width=565,height=415,left=0,top=0,tool bar=No,location=No,scrollbars=No,status=No,resizab le=No,fullscreen=No'); NewWindow.focus();void();");
}

I know this is ridiculous to have to examine this code. But is there something I'm missing. For example. Do I need to put "http://www.mydomain.com/new.html" in the javascript.
Or can I use the shortened wersion because it's in the same registery in my FTP. Does anyone know if javascript works better on Flash 5 publish settings. Etc. if anyone can help me out I would be grateful.

Thanks,
Shotbot

LoadMovie In A _blank?
hi... short version first:
can i use loadMovie to target an swf in another window (not another frame, another window...) if so, how would i script it? if not, detail of what i'm trying to do follows.

im making several sets of image-gallery type deals, where rollover shows thumbnail and press opens fullsize image in new window. each set has many (200+) mcs; i'm making them with script and loading jpegs into them, then making an equal number of "button" mcs that make them visible or start the transition, whatever, on rollover and onpress open a new window with the mc name + ".html". all is well and good and the whole thing is like 30 lines long, and i dont have to do any work at all except.... the html files...

example

Code:
for (var i = 1; i<=200; i++) {
this.createEmptyMovieClip("img"+i, i);
loadMovie("im"+i+".jpg", _root["img"+i]);
this.createEmptyMovieClip("btn"+i, i+200);
with (this["btn"+i]) {
lineStyle(0, 0x000000);
beginFill(0x00000);
lineTo(100, 0);
lineTo(100, 10);
lineTo(0, 10);
lineTo(0, 0);
endFill();
z = i;
_y = i*10;
}
}
onEnterFrame = function () {
for (var k = 1; k<=200; k++) {
_root["btn"+k].onRollOver = function() {
_root["img"+z]._visible = true;
};
_root["btn"+k].onRollOut = function() {
_root["img"+z]._visible = false;
};
_root["btn"+k].onPress = function() {
getURL("page"+z+".html", _blank);
};
}
};
that probably doesn't work but to get the point across... how can i avoid creating all those html docs?

my initial thought was to have one swf file or html doc, and use loadMovie instead of getURL, so that the image in the _blank window changes.

tyia.

_blank On Rollover
ok, i dont know what im doing wrong, but when i do a rollover button, and try to make a popup out of it, using actionscript:

when u do the getURL{ thing, n i type the link, lets even say www.flashkit.com... it gives me the actionscript..

in preview it doesnt seem to work


fission



ps: also how would u make an email link in url? URL: MAILTO:ME@ME.COM ? and open _blank? or _self?

_blank To A Button
How do you set the target to _blank on a button?

Opening New Windows With _blank
Has anyone heard of a reason why a new window would NOT open when using the actionscript
getURL("http://www.flashkit.com", "_blank", "GET");

I've just made a small login section in which a button opens a .cfm script in a new window. Works fine on my machine, but a friend just called saying when she clicks, it loads the .cfm in the SAME window....

Any ideas?

Get Url(_blank W/ Fixed Dimensions - HOW?
LIKE IN DREAMWEAVER YOU CAN ASSIGN BEHAVIORS TO LINKS HOW IS IT DONE WITH FLASH

id like to do several on one page(swf)
how do you seperate multiple javascript entries

-action script-

on (release) {
getURL("javascript:popup();");
}

-on html page-

<SCRIPT LANGUAGE="JavaScript">
function popup() {
window.open('teaser_brett.htm','darrell','toolbar= no,location=no,directories=no,status=no,menubar=no ,scrollbars=no,resizable=no,width=350,height=255,l eft=100,top=100');
}:confused:

_blank HTML Page
How do I specify the size of a new browser window from Flash please?

'_blank' Window Settings
Hey,

You know how in Dreamweaver, you can open a URL in a new browser window, and you can set a bunch of setting for it? Like, no scrollbars, X/Y size, no menubar, no navigation buttons ect...

Is there a way to control such things for a new window that will be launched when using
'getURL("www.com", _BLANK)'?

Get Url _blank Size (no Pop Up Java)
Hi all,

I'm trying to popop a new window within flash from another server. The pop op java script doesn't work here. How do I assign the browser size in the html?

In the flash file I use the command: get url _blank
It pop's up a window with scrollbars and everything. I don't want that. Is there a way to give this new window a difined size with no scrollbars, no resize and no menu?

Thanx,

Blackdoor

CODE To Open _blank ?
I have a .txt file that I'm pulling into a dynamic text box in Flash MX. Right now my code in my .txt file reads like the below. How do I need to alter this so my link opens in a _blank document?

<font color="#006633"><A HREF="http://signup.crcwis.com"><u>Refer a friend!</U></A></u></font><BR><BR>


thank you!

Link Back _blank
on (release) {
getURL("my movie.swf", "_blank");
}

I have a button in my movie.swf_blank that pops up. How do I code this button to link back to my main movie

Opening _blank Page
Hello,
I have a flash movie which I want you have a button which opens up an HTML page that is sized to certain specs. This code snippet works in another Web site.

On the site I am currently editing when I click on the button the IE explorer bar wants to block the pop up -- I have pop up blocking OFF. This site is an LMS/CMS (Content Management System) on another server.

I basically have a server (not mine) which I have access to. I have a mini Web site there. On that Web site there is a frame which opens up my swf -- which is on my server. The html file I want to open in a blank is on my server too. It will not open through.

Here is the code:

on (release) {
getURL("javascript:NewWindow=window.open('quiz_tes t.html','myWindow','width=550,height=500,left=20,t op=20,toolbar=No,location=No,scrollbars=No,status= No,resizable=No,fullscreen=No'); NewWindow.focus(); void(0);");
}




Any ideas?


Odisey

Copyright © 2005-08 www.BigResource.com, All rights reserved