ActionScript 2.0 :: Pop Up Replacement - Tell The New Pop Up To Close The Old One And Then Open?

Mar 4, 2005

The windows pop up, the problem lies in that the pop ups wont replace each other.if one pop up is open, trying to open another one just makes the old pop up active, it doesnt open the contents of the new one. this is a big problem since the pop ups are for my portfolio to show the work at larger sizes. is there a way to tell the new pop up to close the old one and then open? would this be some sort of if... else statment? or is there some other code i should use for the pop ups?

View 1 Replies


Similar Posts:


Close 2nd Swf And Open Another One?

Feb 28, 2011

I opened from my main swf a new one with addChild. Now in the 2nd swf i need a button to close this swf and open another one ... I done this way because the button i puted in the main swf does n´t work (maybe because i´m using in both swf liquid layout with a resize function). How can i do to close the 2nd swf and open another one.

View 2 Replies

ActionScript 2.0 :: Tell The New Pop Up To Close The Old One And Then Open?

Mar 4, 2005

im having a big problem with my pop ups. at the moment i am using the code form this tutorial [URL]. The windows pop up, the problem lies in that the pop ups wont replace each other. if one pop up is open, trying to open another one just makes the old pop up active, it doesnt open the contents of the new one. this is a big problem since the pop ups are for my portfolio to show the work at larger sizes. is there a way to tell the new pop up to close the old one and then open? would this be some sort of if... else statment? or is there some other code i should use for the pop ups? either way,

View 1 Replies

ActionScript 3.0 :: Close And Open Action?

May 24, 2009

I wrote this code that loads and unloads object to the screen. But have small issue. When i press the CityButton it loads the object... i dont want the villageButton or anything to be selectable until the CityButton is pressed again which causes the loaded city object to be removed.

/*//this is the button events for each name*/
cityButton.addEventListener(MouseEvent.CLICK, clickHandler);
villageButton.addEventListener(MouseEvent.CLICK, clickHandler2);

[code].....

View 1 Replies

ActionScript 3.0 :: Open And Close Message Box Using AddEventListener?

Dec 5, 2011

I trying to close a message box with a okay button inside its movieclip but i keep getting "1119: Access of possibly undefined property btnOk through a reference with static type flash.display:SimpleButton." error message when testing.Below is my code. anyone please help.

Code:
//open message box
btnPassport.addEventListener(MouseEvent.MOUSE_DOWN, btnPassportClicked);
function btnPassportClicked(event:MouseEvent):void {[code]...........

View 2 Replies

ActionScript 3.0 :: Open And Close A Sound Stream?

Jan 11, 2010

I am stumbling across this issue as I open and close a sound stream. This is the code I use, not sure if closing and opening a stream on the same function is a good idea.

[Code]...

View 4 Replies

Professional :: Drag Open And Close On Release?

Apr 7, 2011

I have an HD video that I shot of curtains or drapes opening and closing. I would like to make something in Flash where someone could click one side of the curtain and pull it open. When they release the mouse it should close back. In the video both sides open at the same time so I'm not sure if I can make the sides independent or not. If I can do this I may also want to make a version where the curtain stays where they released it.After I make a web version I am going to try to turn it into an app for a smart phone. The online use with a mouse is way more important at this time.

View 6 Replies

ActionScript 3.0 :: Open And Close Shelf Effect?

Nov 4, 2011

Relative newb to Flash and not sure what the issue is but I have a shelf opening and closing effect  The timeline is 45 frames long and when the shelf is out it has this AS3 code in it:

import flash.events.MouseEvent;
stop();
ShelfOpen,addEventListener(MouseEvent.CLICK, closeShelf);

[code]......

View 4 Replies

ActionScript 3.0 :: Cannot Close NetStream And Open It Back Up

Nov 6, 2010

I have a NetStream publishing properly using multicasting for fp 10.1. My problem is that I can not close the steam and open it back up. I call .close() on the netstream object and receive this message:
NetStream.Unpublish.Success
I then call .publish("same stream name") and receive this error:
Netstream.Publish.Badname

View 2 Replies

ActionScript 3.0 :: Programmatically Close An Open File Dialog?

Nov 4, 2010

Is there a way to programmatically close an open file dialog?

My current problem is this: I have a small file download program. When the user clicks a button, it will pop-up the Save As dialog. The problem is, if the user closes the Firefox window, the dialog stays open. And when the user wants to close that dialog, he or she can't anymore. It won't respond. The only way is to kill the plugin process (on Linux anyway).

So is there a way to monitor opened file dialogs?

I've tried to get the browser to notify the Flash app that it's closing, which works great. The problem is even if the app knows it should close the file dialog, it can't...I've tried setting the FileReference to null, using delete on it, calling the garbage collector, etc., nothing seems to have any control on that dialog.

View 3 Replies

ActionScript 3.0 :: Code For A Button To Open And Close Pop-up Swf File?

Jan 21, 2010

I created this web page in Flash AS3 and I need codefor a button that will open and close pop-up swf file on stage, not in a new window.

View 1 Replies

ActionScript 2.0 :: Music Player Close & Open Button

Feb 10, 2010

I'm making a site where I need the music player to go on and off the screen wehn you hit a close/open button. Click here to view the Radio opens but can't close. This is the code I use:

[Code]...

View 6 Replies

Flash :: Jquery - Open A SWF In ThickBox In Drupal On Page Load And Close It After X Seconds

Dec 11, 2009

After working for a prolonged time on a programming problem, I start to get coding tunnel vision. It makes it harder to draw back and look at the problem from farther away. Hence my question: I am using a Drupal 6 site. When a menu option is clicked, the page opens and a Flash SWF file needs to played in a ThickBox. After 8 seconds, that Thickbox closes.

Opening the SWF file in the Thickbox when a link is clicked is no problem, just like closing the Thickbox afterwards; that's basic javascript. For that I use these:

[Code]...

But opening the Thickbox on load? I can add a link for the user to click, but it should open automatically. I figured out the PHP to have it only open on one specific page. From the Thickbox manual, I learned to open links to images - but not how to open it when the page loads.

View 2 Replies

ActionScript 2.0 :: Button To Open A Movieclip And Then Close The Movieclip When Clicked On Again

May 19, 2010

I am a super noob at actionscript. And I want my button to open a movieclip and then close the movieclip when clicked on again. I have no idea what to add after that here is the code I have for the button so far.....this button opens it.

on(release){
this.linemc5.gotoAndPlay("ear");
}

and this is another button I made that can close it, but I want it to be in the same button rather than seperate.

on(release){
this.linemc5.gotoAndPlay("earclose");
}

View 2 Replies

ActionScript 3.0 :: Click To Open Menu Then Click To Close?

Sep 28, 2011

I've got a drop down menu. I want to click a tab to make it drop then, if it's open, click it again to close. I've tried a million variations on the script below:

var btn_grp1:String
function main1Down(event:MouseEvent):void {
if (btn_grp1 != "dwn") {

[Code]....

This works too (once). So the drop down buttons all disapear again, but it won't re-set. The drop down menu stays up from then on.

BTW i'm not set on this method, it just seemed the most obvious i.e. if menu hidden, then show it, set some variable to down (showing), else hide the menu, set var to up (hidden). Not working though.

View 2 Replies

ActionScript 3.0 :: Multiple Buttons To Open Child Swfs Then Be Able To Close The Child From Within The Child?

Mar 25, 2009

I have a picture on the stage that has multiple items that have hotspots/links over them that should open a child swf on top of the background and show details about the items. then have a button in the child swf itself that removes the child from over the background so the user can click on another item etc.I found this code in someone's post and I am trying to modify it so that works for multiple swf files...it currently works for a single swf.I wan to pass the name of the button in front of the .swf in the URLRequest to have the same name as the instance name of the referring button. But I can't figure it out. Here is the code I am using on the stage

View 2 Replies

ActionScript 2.0 :: Close Browser By Clicking On Close Button Embedded Swf?

Jul 27, 2009

i want to close browser by clicking on close button embedded swf. I have tried fscommand("quit"), but which is not working on browser.

View 9 Replies

SVG -- Replacement For Flash Application?

Mar 30, 2010

We are currently looking at developing flash based applications (using Flex) in a web application. We are now leaning towards to use SVG rapheljs for developing this components. The questions are: Is still SVG platform is widely adopted by browsers (without any plug-ins) are at least down the line of 8-10 months, any adoption is expected by browsers? Cross-browser support is god for us. Is SVG can replace for a small time animation based programming instead of Flash

View 1 Replies

ActionScript 2.0 :: Xml Array - Without Replacement?

Jun 8, 2004

trying to load five images from an xml array randomly without replacement**without replacment - meaning i dont want to use the same random number in my array.all i need is the math for the actionscript

Code:
menuXml = new XML();
menuXml.ignoreWhite = true;

[code].....

View 4 Replies

ActionScript 2.0 :: Xml Array Without Replacement

Jun 8, 2004

trying to load five images from an xml array randomly without replacement*without replacment - meaning i dont want to use the same random number in my array.all i need is the math for the actionscript.[code]

View 4 Replies

Replace Desktop Replacement With A Tablet PC?

May 31, 2009

I wish to replace my desktop replacement with a tablet PC I have visions of Cintique-like functionality yet portable majesty...

But the graphics cards on these machines are total crap.  However, some graphics card models claim to steal memory from the RAM, so in theory if I soup up the RAM I have a really powerful graphics card?
 
Anybody out there author on a tablet PC?  I'm running Flash CS3, and must make my decision soon![URL]..

View 5 Replies

Professional :: CS5 Animation Symbol Replacement

Jan 7, 2012

my company (FB games) has fired everyone who knew what they were doing leaving me, with no knowledge of flash, staring at my to-do list near tears, unable to complete basic tasks.I need to take an existing walk cycle animation and replace the character with another design. After breaking the new character body into symbols, I've tried to sub them in using swap symbol. The body parts do not line up with the previous symbols, and they also seem to go flying all over the place when I run the cycle. I can't figure out how to just update the symbols without disrupting the placement.

View 2 Replies

Actionscript 3 :: Replacement For C Style Structure In OOP?

Feb 28, 2010

I am a student with a mainly electronics background getting into programing. The more I get into it, the more I realize how bad I am at it. I am trying to get better at OO design.One thing I have been reading about is the use of Getters and Setters.

[URL]

Now I can see the point they are making here but I am still unable to see away around some simple problems. And this brings me to my question (finally). I am setting up a simple tower defense game in AS3 as a learning exercise. I want enemies to follow way points so I was going to make an array of way points, and make that a property of a map object. And a way point was to be an object with an x and a y property (more like a struct).

View 4 Replies

Java :: Flex / Air Replacement For Desktop

Apr 3, 2012

I want to create a simple desktop admin application for an IOS app that will work with a REST api I've built.Couple of years ago I would go with Flex/Air, just makes it very simple. But since I am butt-hurt with the way Adobe have handled Flash in general, I am looking to write it using some different tool.So far, Java Swing looks rubbish (UI-wise I mean). Others aren't cross platform and often too complicated.

View 1 Replies

ActionScript 3.0 :: Green Screen Replacement

Nov 1, 2011

Is it possible to replace green screen in as3.

View 1 Replies

Replacement Image To Display If Flash Turned Off?

Jul 15, 2009

I have a Flash movie (.swf) file embedded within a webpage.I am looking to have an image display if the user does not have Flash installed or has it turned off.

View 3 Replies

Jquery :: Body Replacement When Flash Is Messing Around

Dec 20, 2010

I'm trying to replace some contents in a website by using the following code:[code]The problem is that I have some flash embedded on the DOM and whenever I try to do the replacement the browser crashes.Somebody should thing that a prepend or append in the right place should be a better method
to achieve this, but the elements I'm trying to locate and replace are html comments and the append prepend methods do not seem to work with this kind of nodes so they have to be treated as literal strings.

View 1 Replies

Flash :: Javascript :: IPad Replacement Best Practices

Jun 1, 2011

I have a website that has a Flash banner. For devices that do not support Flash (like iPads) I want to display an image instead. What is the best practice to deal with this situation? Should this be handled from the front-end with JavaScript?Should this rather be handled from the back-end? (I am using Java on the back-end)

View 1 Replies

ActionScript 3.0 :: Nested For Loops Optimization / Replacement

Mar 18, 2010

I have a program where I have around 100 LatLng (latitude longitude) points, and i have to get the largest distance between any 5 of them but you can only go forward (so if latlng_1 is the point number 5 latlng_2 can only be point number 6,7,8,....,100).
<-- skip the colored thing if its unclear
So I calculate the distance like this:

Code:
Select allfor(i=0;i<points_num;i++) {
for(j=i;j<........
// three more for loops
// and than calculate the distance between all five points and compare if it is larger than previous...

The problem is that the program stops responding for about 2 minutes to calculate this and I would like to know if there is anything I can do to calculate this thing faster? Yes I can reduce the point but than the thing I want to get is less accurate and even if I reduce the points I still want the calculation to be as fast as it can be.

View 2 Replies

ActionScript 3.0 :: Flash Replacement Of Loadxml.as File

Aug 12, 2010

I have used loadXMl.as file for XML to Object conversion till date. I am now converting the framework from AS1 to AS3.

Is there any alternate in AS3 for XML to Object conversion other than using the XML class. I am facing a lot of problems with XML class which I am not used to.

Here is the example

[Code].....

though I expect it to show undefined as the tag does not exist in the XML file.

View 4 Replies







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