ActionScript 2.0 :: Client Wants A Search Option As Well

Oct 29, 2009

am building a Flash application that lists approximately 500 companies alphabetically and by sector. This will then be put on a minidisc for distribution.My problem is that the client wants a search option as well.I've considered doing each company profile as a separate swf that is loaded, but I'm sure there must be a better way.

View 3 Replies


Similar Posts:


Flex :: Would Director Be An Option For Creating A Socket Client

Feb 1, 2010

Would Director be an option for creating a socket client? My client needs to accept server commands; frame rate, start etc.Director seems like it was made for controlling movies. I've got Director 11.5 at the office.

Interaction with client
SERVER==>XML PACKET==>CLIENT==>swf plays on given frame and duration

[code].....

View 1 Replies

ActionScript 2.0 :: Senocular XML Search Tutorial (search Query Case Sensitive)

Dec 3, 2004

I've just tried senocular's xml tutorials. [URL] The search query seems case sensitive. How to make it accept upper and lower case characters. Actually i'm trying to make a search by myself by using the same code.

View 6 Replies

ActionScript 3.0 :: Create A Search Field To Search Keywords In XML File?

Sep 6, 2010

I am trying to create a search field in AS3 to search keywords in a dynamic text field of the same flash movie, where the text is loaded from an XML file.

View 1 Replies

Media Server :: Find Client Disconnected When Client Lost Net Connection?

Oct 27, 2010

how can I find on fms server that client disconnected if if client disconnected due to power cut off. I client manually close the application then onDisconnect on server is called but if due to power cut off it does not called.

View 1 Replies

Search Function To Search For Button Names?

Jun 8, 2009

I've started a project a while ago, so far it is almost done but there is something that I seem not to be able to do alone... I would like to add a search function which I don't know how to do.It will not be a normal search function so I am going to try to beak it down with an easy example:

Let's say I did a project that is embeded somewhere in a normal html page with a main menu from where you can get to different city maps (e.g. New York, Paris, Berlin). The maps are seperate swfs. On all those maps there are several buttons for historical sites (or whatever) with a mousover function and a link to a page with more information about that specific site (on html).the names of the buttons are always a letter and a number (New York: "N1","N2","N3"...; Paris: "P1","P2","P2"... instance name for P1 is p1_btn)

What I need now is a search field in the main menu where you can search for those buttons. Meaning if I type in "N2" and hit search it will take me to the New York swf and show me button "N2".

I know this might not make much sense like this but the actual version is quite different and more complicated context-wise. Therefore if possible I would like to leave it that way with the main menu, the linked swfs and the buttons.

View 1 Replies

ActionScript 1/2 :: Develop A Search Box That Will Search Through The Titles?

Nov 23, 2011

I've got a catalog of events in XML that is read into my Flash swf. I'm trying to develop a search box that will search through the titles, descriptions, presenters, etc. and return a list of related events.
 
Does anybody know a prebuilt AS2 system that does this? Or a good tutorial on how to go about this? I have googled, but haven't found much.
 
Here is my approach so far. When I load in the XML I create an array of the frequency of all the words in the nodes that I'm interested in. I figured it would be useful to do this once instead of each time a search is performed. I store that word index in another array with an index that will take me back to the original node. I was trying to figure out if there was someway to put it all into one index, but then I'm not sure how I'd link back to the original nodes.
 
When performing a search I look through the array of word indexs and check for the word and return another array of which original nodes contain the word.
 
If the search term isn't represented I generate all the permutations of the word that have an edit distance of 1 -- i.e. that have a letter changed, added, or deleted in any position. So for example if the search is for "the" the list of 1-edit would be ahe, bhe, ... tae, tbe,... tha, thb...athe, bthe,...tahe,tbhe, ....... he, te, th. If any of those are found it returns the results and puts up a "Did you mean xxxxx?" type of notice.
 
So far all of this is working rather well.
 
I'm still working on figuring out what to do if the user puts two words into the search box.
 
Also haven't figured out what to do with plurals and other "stem" type situations.
 
I want to make this pretty simple and easy for people to get the results they want.

View 5 Replies

ActionScript 2.0 :: Google Search Is Always The Same Except For The Search Variables At The End?

Jun 16, 2003

Its mostly the way google is set up that makes it so easy. I just happened to notice that the url for a google search is always the same except for the search variables at the end. http:[url]....So all I did was to add a textfield to get the variable to put on the end of the URL. (And a button to press)

on(press){
getURL("http://www.google.com/search?q=" + inputText);
}[code].....

P.S. I am going to put this into a thread too in case any one else is interested.

View 7 Replies

ActionScript 2.0 :: Client To Client File Transfer

Nov 19, 2008

Can we perform client to client file transfer, client to server can be done by FileReference. but how do we do client to client transfer, for example if a user wants to send file to another user to whom he is chatting online.

View 3 Replies

ActionScript 2.0 :: How To Search Use Code To Search

Dec 21, 2009

How do i search use the code to search?e.g. From Zoo, To City Hall.The zoo(hv already create the flash animate to city hall)but the problem is how to write a code to point to zoo(action script)!

View 2 Replies

Actionscript 3.0 :: Search Function - Search Through The XML?

Jul 14, 2009

I've got a flash movie that reads in an XML file and has an input text box. When you type something in the input box, I want to search through the XML and return the names of the elements that match whatever is currently in the input box, even if its only partially complete.The input box has an event listener of type Event.CHANGE on it and it runs the following function.

Code: Select allfunction searchWords(e:Event):void {[code].........

View 7 Replies

Actionscript 3.0 :: Client To Client Streaming?

Mar 17, 2010

I am trying to build a client-to-client streaming program - client 1 has a webcam and client 2 will connect to client 1 and be able to view the webcam. Is this possible using 2 swf clients? Can someone point me in the right direction as to what commands would be used to connect the two clients. I have tried: binary sockets Connect() where each clients points to the other and they both time-out NetConnection to try to point each client to one another to establish a connection, but no luck with that either; this seems more oriented towards streaming content to a flash media server rather than to another flash client.

View 1 Replies

Actionscript 3 :: Client + Grails Server - Processing Audio At The Client And Sending It Back To The Server

Mar 8, 2012

We're writing a flash application that can download a MP3 file, convert it to a Sound object, get the raw data and make some processing (like adding sounds, change octaves). After the processing, we want to send the data back to the server in chunks, so the server will be able to glue the data together and recover the new generated file. The problem is: if we send to the server "wav" pieces of sound, we are able to glue them together without any problem in the generated file. However, if we convert each wav piece to a mp3 file (so we can send a smaller file to the server) and join the mp3 files at the server, the result is a sound with some problems at the merge point.

This is how we load the mp3 file from the server:

sourceSnd.load(new URLRequest("sample url to mp3"));
sourceSnd.addEventListener(Event.COMPLETE, carregou);

This is how we convert each piece of mp3 to bytearray and wav:

[Code]....

View 1 Replies

Arrays :: Search Multidimensional Array (Flash As3) Using Another Array For Search Criteria

Sep 26, 2011

Long story short: I want to search a multidimensional array in AS3 for (in this example) the location of 6 strings - all of which are stored in another unrelared array. Long story long: Once I get the locations (in the multidimensional array) of each string, i then know where it's located, and can access other atributes of that object - so if i found the string "box3" is located in element [5] of my multidimensional array, i can now target: multiArray[5][3] to return the 4th item stored (keeping in mind we're starting from 0, so 3 is the 4th position).

I can get this to work once, but I'm trying to set up a for loop based on the length of my basic string storage array - this array holds (in this example) 6 instance name strings - each time my for loop loops, i need to run a search in my multdimensional array for the next consecutive instance name. Then, once I've located all of them (and store the results in a new temporary array) I can dig around in each location for the info I need.

[Code]...

View 3 Replies

Flash :: Can't Have Option To Publish To Flv

Dec 1, 2009

Why doesn't Flash or Adobe Media Encoder have the option to publish or covert .swf to .flv?

View 5 Replies

Are Older Versions Of Flash An Option?

Aug 16, 2009

I am interested in buying  flash however even with the discount given to students as a program it is still a large investment. I was wondering if I am able to buy an older version for example "Flash 8" at a reduced price from adobe or another trusted retailer I know the newer version have updated the program alot but many of the new features will be unused by me and the older version would suit my needs better.

View 1 Replies

Flash :: Deactivate License Option Not Available In CS3

Sep 22, 2009

I have a copy of Adobe Flash CS3 Professional installed on my work desktop. I'm soon going offsite for a couple of months during which period I'd be using my work laptop instead. My laptop does not have Flash CS3 on it, so I was hoping of transferring the license to the laptop. I read somewhere that I need to deactivate the license on my desktop (using Help >> Deactivate license) before uninstalling it. Unfortunately, I don't see that option in the Help menu at all.

View 3 Replies

FLASH :: Professional - Is There Upgrade Option From MX

Jun 2, 2011

I have FLASH MX now, can I buy an upgrade edition?

View 1 Replies

Add A Delete Item Option To A Cart?

Jan 18, 2010

im trying to add a delete item option to a cart, currently i have....

Code:

//populate cart
details.push([vItemCode,vBaseColor,vSecondColor,vThirdColor]);
//loop through cart and output it into the text field

[code]....

how could i add a delete button to remove certain items?

View 3 Replies

Flash :: Greensock Library Which Is The Best Option?

Nov 30, 2009

i am new in flash development, i heard that Greensock lib is the best one. But when am trying to download its really confusing. there are a lot of names like

* TweenNano
* TweenLite
* TweenMax
* TimelineLite
* TimelineMax
* Tweening Platform v11

Which is the best or full featured lib.. where do i get the download link for the complete package or. lease guide me if am wrong.

View 6 Replies

Android :: When Should Use The CPU Or Or The GPU Compiler Option In Flash?

Mar 8, 2011

I've read through this section of Adobe's excellent 10.1 optimization tips. I found the statement below to be very helpful. Is there anything else to look out for? Is the dumbed-down difference just: use the GPU for raster and CPU for vector graphics?

The GPU is only effective for bitmaps, solid shapes, and display objects that have the cacheAsBitmap and cacheAsBitmapMatrix set. When the GPUis used in tandem for other display objects and this generally results in poor rendering performance.

View 3 Replies

Actionscript 3 :: Can't Realize Multiline Option?

Jul 15, 2011

I need to realize textbox autoresizing in actionscript3(IDE - adobe flash pro cs3). For example my textarea is in width 100 px, user has been wrote in it something, that is bigger than 100 px, then my textbox should become increasingly.Also I can't realize multiline option: when the text goes beyond the textbox, it starts to scroll. In line type I've chosen 'multiline'.

View 3 Replies

Actionscript 3 :: Use Restrict Option With Other Languages?

Oct 31, 2011

How can I use restrict option of the TextField class with other languages?[code]...

How can I use it to enable to add just basic punctuation characters for example for hebrew or for so cyrilic languages taht use UTF-8 encoding?

View 1 Replies

ActionScript 3.0 :: Bulkloader As An Option To Library?

Jan 28, 2009

I'm having a little issue during my project, cause I can't use those "normal" preloaders. The problem is that I have all the website-graphics in the library, export in frame 1 (because I don't have any more frames than that, everything is done by actionscript), so I need some magic trick to show the loading bar, while loading, though everything is in the library... I tried this one here, to load my stuff from another swf :[URL] BUT... it gave me this little error here:

[Code]...

View 0 Replies

ActionScript 3.0 :: Delete Option On Cart?

Jan 19, 2010

I have my cart data stored using...

ActionScript Code:
details.push([ItemCode,ItemColour,ItemName,ItemCost]);

I then output this cart on my movie file by using...

ActionScript Code:
var test:String = "";
//loop through cart and output it into the text field
for (i = 0; i < details.length; i++)[code]....

the cart items are outputted into a dynamic text field. The problem is that next to each item i need to add a delete button that deletes the specific row that it is placed upon.i know i could use splice to remove the item from the array, but the problem is getting to this stage first.

View 1 Replies

ActionScript 2.0 :: Use Undo Option In Application

Feb 22, 2007

I have developed an small application in flash 8. It is creating xml at runtime and add new nodes,delete particular nodes at run time. I want to use undo option in this application.

View 5 Replies

ActionScript 2.0 :: LoadVars Correct Option?

Jan 7, 2008

I am required to send an http request to a server which will get me some xml. I am using LoadVars to do the job.

Code:
var str = "http://release.theplatform.com/content.select?pid=yigHHIb89BkaWJnMmg92cfLGmAIMqGZn&UserName=cmsguest@cnbc.com&key=luocyXPcWOvIJOX2NQZTB4TutU0%3D";
var my_lv:LoadVars = new LoadVars();

[Code]...

View 1 Replies

ActionScript 3.0 :: Option For Creating Bullets?

May 7, 2009

I could create a movie clip for a bullet and create a new instance of one every time a bullet is fired. Then, I could have 100 little bullets all flying around checking collision detection...

There must be a better, more efficient way to do bullets. Anyone know of anything already out there?Otherwise, I could create a collision detection queue for the bullets, or predict where the bullet will fly (since it is usually always linear), but if the bullets become larger, the actual movie clip of the bullet may be wide enough to hit something, but the line the bullet is traveling does not necessarily hit that other object.

But is there a fast, efficient system or way of handling things already out there?

View 2 Replies

ActionScript 2.0 :: Best Option To Display Html

Jul 8, 2009

I'm working on writing a new testing utility for my company, and I'm not sure what the correct answer is on this one. Their existing software uses HTML to give and score online tests, and the HTML works with mod_perl and mysql to send and receive the data. I've got the new system 90% functional, except one part.

the questions and answers are stored in the database AS HTML. They are send to the flash movie via loadvars, and I have even gotten them to start displaying. My problems however are that the images do not seem to be loading properly every time, the scrolling of the textarea doesn't seem to work AT ALL, and even when the images do load, they are not lined up properly (adobe says : "An image loaded using the IMG tag will appear on the screen on the line following the IMG tag." Now why the hell would I want it to do that?!?!?!?!)

[Code]...

View 3 Replies

ActionScript 3.0 :: Transparent FLV And Close Option?

Jun 15, 2010

I have rendered out a FLV with alpha enabled and using wmode options correctly, i am able to get my flash content embed on top of my pages, over the content.

1) I need the embedded flash content to have a close button, otherwise what i am seeing is a flash movie playing on without an option to close. Tried a button with
on

(release){
getURL("java script:window.opener=self;self.close();");
}

2) Also I need to start this content in the webpage using a mouse over over a button. I know most of you can do it easily.

View 1 Replies







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