ActionScript 2.0 :: Calling SWF File To Load Into Its Own (Separate) Window

Dec 2, 2011

My code doesn't work.I use flash 8 (AS 2.0). When I click a button, I want it to load another flash file but not into the same parent/web page. I need the file to load in it's own window.
on (release) {
loadMovie("MyAccountPage.swf", "_blank");
}
After this, I still do not get a respond when I test run the script.

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Calling A Separate .swf File Within Another Swf?

May 23, 2010

I am trying to make a website that you can press a link in flash that opens up a external swf file within the same area but in a overlay effect... similar to lightbox image viewer.
 
I have linked in already with the requestURL function but that just opens in a browser window.

View 8 Replies

ActionScript 3.0 :: Calling A Function In A Separate .as File?

Nov 20, 2009

I have 1 .fla and 2 .as files. The first .as file is called documentClass and is the document class for the .fla. The second .as file is called tracePrac contains a function that traces a varible in tracePrac.as. I want to know how i call for this function in my documentClass.as code?

Code:
package {
import flash.display.MovieClip;

[code].....

View 2 Replies

Jpegs - Load Images So They Pop Up In A Separate Window To The Flash Movie?

Mar 10, 2009

how to load images so they pop up in a seperate window to the flash movie, to see what mean check out this site and click one of the images [URL]

View 4 Replies

ActionScript 2.0 :: While Posting Mail It Opens My Aspx File In A Separate Window

Aug 7, 2006

I have been using this function for a long time and this problem never occured. When the user press send button it does send the form as email but it also opens my aspx file in a seperate window.[code]...

View 3 Replies

ActionScript 2.0 :: Load Txt File From Separate Server To SWF?

Sep 8, 2011

I believe I am using AS2, I have cobbled some script together from the internet and it seems to be mostly working, but there is one issue I have.Okay here goes with my explanation. I have an SWF that loads a random quote from a txt file which is located on the same server as the SWF file. The quote has an 'a href' tag around the text so that when clicked it will load a URL. - This is all working fine! Here is the problem:I would like to use the same SWF file on a separate server (server 2), that then calls the quotes from to the txt file on server 1. I have added the complete path to the txt file, but when i run the SWF on server 2, it gives me an error. Here is the script I am using in the FLA file.

Code:
/****************************************
**Random Quotes Script*******************

[code].....

View 2 Replies

ActionScript 2.0 :: Add New Swf On Top Calling From Separate Xml Doc

Mar 9, 2010

I have a menu and when I click I want to add a new swf on top calling from a seperate xml doc. it seems to be calling the airplanes.swf underneath the first MC.any ideas why? Is it because I am using xml to populate the swf.[code]

View 3 Replies

Flex :: Load A Big Picture Or Swf File By Calling Loader.load() In Flex?

Nov 17, 2009

I get a ActionScript class for loading the content:

public class LoaderContainer extends Sprite {
public function LoaderExample() {
loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
addChild(loader);

[Code]...

View 1 Replies

ActionScript 3.0 :: Load External Swf File In A New Window?

Apr 6, 2009

I've got a few .swf files with video tutorials I've created using Captivate 4.I wanted to link them so I've created a main screen with menu with buttons in Flash.I've added AS to load the external swf files but they load in the same window. How can I load these .swf files in seperate window so that you could get back to the main window after you've finished watching?[code]...

View 8 Replies

ActionScript 1/2 :: Load A URL In .exe Flash File Without Popping Up In New Window?

Apr 1, 2010

I have developed a full screen .exe flash file in actionscript 2. It controls physical lights (e.g. turn on and off) by simply calling a URL for each action. However, I don't want the called URL's to open in front of the interface. Is there a way to call a hidden URL in flash?

View 3 Replies

ActionScript 2.0 :: Launch Another App In A Separate Window?

Aug 14, 2011

I want to launch another app, in a separate window - like Excel or something . I can predict a hard coded path to it - like "c:myappapp.exe".

View 2 Replies

ActionScript 3.0 :: Image Open In Separate Window?

Jan 12, 2010

I am a bit of a beginner to Flash and found a template online to use for my website. One issue I am having is that an image with a link is opening in the main window and I want it to open in a separate window. I am going to attach the code as it is now. Can someone tell me what I need to add or change to make the url link open in a separate window?

onClipEvent (load) {
imageProperties=_root.getCurrentImageName(0);
loadMovie(_root.url+imageProperties['name'], this.cont.pic);
loadMovie(_root.url+imageProperties['name'], this.cont.pic1);
url=imageProperties['linkToOpen'];
targetWindow = imageProperties['target'];
}

View 1 Replies

ActionScript 1/2 :: Image Open In Separate Window?

Jan 13, 2010

I am a bit of a beginner to Flash and found a template online to use for my website. One issue I am having is that an image with a link is opening in the main window and I want it to open in a separate window. I am going to attach the code as it is now. Can someone tell me what I need to add or change to make the url link open in a separate window? If you want to see the site and where the issue is, go to: http:[url]... and click on "main page" It is the "web" images that I am talking about. I really need them to open in a separate window when you click on the image. The action code is below:

 onClipEvent (load) {
imageProperties=_root.getCurrentImageName(0);
loadMovie(_root.url+imageProperties['name'], this.cont.pic);[code]....

View 34 Replies

ActionScript 3.0 :: Linking A Button With A New Separate Window

Jan 25, 2010

This post has been edited to clarify, so that should explain the answer above.I am sure this topic has been covered a million times, but for the life of me, I have been searching the internet for hours trying to find a simple solution to this problem. I am using Flash Cs4 with actionscript 3 and flash player 10 for publish settings. I have a button that I want to open a new webpage. When the button is pressed, I want the window to open so the user can see the original webpage they were on before, and I dont want the original webpage to close. In other words, I want to open a new webpage without closing the original webpage, and allow the user to see both webpages, at the same time doing away with the back button. Is this possible? Here is the script I am using. It is placed on a seperate layer called actions. :

addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
function mouseDownHandler(event:MouseEvent):void {
navigateToURL(new URLRequest("https://mycw3.eclinicalweb.com/cent/jsp/login.jsp"));
}

It does allow me to open the window seperately as long as I am testing the movie in Flash, but when I publish the movie and imbed in into a Dreamweaver Html document (Xhtml), you have to use the back button to go back to the original page. I know this might not be the best way to navigate but the person I am doing this page for wants it this way only.

View 5 Replies

Open Separate Browser Window And Pass Data?

Feb 22, 2010

I want to display some data in a separate browser window instead of using popupManager. How do i do that. Also i need to pass parameter to that window, based on that parameter, i ll call the service and get the required data and display that in the datagrid.

View 1 Replies

Data Integration :: Open Separate Window For Word, Xls And Pdf Documents?

Jan 30, 2008

How to link a PDF, word, & Excel file in fla by clicking a button? This should open a separate window for the document,with the swf file open in the background.

View 2 Replies

ActionScript 3.0 :: Control An External Movie In A Separate Browser Window?

Jul 31, 2008

i am creating a website for a band, with an mp3 player. i want to be able to make an mp3 player that pops up in a separate browser window. the mp3 player would have a "playlist" that can be dynamically changed from the main window, which gives a list of albums & tracks to choose from. the model for this is Rhapsody's web interface. so, how would i go about creating & dynamically changing the playlist (while music is playing) across multiple browser windows? the "playlist" would be an array of references to mp3s, i guess-- so is there a way to pass events & variables across the windows?

View 4 Replies

ActionScript 2.0 :: Movie Loads In A Separate Window Instead Of The The Main Timeline

Jun 21, 2003

I have a button that I want to have load a movie when pressed. It works, howerver, the movie loads in a separate window instead of the the main timeline where I would like it to. How can I correct this? Here's how I have it scripted now:

[Code]...

View 3 Replies

Actionscript 3 :: Flash - Calling A Function From A Class Within A Separate Class?

Feb 4, 2012

I've been searching around trying to work this out for a while now. There's been various ideas popping up, like dispatchEvent etc but nothing that seems to be a clear, simple way of doing this.What I'm trying to do is call a function from a class seperate (but in the same folder as) my document class.Specifically, I want to 'spawn' an object and run a function within that object's class from my Main.as.The snippet I have at the moment is as follows;

In Main.as:
var object:class_Object = new class_Object();
object.spawn();

[code].....

View 2 Replies

ActionScript 2.0 :: Script For Calling Up New Window?

May 12, 2009

Anyone know the script to call up a new flash window, then go to a specific scene and then go to a specific frame # in a movie clip. i made a website, and i want when you click on one of my thumbnails for it to open my other portfolio site i made and go to a specific scene/frame. i labeled the frames.

View 1 Replies

ActionScript 2.0 - Flash - Export From .fla File Symbol's (frames) To Separate File And Use It

Nov 17, 2011

I am very new to ActionScript. I have a .fla file which contains the AS2 code for the frames. What I need to do is that I have to export this code as a separate file. There may be a separate file(or class file) for each frame code. Is it possible to me do it automatically without losing animation interactivity and functionality? Or is there any other way?

View 1 Replies

ActionScript 2.0 :: Export Text From A Flash File Into A Separate File?

Mar 22, 2006

Is it possible to export text from a text field, which has been created in Flash and export it into an external file such as a text file or Word document?The idea is that information will be collected by the user into a text field within the swf. Hopefully, this information can then be exported into an external file which will allow the user to work on and edit at a later stage. It needs to be a separate editable document. Is this possible? I'm using Flash 8.

View 1 Replies

Flash :: (wmode=window) Disappears After Calling Facebook Dialog?

Sep 7, 2011

We are writing app for facebook. It's a game written in flash and embeded with wmode window.We get problem with Firefox 6, but only on Windows XP. When user invoke some facebook dialog (for example: pay dialog or buying more credits dialog) flash disappears. This same happens when user click on notifications (globe icon in top facebook menu) and hold it for a while (however this is not so important).After flash disappears it it still in DOM as <object>.

View 1 Replies

ActionScript 2.0 :: Calling A Mailto: Function - In IE It Is Opening A Blank Window Too With Outlook?

Aug 4, 2011

I am calling a mailto: function like this below:

ActionScript Code:
on (release) {
getURL("mailto:myEmail@mysite.com", "_blank");
}

Now problem is, in IE it is opening a blank window too with outlook.

View 4 Replies

Flash8 :: Load Image In Separate Swf?

Aug 15, 2009

i've been reading and searching all the related articles but still in the dard...i've 2 movies m1 and m2 - in m1 there are thumbnails and in m2 i need to open the zoomed view of appropriate thumbnail - both the movies are on same page but in different cells of a table.

View 2 Replies

ActionScript 2.0 :: Load Image Into Separate Swf?

Oct 15, 2007

I'm building a gallery on a website with lots of different size images. I've got all my buttons set out in one swf and placed on the page and I want to put a seperate swf on the page to display the images. The only problem is I can't work out the script to put on the button to open the image in the 2nd swf.

View 1 Replies

ActionScript 3.0 :: Combine Separate .AS File And .FLA File

Feb 23, 2010

I am wondering why is there a seperate as file in a zip I downloaded? There are the files slider.as and slider.fla. There is only one frame in the fla file and I was wondering if I can combine the fla and as file to make it work, since I will be combining it with another file. This is the Slider.as file:

[Code]....

View 2 Replies

ActionScript 3.0 :: Load Separate SWF And Transparent Background?

Jul 30, 2009

I am currently working on a flash site that loads external .swf files. Is there a way to make these separate swfs transparent by adding code to the .html as done in many other similiar circumstances with one swf? Or is there any kind of code I can add with an as file or inside a frame in flash?

View 0 Replies

ActionScript 3.0 :: Load Pics With XML And Add Separate URL Address

Apr 4, 2010

In my project I need to dynamically load (with an XML file) images (icons) into a flash cs3 file with as3. Every icon needs to have it's own URL. So far I succeeded in loading the icons into the file and adding the imageLoader an external link, but I can't seem to be able to figure out how to load every image into its own loader so that I can give
it separate url references. I also want to a hover effect on the images.

[Code]...

View 3 Replies

ActionScript 3.0 :: URLLoader Load Data In A Separate Thread?

Jul 14, 2009

I understand the Flash and AS3 is single-threaded, at least at the user level. I would like to understand how asynchronous data loading is handled by the Flash player.
 
For instance, if I run CPU-intensive code that runs beyond the normal frame (lets say it runs on ENTER_FRAME, and consumes 1/4 per call).  Does this leave any CPU cycles to load data from a URLLoader?
 
If http loading is truly synchronous, right down to handling the TCP/IP stack, one would get horrible performance. In Windows programming, I can do http access asynchronously (in which case the Windows libraries are doing either input on a separate thread, or doing hardware-level interrupts to handle the data -- I provide an asynchronous callback that may be on its own thread).  Or, I can do synchronous download, in which case there will be hardware buffering, but my application is actively waiting for each buffer of data to be delivered by the hardware/OS combination.
 
URLLoader is asynchronous, but what does that mean?  Does it mean that I can run the CPU and still download data?  Or, will my download speed slow to a crawl if my Flash application is under heavy CPU load? Understanding how this works will help me design my product better, which both uses a lot of CPU, and downloads a lot of data (to the bandwidth limit of the network, if possible).

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved