ActionScript 3.0 :: Removing Windows Components And Controlling Start Location

Sep 22, 2011

I'm wanting to do a interactive application that is fullscreen across two monitors. I know that invoking the normal fullscreen procedure will defult the the fullscreen to only the main monitor. I was wondering if there was a way around this. Like, if I removed the windows borders and flash toolbar from the application, set the initial window location to start at (0,0) and then set the stage size to the resolution of the two monitors horizontal resollution compined. Is that possible, and if so what the things(terms,methods)

View 4 Replies


Similar Posts:


Windows :: Start Air/flex Application With Windows?

Sep 21, 2009

I want to provides an option in my air/flex application. A user can check an option and the application starts when windows starts.I don't find with google how to do this, someone knows do that ?

View 1 Replies

ActionScript 3.0 :: Removing Children Based On Location?

Mar 11, 2010

Question 1Whats a good example of removing objects from stage that aren't within the stages boundries. I first tryed using a transparent box and hittesting. then i realized that you cannot hittest an object that isn't on stage, to check if needs added. so i came up with this.

Code:
for (nn=-1; nn<2;++nn){
if (this.hu1.room+nn>=0 && this.hu1.room+nn<this.walls.ar.length){
for each (n in this.walls.ar[hu1.room+nn].ar){[code]....

That way it only adds the object if its not currently on the display list or am i better off just giving all objects an onscreen:Boolean variable?

View 4 Replies

Windows :: Writable File Location / Communication AutoPlay Media Studio ?

Mar 17, 2010

I have an application built with AutoPlay Media Studio which needs to be able to communicate with an embedded .swf, built in Flash CS3 with AS3. The APMS application needs to send a filename to the embedded flash. I've tried using flashvars but these don't seem to work from the APMS app. I've previously written the info to a text file in the app's folder so that both the APMS and the flash have a set relative path to the file. Now I'm tasked with making this work on a write-protected device, and I'm stumped as to where I could place the file and still be able to find it from the flash.

My first thought was the user's temp folder, but from another question I don't seem able to find that path from the flash. Where else could I put it and still have permission to write to it even if the user is not logged in as an administrator? The path needs also be in the same place on Win XP, Vista and 7.

View 1 Replies

Disable Antialiasing For Text In HTML Components (Windows)?

Jan 30, 2010

I have an AIR application that uses the HTML component to display a significant portion of content (I set the html myself, it is not loaded remotely). The text displays normally on Mac (I think Mac antialiases all text by default). However, on windows, the text displays anti-aliased regardless of the OS settings. It ends up giving everything a red tint.

Ideally, I'd like to be able to control whether or not the text gets anti-aliased. Does anyone know if there's a way to to this in Flex / AIR?

View 1 Replies

ActionScript 1/2 :: Mouse Location Controlling A Movie Clips Roation?

Oct 13, 2010

So I want to control a movie clips rotation with the location of the mouse, with easing if possible. But I am having some trouble figuring out where to start

View 2 Replies

Professional :: 2 PlayButton Components Controlling An FLVPlayback

Jan 19, 2010

First post here, I am a flash newbie. I have a fully completed player I have created using standard CS4 component, FLVPLayback, PlayButton, PauseButton, MuteButton and Seekbar. Everything works fine. I would now like to add and additional large centered play/pause button a la youTube.

I am completely stumped, I have tried duplicating the play button instance and quite a few other things (copying the actionscript from the original button that works) to the new button. I've investigated 'linkage' all to no avail, I can't get it to work.

View 9 Replies

ActionScript 3.0 :: Start From A Given Location In Streaming Video?

Sep 7, 2010

I want to load a streaming video from any point clicked on the progress bar. It it similar to what happens on YouTube. I am using Red5 server for streaming and netStream class.

View 1 Replies

ActionScript 2.0 :: Controlling Multiple Movie Clip Location Using Single Function?

Sep 20, 2007

I need to write a function which should fix the location of the movie clip on the stage.

public function setCoOrdinates(xpos:Number,ypos:Number,movieName:S tring):Void
{
eval(movieName)._x=xpos;
eval(movieName)._y=ypos;
}

My function is as above. While I use this function in flash I only see the last movieclip on the stage which was passed. Movieclips passed earlier seem to have disappeared from the screen.

setCoOrdinates(20,200,"bButton_mc");
setCoOrdinates(530,100,"fButton_mc");

I see only "fButton_mc" on the stage. Even though I set different xpos and yposs for the movie clip.

View 1 Replies

Media Server :: Does Not Start (windows 7)?

Jun 11, 2010

FMS does not start in win 7.There were some starts but only when first run after the installation. (i checked it 3 times) After the computer reboot, FMS does not start. Whats the problemm ?

View 1 Replies

Actionscript 3 :: Controlling Flash Professional Library Components In A .as File

Oct 25, 2010

I'm trying to control the behavior of components in my Flash Library using a .as file class, but it doesn't seem to be working.

For example, if I have a Button in my library called exampleBtn and attempt to do this in the .as file:

exampleBtn.visible = false;

... nothing happens. The button is still visible in my application when I run it.

Can anyone explain the workflow to make a Flash library component accessible in a .as class file using Flash CS5?

View 1 Replies

ActionScript 2.0 :: Windows Start Button Disable Fullscreen?

Sep 26, 2009

I've added fullscreen and trapallkeys to my project and they work well

but when I press windows Start button then fullscreen disable

View 0 Replies

Windows :: Flex - Adobe Air Start Native Window Hidden?

Feb 16, 2011

How do I open a new window as hidden? (note the visible="false")

<s:Window xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
showStatusBar="false"
resizable="false"
visible="false">

If I declare a window this way, and then call this.open(false);, the window will quickly open and then hide, and then be reshown when I actually display it, I want to do this to be able to load content and fit the window to that size before showing it.

View 1 Replies

ActionScript 2.0 :: Controlling MovieClip In Presentation - Removing / Changing Alpha

Mar 29, 2007

I've been playing around with the presentation screens and slide in Flash, from browsing the web there seems to be very little if any information of how to control MC's within different parts of a presentation i.e. removing them or changing alpha. I've loaded an MC and now I'm am trying to remove it from the stage been experiment on the same slide and I just cant seem to get control of it.

I was using
_root.slide1.intromc._alpha = 0;
But this doesn't work for. How I can get access to MCs in a slide if its possible !!!!

View 1 Replies

ActionScript 2.0 :: Controlling Sound - Music Automatically Start When The User Enters The Frame

Sep 15, 2011

So I am a complete novice at actionscript as was evident in my attempts to figure this out on my own. I have the following code to control the "Songs" section of my website and I would like the following features:

1. Not have the music automatically start when the user enters the frame. (I thought this was due to line 3 code but it still played after I deleted that code)

2. Add a "Back" button to go back 1 song.I currently have it set up with the following code on my "Songs" Page:

[Code]....

View 3 Replies

ActionScript 1/2 :: Make An Object Tween From Its Starting Location To The Location Of A Mouse Click?

Apr 27, 2009

I am trying to make an object tween from its starting location to the location of a mouse click. I have a script, but it has a very annoying ease to it.I would LIKE the object to mantain a certain speed during while traveling from its starting location to the mouse click location.

View 16 Replies

Professional :: Button File Opens In Saved Location / But Won't Open In New Location

Aug 21, 2011

I created a simple button that displays an error messeage: "error opening 'url" when I test the movie, but does play and opens in browser after publishing. However, it won't open in the browser in a different location. I pasted the html code in a web page but it doesn't work there nor opens in the browser in a differnet location from where it was originally published and saved. Why is that?

View 13 Replies

Windows :: PDF Displaying Correctly In Flex Mx:HTML Control In Windows / Reader X

Oct 28, 2011

I'm having an issue with the PDF displaying outside the viewable area of the mx:HTML control in Flex. When the application starts up - the mx:HTML is set to a certain size, but can be enlarged if the application is maximized. These are the following conditions to replicate it: Issue only happens in Windows (Windows 7, not on Mac) Issue only happens with Reader X installed (not with previous versions) Issue only happens when running the built app, does not happen in debug / development mode from FlashBuilder

[Code]...

View 1 Replies

Embed Flash Games Into Windows Forms Application.net Compact Framework Under Windows Mobile 6?

Feb 5, 2010

I want develop an application on windows mobile.In this app, i need to show some Flash games to the end user.ow should I do?embed an Flash ActiveX Control (in Windows mobile Form application) ?embed an IE control?BTW (because i do not have a windows mobile device now)Can I views flash in IE of the windows mobile device?for play flash, Macromedia Flash Player 7 for Pocket PC should be installed on your windows mobile emulator.DIT2:after practice i found following package should be installed before your windows mobile progr

Vista SP2
Visual Studio 2008 SP1
Windows Mobile Device Center

[code].....

View 2 Replies

Windows :: Flex - MXMLC Throws A Java.lang.NullExceptionPointer When Compiling In Windows (not In Mac Nor Ubuntu)

Feb 23, 2011

I'm running ant to compile a Flex application, and the build keeps failing when running it on a windows command line. Other people in my team can successfully run the very same build under mac and linux. This is the error shown in the command prompt:

[Code]...

All tokens are set in corresponding build.properties and filter .properties files (and, as I said before, it compiles perfectly under mac and linux). The windows version is 7 Ultimate, FLEX_HOME is set as an environment variable to the Flex SDK 3.5 (the 3.5.0.12683 build that comes with Adobe Flash Builder Burrito). ${compiler.fork} is set to false, to avoid an issue with the SDK and the source files being in different logic drives.

View 1 Replies

Windows :: Flex - FileReference: Loading A Windows-locked File?

Mar 8, 2010

I'm using Flex in Flash Player 10 on Windows, using FileReference to load a file into memory, as below.My issue is that when a file is locked by Windows, my FileReference is not giving me any feedback that the file is inaccessible--it simply never dispatches any events after my calling load().Does anyone have insight into how to tell that Flash Player is unable to open the file?

var fileReference:FileReference = new FileReference();
private function onClick():void {
fileReference = new FileReference();
fileReference.addEventListener(Event.SELECT, onSelect);

[code]....

View 1 Replies

Windows :: Flex - Adobe Air - Lauch Windows Virtual Keyboard Osk.exe

Nov 25, 2011

From an Adobe Air application, I need a function to launch the Windows Virtual Keyboard (c:windowssystem32osk.exe). I tried the Native Process, but it didn't work when telling it to execute cmd.exe /C osk.exe. How should I launch the keyboard application from an Adobe Air application?

View 1 Replies

Flex :: Components - Components - Any Component With The Functionality Such As Horizontally Collapsible Window Or Panel

Aug 22, 2010

Do you know any flex component with the functionality such as horizontally collapsible window or panel I found arc90, but it folds vertically.

View 1 Replies

Windows :: Flex - Air - Alwaysontop - Does Not Work In MAC But Works In Windows

Aug 29, 2009

i setup alwaysOnTop="true" in mx:WindowedApplication alwaysOnTop="true" tag. but this does not work in MAC but works in windows.

View 1 Replies

Windows :: Embed Windows Media Player In Flex?

Aug 24, 2010

I have a mp4 file which is to be used in an application. Currently i am in the stage of figuring out the technology to be used for this job. I am familiar with flex and am hoping that i be able to use it for the application. But i can not figure out a way to play the file in flex. I have been able to play the file only in windows media player and that required the installation of three codecs : Mp4Audio.ax, Mp4Video.ax, Mp4Src.ax.

As i see it, it will be very convenient if i could embed a windows media player plugin in flex or i could specify the audio and video codecs in the flash player

View 1 Replies

Windows :: Create A Windows Projector .exe From Flex Application Using A Mac

Feb 6, 2012

I have a flex application (.swf) and want to create a projector file. When I choose File-> create projector I get the .app file because I work on a Mac. I know I can create both projector formats for windows and mac using the export feature in Flash Professional. But this is not an option since it's Flex.Is there any other way rather than switching to windows to create the file?

View 1 Replies

Flash :: Flex Dynamically Created Components Added To Custom Components

Sep 8, 2009

I am created a dynamically adding a VBox, that contains two images. Into a Custom Component that is derived from UIComponent. The problem is the Vbox that contains the two image is only a really tiny size. I would like the VBox stretch to the size of the two images. This is how I am creating the Vbox....

[Code]...

View 1 Replies

Is It Bad Design To Nest Components Inside Components Using Flex 4

Sep 15, 2010

Is it bad practice/design to nest components inside components using Flex 4? Should I simply be creating components and inserting them into my main application as below, or doesn't it matter?

<com:MyComp1>
<com:MyComp2>
<com:MyComp3>

[code]....

View 1 Replies

Windows :: Windows Authentication In Flex Application?

Jul 30, 2010

does anyone have an idea or developed before windows authentication through flex application.I have a semi solution when user enters his/her AD username and password, and application send this data to web service which handles AD authentication, but this is one extra step which will give full comfort for users.

View 1 Replies

ActionScript 2.0 :: Move MC From One Location (x / Y) To Another Location

Feb 16, 2005

How can I move my MC from one location (x, y) to another location (x1, y1) wirh action script..?.. and I would like to have my motion tween rounded to (x,y) so it will look sharp.

View 8 Replies







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