Flash :: Launch AIR App In Secondary Monitor?
Sep 16, 2011
Is there a mechanism by which an AIR application can manually display in whichever monitor I choose? I can look at the display list in Screen.screens, but I'm unclear on how to actually force the drawing of the app into one of those.
View 1 Replies
Similar Posts:
Jan 15, 2006
So I read through Kirupa's XML/Flash thumbnail gallery tutorial and have since modified some of its actionscripting to display my online design portfolio. How do I make it so that 'LAUNCH PROJECT' is a link? Here is the modified Actionscripting (I have one of each for the 3 sections):
Code:
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;[code]....
As you can see at the bottom of the actionscript, I added a gotoURL action, hoping that simply by making <launch> read <launch action="gotoURL" variables="http:url...> that it would become a link. I, however, have had no such luck. Perhaps I have to add something more. How do I make it so that <launch></launch> has the ability to link to an URL?
View 2 Replies
Jul 26, 2011
I have a main flash movie, that launches an external swf. Now this works fine, but this external SWF, launches more external mini SWFs. What happens is that after going opening and closing these mini swfs, is that eventually the main swf, will start to to run beneath the the 1st external swf. i.e. I have a small animation that is suppose to stop and remain invisible until the secondary swf is closed.
But this is not the case, and very randomly this will start to happen, and it makes everything look like crap. At first I thought it was the fonts that I was using through out the swfs, because there were some design changes, but after updating the SWFs with the new embedded font I am still running into this issue.
Look at it like this.
main swf---->2nd swf--->numerous 3rd swfs
View 4 Replies
Apr 4, 2011
I need to make a video page. i used a flash player and implemented the videos on the pages. now my client needs that, the same page have to work with ipads, i know that we have to use html5 video player for that.
My question is in case eventhough html5 video supportable player available that should play the flash content first. in case it will not run the flash player then it should run the html5.
View 2 Replies
May 28, 2010
I have three Class files: Main, Sub, XMLLoad.
XMLLoad is a simple XML loader Class.
Main calls the XMLLoad.
Main also loads Sub as a navigation.
I want to access the xmlData that XMLLoad loads. How do I go about that?
Code: Select allpublic function Main()[code].........
View 11 Replies
May 27, 2009
I recently installed a new 23 inch Samsung monitor and since then, I get all these lines accros my Flash interface and can't seem to find how to restore the screen. I am attaching a screen shot of the flash interface.
[Code]....
View 7 Replies
Dec 20, 2010
Everything was going fine on a website project I've been working on, until yesterday. I'll try to explain the whole scenario first, and I'll put the code in here too so anyone can try to figure out what is wrong. Here's the breakdown of the site:
1) There is a MAIN SWF file that plays an intro and then stops on the last frame with the "Main" Navigation buttons.
2) Inside the Root folder where the MAIN SWF resides, there is another folder called "swfs" which contains six main external navigation pages, as well as another folder called "galleries" which contains additional external swf files for six gallery pages.
3) On one of the layers of the MAIN SWF, there is a movie clip called "mySWFLoadingClip" that the "Main" Navigation buttons load and unload the main swf pages onto. These all work perfectly. The problem start on the next step. This is the code I used for the navigation buttons on the MAIN SWF timeline:
var Xpos:Number = 0.0;
var Ypos:Number = 0.0;
var swf:MovieClip;
var loader:Loader = new Loader();
var defaultSWF:URLRequest = new URLRequest("swfs/home_page_swf.swf");
[Code] .....
4) One of the external navigation SWF pages is called "portfolio_page_swf" and gets loaded into the "mySWFLoadingClip" moveclip on the MAIN SWF. This is where the problem begins. The "portfolio_page_swf" has six buttons that call out to an additional external swf from the galleries folder. Now when I open the "portfolio_page_swf" file to test out if the buttons work, they work perfect. When I click the buttons, the external swf gallery files show up like they should. But the problem is that when I open the "MAIN SWF" file to test out the site, I can click the Main Navigation buttons and they work. I click on the Portfolio button on the Main SWF time line, and it places the "portfolio_page_swf" onto the stage like it should, but when I click the buttons that are within the "portfolio_page_swf" the galleries don't show up. The buttons from the "portfolio_page_swf" page only work if I open the "portfolio_page_swf" file directly.
Here is the code that is used in the "portfolio_page_swf":
var Xpos:Number= 0.0;
var Ypos:Number = 0.0;
var swf:MovieClip;
var loader:Loader = new Loader();
var defaultSWF:URLRequest = new URLRequest("galleries/gallery_print_swf.swf");
[Code] .....
How to load an External SWF onto the main time line and then load an additional external swf from within the first external swf.
View 1 Replies
Nov 2, 2009
I'm currently working on a project where I mix animation sequences with short videos. My project also has two scenes and the FLV will be placed on the main time line of the second scene. The problem I am having is, if the movie is previewed from the first scene, or exported, the FLV on scene 2 won't load. the timeline on the playhead will just spin. I'm currently using "Load external video with playback component" as the method for importing the flv file.I have already worked with this video multiple times in other flash files and have never had a problem loading the video. Is there a limitation to FLV playback in multiple scene movies?
View 5 Replies
Jun 15, 2010
Does anyone know of a way to get Flash CS5 for Windows to preview an animation in a secondary browser?
Dreamweaver CS5 lets you specify a browser as a secondary browser -- pressing Ctrl+F12 launches it. In Flash, however, F12 and Ctrl+F12 both launch the primary browser...
View 1 Replies
Jan 14, 2011
I have a SWF called Application.swf that loads another SWF called jeu.swf. My main class (don't know how to call it haha), is called Main.as. Another class is called actionObjets.as. When I call:
dispatchEvent(new MicroJeuEvent(MicroJeuEvent.JEU_TERMINE, 8, ""));
It works perfectly from Main.as, it works perfectly.
But when I call it from actionObjets, it doesn't work. No error either. I tried putting this line in a static function, doesn't work either. Why can I dispatch an Event from my main class and not from another one? I'm not a programmer and I just don't get a few of the basic principles of as3. Is there a way of doing differently?
View 1 Replies
Feb 21, 2010
I want to write an application that monitor the USB port, and when something is connected should show the contents of the drive (image viewer) automatically.there is any way to do that with Flex/Flash directly?or i might program another application in C in order to monitor the USB port and then comunicate with the front-end application with sockets?
View 2 Replies
Jul 19, 2011
How to detect the Monitor current resolution in flex.
View 2 Replies
Oct 1, 2010
I've been asked by a client about playing a Flash .exe file from a hard drive so that it only plays on a second monitor.
View 2 Replies
Mar 16, 2009
I'm having a problem trying to call an specific label or frame in a secondary MC.
-There is a main time line (120 frames) with an Intro animation stop in frame 103.
-There is 2 buttons in frame 103 (b1,b2). On release this buttons play 104 and stop in the last frame of the main time line (120).
-In the frame 120 these 2 buttons fade and an MC called navmenu and an empty mc (to load external flash) appear
-MC navmenu is the main menu with 6 frames, one for each button.
I'm trying that when I click on b1, it play 104 go to the end of the main time line, and call frame 3 on navmenu MC, plus load movie on empty MC.[code]...
View 6 Replies
Dec 6, 2011
I put a lot of work in my flash website that will soon be launch. But now I realize I want it to fit better into the larger wide screen monitors. Is there a way I can make it larger without losing image quality? I know this probably needs to be done in the publishing tool.
View 1 Replies
Jun 12, 2008
Can flash detect monitor res, or any other system resources (processor speed, browser, pop-up blocker, memory, etc.)?? I know there are secutity issues, but i would like to create a detect/launch page for some eLearning courseware. I currently use javascript to do this but would like to use flash.
View 1 Replies
Feb 13, 2011
I have a line chart with a column chart as a secondary series. When I roll over the line, the datatips appear. However, if I move the mouse to a spot where a column appears while still on the line, the data tip item appears for the line AND the column. How do I get it so that I only show datatips for the line but not the column?
[Code]...
View 2 Replies
Jun 9, 2009
My client ask me for build some flash application which will be show on his kiosk exhibition. And what I wondering is it any different kind of addEventListener for touch screen interface? Or it is similar like mouse click or double click?
View 4 Replies
Dec 9, 2010
My project is : In a notebook, Run a full screen flash program When a projector or second monitor connected to the notebook, the flash program will display a new full-screen interface in the projector or second monitor Contains some animation, images, etc.They are the first screen displays the contents of the supplement flash whether to provide such a mechanism to accomplish my project need? ------------------------- PS : I know that this class LocalConnectionBut when the notebook not connected to the projector, how do I make the second flash to hide, and when they need full-screen display automatically when the projector connected?
View 1 Replies
Jun 23, 2009
My webpage loads a background flash which will connect to the server using socket. If a user open multiple windows/tabs of my website, the server will get multiple socket connections. Any idea of how to make sure that only one socket is connected from the same user and same browser?
I am thinking of using Javascript to monitor the window close event, if a window that was connected to the server is closed, one of the other windows will try to connect to the server. But I can't find a way to listen to that event.I was thinking of Flash's LocalConnection too, but can't find a way to assign unique connection names and let other Flashes know.
View 3 Replies
Jan 25, 2012
Here's what I want to ho: In firebug, there's a Net tab, where you can see all requests, which javascript is making to the server.I would like to be able to do the same with a flash object.What is the best way of doing this?
View 1 Replies
Sep 22, 2011
I want to make an auto-play for some flash-based web-game, but I don't know how to capture and monitor the request from the flash client to the server.
View 1 Replies
Jun 23, 2010
I've been told that there is a gaming site that you just need to upload your flash game and it automatically detects scoring and adds the scores to an online highscore table.is it possible?can i somehow using javascript or a 2nd flash file to load a flash and to debug all of it's variables without having the source?
View 1 Replies
Oct 3, 2010
Cant figure this out, got it to work in firefox a while ago but after upgrading to mac and chrome, I had no luck finding an solution.
View 1 Replies
Jul 31, 2011
I'm uploading an image file with upload() of a FileReference object however the network monitor in Flash Builder doesn't report anything. Is that normal behavior? A google search didn't return anything.
View 1 Replies
Jun 14, 2011
i have the following problem: when i publish my site (all in flash) with stage.scalemode=exactfit parameter, the page is stretched; while when i use the scalemode=noborder parameter, the page is cropped below;
what i want is the site adapting itself to the width of the screen (with no borders on the sides),maintaining proportions and so allowing down scrolling; I haven't found any answer around the web to this apparently simple issue
View 0 Replies
Jan 24, 2011
I was wondering if there was a way to launch an external .swf from within the playing .swf?
I don't want the other swf to be inside of the currently playing one (like with the UILoader, I want it to be running as a completely separate instance of flash.
View 1 Replies
Dec 3, 2009
I've been developing a Flash application that will be running on a touch screen monitor installed in a hospital. The touch screen is run by a Windows machine. I'm afraid I don't know much about the Windows world. I'd like to have my Flash application launch in Flash Player every time the cpu is rebooted so the client never has to worry about manually doing it.
View 5 Replies
Nov 1, 2009
how to center a 1966px wide flash regardless of the users resolution or size of the monitor?
..and without resizing it just cropping both sides of it in the browser.
View 5 Replies
Nov 29, 2005
We have created a standalone exe (flash with windows/mac "projector") file, and have it set to autolaunch when a cd is inserted, but would like for it to launch in full screen mode
View 6 Replies