ActionScript 2.0 :: Getting Menu Results Without Callbacks?

Jan 23, 2011

Basically, I have a function that when called will display a menu of options that the user can click on. The menu is dynamically generated from the script and each menu item has it's onPress handler setup to call a dynamically generated function that which has access to the index of the menu item (or any other data I choose to pass it).What I would like to happen is that when a menu item is clicked on, the value is somehow passed back to the function (which built the menu), so that it can return it to it's caller. I've got everything but this last bit functioning.The approach I've tried is to give the onPress handler access to a field in the class which holds the menu building function. Then when it's clicked on, it can set the field to it's value. Meanwhile, a while loop in the menu function is waiting for the field to change, and will then return the new field value as it's result.

However, this doesn't work and the reason is obvious. Any sort of busy waiting while loop locks up the flash player. Therefore, it ceases to handle events and so the user cannot click on the menu item (or do anything else for that matter).What would be ideal is some sort of sleepAndHandleEvents function I could call from the while loop, but from what documentation I've searched, I can't find something like that. I've googled around, but so far I haven't found anything.The reason I want the menu selection returned from the function (rather than the usual method of using callbacks) is that it's called from some procedural code. I know I'm going a little bit against the paradigm of flash (which is mostly event oriented), but some things are just procedural in nature and I don't want to split my code into a million little pieces and turn it inside out.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Get Menu Results Without Callbacks?

Jan 29, 2011

I have a function that when called will display a menu of options that the user can click on. The menu is dynamically generated from the script and each menu item has it's onPress handler setup to call a dynamically generated function that which has access to the index of the menu item (or any other data I choose to pass it).

What I would like to happen is that when a menu item is clicked on, the value is somehow passed back to the function (which built the menu), so that it can return it to it's caller. I've got everything but this last bit functioning.

The approach I've tried is to give the onPress handler access to a field in the class which holds the menu building function. Then when it's clicked on, it can set the field to it's value. Meanwhile, a while loop in the menu function is waiting for the field to change, and will then return the new field value as it's result.

However, this doesn't work and the reason is obvious. Any sort of busy waiting while loop locks up the flash player. Therefore, it ceases to handle events and so the user cannot click on the menu item (or do anything else for that matter).

View 0 Replies

ActionScript 3.0 :: Dropdown Menu In Contact Form - Get Results Into An Email?

Sep 4, 2011

I've built a contact form for my website using a [URL] tutorial on building UI elements. The final step to the tutorial is putting all the elements together in a contact form, but for some reason they've left out the dropdown menu element, and for the life of me I can't figure out how to write that code. The problem is that the dropdown menu is designed such that it's a movieclip containing several other movieclips & actionscript (button, list, scrollbar, etc). I can get it to trace the selected information with this code inside the dropdown movieclip:

[Code]...

View 2 Replies

Actionscript :: Flex - How To Use Callbacks?

Apr 15, 2012

So let's say I have the following code:

public function first(text:String):String {
_text = text;
dispatchEvent(event);
//after handler has finished transforming text.
return _text;

[Code]...

View 1 Replies

ActionScript 2.0 :: Callbacks And Load Movie?

Jul 28, 2003

how to do callbacks on the same timeline (animation comes in and holds until next button is pressed, then leaves)But I am trying to figure how to do it with external MC's.I have been trying for quite sometime and I cannot get it to work. So I just erased all of my awful coding.

View 4 Replies

Flash :: ActionScript 3 Handle Asynchronous Callbacks?

Jul 11, 2011

I have a piece of code in my game which looks a lot like this: MultiplayerAPI.createGameRoom(function(){ successFunction(new Object()); }); Basically, the createGameRoom is performed and, upon success, the function I passed is run. However I've been running into some strange bugs recently and I'm wondering, is the instance of "new Object();" the same each time the callback function is run? It needs to be a different, fresh instance of Object each time, but I'm having some garbage collection issues which make me think it's passing the same object each time that event callback is fired,

View 2 Replies

ActionScript 3.0 :: Resizing IE Browser Window Breaks Callbacks

Mar 4, 2010

I have an SWF file embedded in a larger html page.There's a fair bit of communication between javascript and actionscript so I'm using both ExternalInterface.call and ExternalInterface.addCallback in the actionscript code.Communication is all fine, except for one (common) situation on IE.If the user clicks within the SWF file and then resizes the browser window, calls from javascript to actionscript fail to work.Actionscript can still call up to javascript, but no return.If the user clicks inside the SWF, then somewhere else on the page, then resizes the window, nothing breaks.[code]All of those attributes are the callback function names.This happens with both IE7 and IE8, but FF is fine.

View 1 Replies

Javascript :: List Available Callbacks Exposed By A Flash Element?

Jun 26, 2009

Is there a way to query an embedded flash element to determine the available methods that can be executed on it via JavaScript?

Edit:
It appears that in IE it's as simple as

for ( i in flashNode ) {
alert(i);
}

After much clicking, they will be some of the very last members enumerated.

Still not able to determine this in Firefox though.

View 2 Replies

ActionScript 2.0 :: Pathing Of Objects - Without A Defined TargetPath The Object's Callbacks Are Ignored?

Jun 29, 2004

When creating custom-objects, is there any way to set it's pathing? The problem is that it seems without a defined targetPath the object's callbacks are ignored.Here's an example:

class someClass extends MovieClip {
public function someClas() {
this.onEnterFrame = function() {[code]....

is there any way to set the targetpath? They all seem like read-only to me. One way to fix it perhaps is to place an object on the stage and use the as2 field to define it's class, but I prefer coding everything .If i make a movieclip using createEmptyMovieClip, it'll work (trace(this) shows say _level0.some_mc) ), but I want my custom classes..

View 13 Replies

ActionScript 2.0 :: Expanding / Collapsing Menu - Should Have Remember The Last Visit Menu And Show The Menu

Jun 5, 2004

I have created this site with a expanding / collapsin menu. When a user selects a menu e.g. "hammers" then the menu is loaded and show the submenues. When the users closes the menu by moving the mouse away from the area the menu collapses. If the user expands the menu again the menu should have remember the last visit menu and show the menu.

View 4 Replies

Flash :: Professional - Add New Menu In Menubar And New Menu Item Inside The Help Menu

Feb 27, 2011

i want to add new Menu in flash IDE and i want to add inside the adobe flash menu. How i can add new menu in menubar and new menu item inside the help menu. is it possible to do this things if yes then which language i have to use for this. what is way to start development and what is the .MXP file and how to create this .MXP file.

View 1 Replies

ActionScript 3.0 :: When Click In On Menu The Actual Menu Does An Alpha To 0 And The Next Menu Appears?

Jan 27, 2010

The menu is like this http:[url]... (the site is in portuguese but it doesnt matter), when I click in on menu the actual menu does an alpha to 0 and the next menu appears using the alpha from 0 to 100 (and some animations like the cellphone going up).Now, how can I do a menu like that, whatever the menu I choose, it does that alpha animation ?

View 1 Replies

ActionScript 2.0 :: Menu Item 11 Later Menu 12 Menu 13 In Bottom?

Sep 7, 2009

i have AS2 coded menu it's working xml but i can add 11 categories.if i add menu item show page out...i want menu item 11 later menu 12 menu 13 in bottom. sorry my english i add flash file and screen

View 1 Replies

ActionScript 2.0 :: Senoc's Drop-down Menu - Only Disappear If Click On Another Menu Item Or When Click Outside The Menu

Jan 17, 2004

ive followed Senoculars drop-down menu tute [URL], awsome stuff, but it seems the submenu's dont disappear to well when you roll out. ..They only disappear if you click on another menu item or when you click outside the menu.

View 12 Replies

IDE :: Can't Get Results In Quiz

Mar 10, 2007

i made a quiz in flash using actionscript:

At the end I have to sum the answers and show the result to the user but I can't get it.

Here is the code (I'm kind of new to actionscript, sorry if the code it's too long):

Code:
var p1=0;
var p2=0;
var p3=0;

[Code].....

View 5 Replies

ActionScript 3.0 :: Same Page, Different Results When Different Url?

Jan 12, 2011

server the scripts it has to load from the server, but if i call it like it will not load and will get stuck. i remember there was a parameter for the player about allowing it to read only local scripts or something like that, and i plan to test it with this (or if according to the problem description, somebody else has a different theory, all is welcome), but at least in dreamweaver it does not appear the parameter for flash objects, and i dont remember where i saw that parameter or what was its name, what is the parameter to allow a flash movie to read scripts from different servers (even though the situation is kinda weird, since dnses are pointed correctly, or it would not load at all with my and how do i edit the parameters value? do i have to edit it by hand in all pages, in all occurrences?

View 3 Replies

XML :: Loop Through Results Of HTTPService

Dec 7, 2011

I'm trying to loop through the results of an httpservice, it is xml. This is how I try to do it, but this does not work.

protected function getArtistsSucces(event:ResultEvent):void {
var artistList:XMLList = XMLList(event.result);
var artistXML:XML;
for each(artistXML in artistList.artists) {
var artistName:String = artistXML.artist.name;
[Code] .....

View 3 Replies

ActionScript 3.0 :: Save Results To Xml?

Apr 15, 2011

I recently made a drag and drop game that gets users to rate a word 1 - 5, nothing fancy just event listeners that have many (many) if statements that push the selection into an array at an index.However now that I have this preference list im kinda stuck as I dont know what to do with it now.In java I could save it to a file but from everything ive read there are things to stop flash/as3 from accessing your hard drive(security issues)Basically im trying to find a a way to put this array into some sort of use such as saving them to a file on my hard drive.Also as an aside if there any good tutorials on how to make a scoreboard?ay if a player gets 3 of them 'right' they'd get 3 points and be placed accordingly.

View 1 Replies

Flex :: Menu Control - Click A Button And A Menu Is Displayed. Click That Button A Second Time And Hide That Menu?

Jun 20, 2010

Basically, I have a button and on click it displays a menu. I want to click that menu a second time and the menu closes. Currently, every time you click the button, the menu reopens. I pasted the Flex livedoc example below. If you click the button, the menu keeps reopening.Now, I rigged it up by setting a var to open and closed, so when clicking the button it does a check. However, if you click away from the screen, the HIDE event gets dispatched, and the menu closes. This messed up the open close var being set.

How could I make this Flex example below show the menu on button click, and then on a second button click, it closes the menu? Take into affect that if you click away from the menu, it closes it.Also, I played around with the MOUSE_DOWN_OUTSIDE event for the button and set the preventDefault, and the FlexMouseEvent event.cancelable is set to false.Changing to a PopUpMenuButton is not an option. I have to much skinning involved.Here is the Flex example:

<mx:Script>
<![CDATA[
// Import the Menu control.
import mx.controls.Menu;

[code]....

View 1 Replies

ActionScript 2.0 :: CS3 Odd Button Code Results?

Apr 27, 2010

I have a movie that is connected to a database. It pulls info, stores it in an array and displays it. We also have buttons that are coded to send a search query (selected from the data pulled from the database) back to the website to be displayed. Weirdness happens. Here is the button code.

PHP Code:

on (release) {
 getURL("http://www.mysite.com/mySiteBuilder.php?tagged=true&UpdateSearch=update&myRouteResults="+_global.taggedRoutes[0][6]+"", "_self");[code]....

All is good here accept for the 1414,2626,2525,1919,1212. These should be 14,26,25,19,12! Checked it and it does perform correctly.

View 21 Replies

ActionScript 2.0 :: Mix Buttons With Multiple Results

May 30, 2011

im doing a color mixing game.. i have 6 buttons.. with shows the color whn u click on the button.. how to i mix them??

[CODE]....

View 2 Replies

ActionScript 3.0 :: Flash Form Results?

Nov 1, 2010

I built this simple form basically following a template.Everything is working fine but I'm not receiving any results. write the code so that the results will be sent to my email adress .(My site is hosted by FatCow).
 
send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_7);function fl_MouseClickHandler_7(event:MouseEvent):void{ var allVars:URLVariables=new URLVariables(); allVars.name=theName.text; allVars.email=theEmail.text; allVars.message=theMessage.text; var mailAddress:URLRequest = new URLRequest("http://www.fatcow.com/scripts/formemail.bml"); trace(theName.text); trace(theEmail.text);[code]...

View 1 Replies

Professional :: Display SQL Results In Flash?

Nov 27, 2010

would go about setting up flash to display results returned by a SQL query one at a time.I can work out the query and PHP, but want I want to know is how to make flash take each one and animate it, including pausing and clearing the screen when full, then continuing on a 'new' screen. It's basically for displaying a list of events in a database.
 
Blank screen
Event 1 (pause)
Event 2 (pause)

[code].....

View 1 Replies

Professional :: Input Text Results In If-then?

May 18, 2011

I want to have an input text box with the instance name "answer1_input."If the user types in "one" I want it to go to frame 2.If the user types in anything else, I want it to go to frame 3.

View 8 Replies

ActionScript 1/2 :: Using Global Array For XML Results?

May 31, 2011

I searched the whole internet and I could not find a solution for this.I'm trying to load XML, parse values into global array, and use that global array later in my code... this is not working.

_global.autoid=Array();
function ParsingXML(){
var pokXML:XML = new XML();

[code]......

View 6 Replies

Professional :: Very Different Results Between IPhone And IPad?

Aug 21, 2011

We're seeing very different results from the same files being packaged for iPhone verses iPad. Not having a lot of luck getting things to run smoothly on the iPad when they work great on the iPhone. The iPhone versions also run great on the iPad even though it has to scale down all the retina quality images. I feel like I'm missing some important difference between the two?

View 3 Replies

How To Display Search Results Using AS2 And Flash

Dec 15, 2009

I have been looking for a tutorial that shows or explains how to display the contents of a search engine like 'Google' or 'Youtube' inside Flash. No luck so far...

View 1 Replies

Actionscript 3 :: Test And Compare The Results Of The Changes?

Mar 6, 2010

I have a library that provides a reflection API on top of describeType() (a method that returns an XML object with all the specs of a class or instance). Since this library is used in several other libraries and frameworks.

The problem I'm facing is that I'm not sure about the best approach to refactor this libraries' code and make it possible to test and compare the results. I could easily add timers to the code, log the ouput and compare the results, but it seems like a lot of work to do this manually.How did you test and compare the results of the changes?Is there perhaps any testing framework (also non-actionscript) that helps in performance testing in such a scenario?

View 3 Replies

Php :: Two RC4 Implementations Generated Different Encryption Results?

Jun 10, 2010

Why is encryption algorithm may give different results in AS3 and PHP? In AS3 I use library from [URL].And in PHP I use RC4 Cipher.

View 3 Replies

Php :: Flex With AMF Returning Results Slowly?

Sep 3, 2010

I think this is just a matter of fine tuning some different elements, but I'd like to know your take. I've got a Flex app, using the Flex 4 data services, communicating with Zend AMF services. One of the services returns all the results in a database using SELECT * FROM table there are ~1200 rows (140KB package size).

My problem is the response time, it's rage inducing. Total duration is always between 7-8 seconds. All but about 150ms of that is latency. I broke up the PHP to figure out exactly where the latency was and turns out return $rows is eating up ~6.8sec latency. I can deal with 1-2sec, but when I start waiting around for 8sec I feel kinda dumb. I cross checked the query response speed directly from the database, and just like I was expecting the total query time is 45-60ms.

PHP, this is basically just the generated Flex data service code, although in production it isn't the same:

public function getAllProject_entries() {
$stmt = mysqli_prepare($this->connection, "SELECT u.*
FROM $this->tablename u");

[code]....

View 1 Replies







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