ActionScript 3.0 :: Trying To Open New Window Playing A FLV From Flash File
Feb 24, 2011
I have a swf embedded into a course and when a certain button is clicked, it needs to open a new blank window where it plays an FLV file with whatever width and height i specify.
View 1 Replies
Similar Posts:
Mar 6, 2004
1) how do you open a new window if you have thumbnail pics in the flash movie but want the full pic to open up in a new window? Is this Javascript inside flash?
2) How do they do the menu bar here at this site:[URL]
View 1 Replies
Jan 21, 2005
i have a standalone exe flash file which opens autorun from a cd, and i need to open a windows browser directly from that flash. i want it to open the htm without any toolbars or scroll.
View 1 Replies
Jan 21, 2005
i have a standalone exe flash file which opens autorun from a cd, and i need to open a windows browser directly from that flash. i want it to open the htm without any toolbars or scroll...
View 1 Replies
Jul 13, 2009
I work with 3d animation. Im have a problem with a personal website Im doing, I have a link in a button inside a flash movie to open a new window and play a youtube movie:
on (release) {
var jscommand:String = "window.open('http://www.youtube.com/v/b0L4XLODhAA&hl=en&fs=1&','win','height=344,width=4 25,toolbar=no,scrollbars=yes');"; getURL("javascript:" + jscommand + " void(0);");
}
This works fine in Firefox but in IE it doesnt work, I then change the /v/ in the youtube link with /p.swf?video_id= and now I have the window open showing the small youtube thumbnail of my video but once a click play, nothing happens, I check it and is not loading anything.
View 8 Replies
Jan 17, 2007
getting a PDF file to open in new browser window from Flash?For example:
Code:
getURL("test.pdf","_blank");
I have a client using IE7 on XP that says they see a brief popup that disappears before it is rendered. No error message is received.She is able to open a PDF from a plain html page
Code:
<a href="test.pdf" target="_blank">link</a>
Should I try converting getURL's to javascript calls?
View 2 Replies
Oct 13, 2009
I'm trying to create a page where you click on the video thumbnail and the video opens up in its own window. I'd like the video to open at a specific size that I determine, not the browser, and I want it to be scalable. Here is what I have so far as a test file[URL]
View 2 Replies
Sep 3, 2011
I have a button in a swf file. I would like that when the button is pressed a swf loads in another window (want to call a new swf in new window.).
I was trying something like:
MYBUTTON.addEventListener( MouseEvent.CLICK, MYBUTTON_link );
function MYBUTTON_link(e:MouseEvent):void
{
var urlRequest:URLRequest = new URLRequest("external.swf");
[Code].....
View 1 Replies
Mar 14, 2009
i want to open a SWF file to a button but in a completely new window however Im not talking web related i.e. not linking to a web page
like...
on (release) {
getUrl("www.blah.com")
}
whateva it is...don�t want that... I want it so it simply opens a completely new window within flash which I can close... the reason for this is I have a SWF file which is protected and i cant create a back button within it... so I need it to open a completely new window so i can get back to my main page..
View 1 Replies
Feb 28, 2010
I am trying to make a webpage in flash and I´m almost finished. However my problem is this: I have a page with 6 text links and when clicked I want them to open an html file in a new window. Here is the code
christian.addEventListener(MouseEvent.CLICK,onMouseClick);function onMouseClick(e:MouseEvent):void{ var request:URLRequest = new URLRequest("christian.html"); navigateToURL(request,"_blank");}
This works fine, but how to I code the 5 other pages?
[Code]...
View 1 Replies
Apr 30, 2009
I have a flash website at the moment which is my index.html file, i wish to open up a new window and launch a new swf file from this window ( the file will be a new dreamweaver page)[URL]the code i have at present in my main file is:
Code: Select all
images.onRelease = function () {
getURL("http://www.mydomain.com/images.html/", "_blank");
[code].....
View 1 Replies
Jun 1, 2007
I'm constructing an enhanced CD menu in Flash. I'm going to be including some desktop backgrounds that I would like people to be able to click on and then save the file from the CD to a location of their choice.
Is there a way to do this - access the files system as you would when you choose a file to upload but instead are choosing a location to save that file too? And then copy the file from a Cd location to this chosen loaction.
Or alternatively is there a way to just open a pop up file window in a certain location.
View 4 Replies
Oct 20, 2011
I am preparing a presentation DVD... DVD will contain wmv video, user manual and another flash exe file... So DVD interface will contain three elements; user manual, a flash exe file and video.. Flash video window will be short-time video, playing like 5-10 seconds then repeats itself... My question is, how could I accomplish to put video window playing certain amount of time then repeats itself, in main window? I need as3 fla example, which could be so useful for me..
View 1 Replies
Jan 13, 2011
I have attempted to have a hyperlink text using actionscript:
[Code]...
when I run the code it always creates a new window to open up the file in. I have even attempted to switch out _self with _top, _parent, and _blank, always with the same result. I simply want the file to open up in the same window.
View 2 Replies
Sep 13, 2011
have some ppsx files that I'm opening from a button on a fullscreen window. The first window opens fine, but if I go to open another ppsx file, it opens behind my fullscreen interface. Is there anything I can to do force it to open in front? I tried having _blank in there, but that just opens a browser window. this is what I have now (using greensock plugins, but my question is regarding the navigate to url area):
[Code]...
View 1 Replies
Nov 27, 2009
I would like to force a pdf to be saved to disc rather than opening in a browser window? I am actually executing the command in flash in a button instance like this
on (release) {
getURL("http://website.com/pdfs/pdf_document.pdf", "_blank", "GET");
}
So how can I do this so it gives the pop up window of save to disc option?
This may be an ASP.NET issue too?
View 0 Replies
Oct 30, 2009
i have a flash site that links to PDF's with the navigateToURL function which works etc But now i would like Link to rather open up a download window instead of just a new browser window?
View 3 Replies
Jul 27, 2009
I have a flash slide on my site. The slide has next and previous buttons to either move to the next slide or the previous slide. Each slide is only an image. When you click a particular image it takes you to the page specific to the image you clicked.
My issue is this: When you click the image, it opens the page in a new window. I would like to have the window open in the same window, but having issues figuring out how to do it.
The flash is controled by an image.xml script. I've added target= "_blank" to the xml, but the URLs are still opening in a seperate window. I didnt create the flash, is it possible the issues lies within the .fla file?
Below is a sample of images.xml
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<images>
<pic>
<image>imagesimage.jpg</image>
[Code].....
View 5 Replies
Nov 18, 2009
I'm trying to get the link to open in the same window instead of a new window, it's currently set to _blank. I tried _top, _self, _parent. When it's set to anything other than _blank the link doesn't work.
[Code]....
View 7 Replies
Feb 15, 2011
I'm running an online game site, and a few websites are really bad about embedding some of my games and stealing bandwidth.
To combat this, I replaced the original files with super-simple .swf files that redirected back to my own websites -- thus stealing back the traffic that they were stealing from me.
The problem came later when something changed with the new Flash player, and new windows no longer opened. For the life of me, I can't figure out how to get new windows to open. I've tried a few different approaches, but nothing appears to work.
So what I'm wondering is, can this even be done anymore -- where I can switch out a .swf that's being leeched with one that opens a window to my own site?
View 8 Replies
Aug 3, 2009
Looking for the simplest way to open a URL in a new window from Flash using AS3-CS3
View 3 Replies
Mar 12, 2007
i tryed to open new window in flash
how i can open new window
View 1 Replies
Apr 25, 2011
I am building a kiosk app in flash and need to open browser windows whenever there is a URL link. The problem is that when the browser window opens, the fullscreen flash becomes a resizable window and the user has to close the window and open the flash app again to make it full screen again. So i'm wondering if there's any way I can open a browser window within the flash app sort of like an iframe or lightbox pop up? I've heard of this Native Window thing but I'm not sure what that is.
View 1 Replies
Jul 16, 2010
I have a simple html splash page which when clicked goes to another html page with my flash object in it. When I click the first page the flash runs the whole animation and loops it continuosly. Id like it to just stop at fram 0 when it loads!
View 2 Replies
May 14, 2009
I use to use: getURL("main.html", "_self"); to forward after my intro to my main html, now flash CS4 says its not supported? I have been looking online...looks like the new script is: url request? I see parts of pieces of what I need, but I have yet to see the complete correct example. Can someone please post the script to forward my intro to my index page. I would like index to open in the same window (_self).
View 8 Replies
Sep 28, 2009
how do I open an swf in its own window outside the flash using button?
View 1 Replies
Jan 22, 2010
I wish to open a new browser window from Flash and when the new window closes to return to the location from whence I started.
View 1 Replies
Aug 25, 2011
So I have a button with the following AS:
on(release)
{
getURL("music.html");
[code].....
View 1 Replies
Oct 31, 2009
I am trying to open a new browser window from within my Flash app. To do this, I am using the line:[URL]..The problem is that when I test the code from in Flash CS4 nothing happens! It's like the line of code isn't there. But when I manually open the .html file which Flash CS4 generated that embeds my .swf, then the Flash app opens in my browser and promptly opens a new window to yahoo juat like it should, so it does not seem to be an AS3 syntax issue. I just got a new computer yesterday, with a fresh install of Flash CS4. I do not have this problem on my old computer. The old computer runs the code perfectly. Could there be some weird default security settings at work here in Flash CS4?
Does anyone have any experience with this sort of problem, or any clue what might be happening?
View 1 Replies
Oct 15, 2010
Is there a way to open a new window from Flash as a pop-up (i.e. a specific size without toolbars etc.). The new window needs to hold some flash movies in AS3 which arn't compatible with the AS2 parent movie.
View 3 Replies