Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Flash - Php - Combobox



HiI want to fill my combobox component with data that I get from a php script.This is how I get data from php&city1=ABBENBROEK&&city2=AFFERDEN&&city3=ALBERGEN&&city4=ALKMAAR&.......How can I populate my combox? I want to use loadvars.....TxTom



Adobe > Flash Data Integration
Posted on: 07/08/2008 01:13:24 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

ComboBox Doesn't Use ComboBox Assets
I've been customizing some components, and discovered that the ComboBox doesn't actually use the ComboBox Assets, but instead uses the ScrollBar Assets. I need to have a slightly different design for the ComboBox down button. Does anyone know how to make the ComboBox use it's own assets, perhaps by editting the ComboBox.as or ComboBase.as file?

Thanks.

Combobox Help (flash MX)
Hi,
I have a combobox called indexBox with labels 0,A,B,C ... and data 0, goto5, goto10, goto15... The idea is that if the user selects A a clip will be played from frame 5 to 9, if B than 10 to 14 and so on. The code I tried is:

onChange = function () {
if (indexBox.getValue() == "goto5") {
gotoAndPlay(5);
}
else {
if (indexBox.getValue() == "goto10") {
gotoAndPlay(10);
}
}
}

The problem here is that only the first selection works and it gets stuck there. The other problem is that it's driving me nuts.
Any ideas will be appriciated.

ASP Flash Combobox
Hi,
I need to know how to dynamically populate a FLASH MX combobox with asp data taken from a database.
I knnow how to write the asp script and write the values into a variable, BUT i don't know how to write the flash actionscript in-order to handle the data contained in the variable to dislay it in the combobox. ALSO i need to know once a selection have been made from the combobox, how to write it's value to a variable.


Many Thanks In Advance,

Flash CS3 Combobox
I'm trying to use the combobox component in Flash CS3 using Actionscript 2.0to load different PDF files depending on the selection and I can't find a good tutorial to do it. This could be a simple task but I'm a newbie.

Please help. . . . .Thanks!!!

ComboBox Problem, Displays A "text Box Like" Object Instead Of A ComboBox
Hello friends,

A friend of mine is having a tough time getting a ComboBox integrated into an existing flash movie, to work right.

Here's the story so far.....

The ComboBox when tried out in a sample new file works absolutely fine, but when the same thing (see code below) is added to
an existing movie (which has a preloader in Scene 1) does not work at all. Instead, it displays a "text-box-like" object in place of a
ComboBox...


Code:


form = new Object();
form.change = function (evt){
trace(evt.target.selectedItem.label);
}
comboBox.addEventListener("change", form);



Now, is there a possibility that because a preloader exists in the movie, the ComboBox does not work, not sure on this reasoning!

If someone could help out here, I'd really appreciate it!

Flash MX And Using Components (combobox)
I am trying to set up a combobox im my flash document. How would I allow a list of items from a ComboBox to become active. Allowing movement from a click to a instance on a timeline is what I am trying to accomplish.

Any ideas are welcome
eyestothesky

Flash Forms With A ComboBox.
I'm just learning how to create forms in Flash, and so far it's quite simple. I was thinking about adding a combobox to my form and was wondering how to Actionscript it. I'm using CGI with my forms. Any websites or resources to look at?

Combobox Question (Flash MX)
I have a Webpage using frames,
I use a frame to place
a Flash Animation with more comboboxes

every combobox describes a member of the/my family, when selected one of the items in a combobox, I want a page to be opend in the other frame, I've wandered thru the Helpfiles... but somehow I didn't find the right clue.. maybe I overlooked something

may be some actionscripting ??

Can Anyone help me with this "problem" ??

greetzzz John

Customimizing Combobox, Flash MX
HI all.

Anyone knows if is it possible to change the text size of only some items of a combobox?

I was trying with FStyleFormat.textSize, but i dunno how to especify only the items (labels) i want to be in other size.

Thanx in advance.

Passing ComboBox Value's From Flash
Hi..

I'm trying to submit a form from flash to an external notes database, I can get the text boxes for Name, Address etc to pass but I cant get the value of the dropdown boxes to come through.. here's the code on my submit button, the one marked in bold is the dropdown:

on(release) {
sender = new LoadVars();

sender.Forename = Forename.text;
sender.Surname = Surname.text;
sender.Dob = Dob.text;
sender.Address = Address.text;
sender.City = City.text;
sender.Postcode = Postcode.text;
sender.Tel = Tel.text;
sender.Email = Email.text;
sender.DJ = DJ.text;
sender.Club = Club.text;
sender.Hear = Hear.text;
sender.Occupation = Occupation.text;
sender.Mobile = Mobile.text;
sender.Add2 = Add2.text;
sender.Title = Title.text;

sender.send("http://blahblahblah","_blank","post");

}

I know I need to put something else instead of .text but I've tried .selected .value and a few others but it still passes nothing. I've put Mr, Mrs etc.. in the Labels and Data section of the components properties.. what am I missing?

Thanks, Rockstar.

ps, thanks to Lexicon for all the help so far!

ComboBox Customization In Flash MX
Hey,

So, I've been trying for two days to try and get the UI component combobox in Flash MX to become a rounded rectangle. Now I know Flash MX 2004 ships with the a rounded rectangle component, but I need this to work with ActionScript 1, so MX 2004 won't work.

I have tried editing the FComboBox, the btnDownArrow and the faderbox, but everytime I try and make rounded corners, they won't fit properly, or the alignment is completely screwed up.

Is ther a quick fix that I have overlooked? Or do I have to tediously try and move the down arrow, the fader box, etc until they fit perfectly?

I have attached the ultimate goal so you can get an idea as to what I am aiming for.

I'm grateful for any help. Even if it's a simple "that's not ever gonna work."

Customize Flash ComboBox
I want to customize the flash built in combo box component to make it look less OSX/Mac like. Is there a way to make them look significantly different, besides just colors and effects?

Flash ComboBox Not Displaying
Heya,

I have a Flash file that utilizes a CFC and MSSQL Server 2000 to return some variables in the ComboBox component. The structure of my movie is as follows:

(Preloader)
(Pages folder) : [ Houses the folders: About, Pictures, Story, and Contact ]
- The file that I need to work on is in the contact folder.
In the contact folder, a movie clip named contact exists, which calls another movie clip named Content.

Whenever I place a combo box on Content (or on ANY of my Flash movie clips), the combo box returns blank.

To test my code, I rebuilt the Contact page on its own flash file, and it worked properly.

If anyone has an idea on what would be causing this error, how to correct it, or a suggestion, I'm ready to listen.


Thanks!

[Problem] Flash 8 - ComboBox
Hey ppl,



I have a big problem with flash 8! Like in image above, i want to use 2 ComboBox to select certain values, and a button "Show" that shows in a text field some text accordingly to the selected value in the ComboBox. Someone can help me with this or show me here I can learn to do that?

Best regards

Flash Component ComboBox
Hey, im sorry i keep posting a topic almost the same thing, but this is making me mad. I have a ComboBox with the makes of cars, EX: Acura, BMW, Chevrolet, ETC. Do I enter the "Makes" into the Labels or Data Place? And I want to make it so when I click on "Acura" right next to it, it shows the models of the cars and I can click on the models to bring up SPECS on the cars? I want this to happen for ALL MAKES AND MODELS!! Please help im really trying, but no such luck!

Flash Newbie (ComboBox)
Hello everyone!
I need help!
I got this project where I have to put also a jump menu
so I thought about comboBox
the only problem is that I've never used it before
Basicaly I need that every item in the menu jumps to a different scene of the animation
Please, can anyone explain to me from the begining to the end how does it work
thanks

Flash ComboBox Border
I am trying to change the border of the TextInput area of the comboBox component but so far have only been able to change the List border.  Can anyone help?

Combobox In Flash Mx 2004
Hi dear helper,

Basic question I know, I know...
but how can I make a combobox work in flash mx 2004?
If a user chooses something, the movie should go to a specified frame in a specified scene...

tnx in advance,

cheers,
d2c

Flash And Paypal And A Combobox
Hi I've done a lot of searching but can't see a reason why this isn't working.

The form works fine when I put in a normal number eg 22.00 in the"formData.amount" however when I repace it with "combo" I get the message "Please enter an amount greater than zero" in paypal. So its not picking up the variable "combo" value.

I'm using a flash combobox component to get the value and when I trace the value it works but the paypal form doesn't seem to recognise it. Is there something wrong with the syntax? Any help would be great!!

Code:

// function to display the selection
function zonehandler (component) {
   combo = component.getSelectedItem().data ;
   trace ( combo );
}


myPurchaseButton.onRelease = function(){
formData = new LoadVars();
formData.cmd = '_cart';
formData.business = 'info@testsite.com';
formData.item_name = 'Where Have You Been';
formData.item_number = 'whyb';
formData.amount = 'combo';
formData.currency_code = 'EUR'
formData["add"] = "1";
formData.send('https://www.paypal.com/cgi-bin/webscr', formData, 'POST');

}[/code]

How To "Tab' Out A Combobox From Flash MX UI Components
Hi,

in a flash form the user can go through the different input textfields by using the Tab-key.

The user can go also go, by using the Tab-key, to the next combobox-component.

But he or she can't tab out it again. The user has to use the mouse to point to the next object.

Is there a way to solve this?

Script - Combobox Question (Flash MX)
I have a Webpage using frames,
I use a frame to place
a Flash Animation with more comboboxes

every combobox describes a member of the/my family, when selected one of the items in a combobox, I want a page to be opend in the other frame, I've wandered thru the Helpfiles... but somehow I didn't find the right clue.. maybe I overlooked something
I'll think I add some actionscripting??

Can Anyone help me with this "problem" ??

greetzzz John

Flash MX ComboBox Component Problem
I have created a Flash MX ComobBox from the Components. I have populated the list from an XML file. No selected item appears in the combobox. Using the drop-down the list is populated. Select from the list and nothing appears in the selected header. Press the drop-down and the selected item seemed to be selected. Use combo.getSelectedItem().data after a change and the correct selected option is shown.



The component is behind a timeline mask. Will this make a difference?

Attempting To Use ComboBox On Flash 6 Form
I recently was told by a client to include a couple of drop down menus on a form that is being developed in Flash MX. Problem is when I process the form the selected data from the combo box components does not show up. How can I make that work?

Flash Form Using PHP (combobox Trouble)
I'm using a tutorial on Flash-Based Email Form Using PHP but I'm having trouble with ComboBoxes.

Can anyone familiar with this tutorial give me a hand?

Here's the low-down.

I want to pass a variable from a ComboBox to my PHP script - and I'm not sure how to do it. I've done a search on Google, but couldn't find anything that I could quite understand.





























Edited: 06/14/2007 at 01:34:22 PM by j-paintrain

Newbie - Dependable ComboBox Flash 8
Hi everyone, I've never used this before, so go easy on me. I'm having trouble with getting a dependable combobox functioning. Actually, I don't have a clue. So could someone point me in the direction of a tutorial or functioning example I could download as a guide. I have one for MX, but it has a variable not present in Flash 8 and I have no idea what to do with it or how to recreate it.

Cheers,

Combobox And Flash Player Version 9,0,16,0
Does anybody know that if you use a combobox component in flash, it creates conflict with specific sub version of flash player like: 9,0,16,0 and does not load properly and the flsh file is stuck on the first frame of the movie.

The file runs ok on sub version like: 9,0,45,0

Any suggestions to fix this problem?

Flash/php Form With Checkbox And Combobox.
I am making a flash / php email form and I want the form to have a checkbox asking if the user owns their own home. Also, I added a combo box that relates to a question asking how many people live in the house, with options of 1, 2, 3, 4, 5+. Now, I would like to know how to make the actionscript / php code have in the email it submits whether or not they checked the box, and which of the combo box options they chose.

Flash Form Using PHP (combobox Trouble)
I'm using Senocular's tutorial on Flash-Based Email Form Using PHP but I'm having trouble with ComboBoxes.

Can anyone familiar with this tutorial give me a hand?

I want to pass a variable from a ComboBox to my PHP script - and I'm not sure how to do it.

Help With Code Combobox, Get Xml-data (Flash CS3/AS3)
Hi,

Chris Brimelow created a file with Dynamic Dropdowns with external XML.


The code:


Code:
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.load(new URLRequest("autos.xml"));
xmlLoader.addEventListener(Event.COMPLETE, getXML);
makes.prompt = "Select a make";
var xml:XML;
var makeArr:Array = new Array();
var modelArr:Array = new Array();
makes.addEventListener(Event.CHANGE, getModels);
models.addEventListener(Event.CHANGE, getResult);
function getXML(e:Event):void
{
xml = new XML(e.target.data);
var il:XMLList = xml.auto;
var ml:XMLList = xml.auto.model;
for(var i:uint=0;i<il.length();i++)
{
makeArr[i] = new Array(il.@name[i],il.@id[i]);
modelArr[i] = new Array(il.@id[i]);
for(var x:uint=0;x<il[i].model.length();x++)
{
modelArr[i].push(il[i].model[x]);
}
}
getMakes();
}
function getMakes():void
{
for(var i:uint=0;i<makeArr.length;i++)
{
makes.addItem({label:makeArr[i][0],data:makeArr[i][1]});
}
}
function getModels(e:Event):void
{
models.removeAll();
models.prompt = "Select a model";
var theMakeID:Number = makes.selectedItem.data;
for(var i:uint=0;i<modelArr.length;i++)
{
if(modelArr[i][0]==theMakeID)
{
for(var x:uint=1;x<modelArr[i].length;x++)
{
models.addItem({label:modelArr[i][x],data:modelArr[i][x]});
}
}
}
}
function getResult(e:Event):void
{
result_mc.text = "You have selected the " + makes.selectedItem.label + " " + models.selectedItem.label + "!";
}
If I change the result_mc.text to show makes.selectedItem.data instead of label it works fine. But it doesnt work on models.selectedItem.data, then it just show the models label-name.

Please anyone have any idea what to change to get data from models?
(I need the data for url-link after you choosed model.)


Here's links to the fla and xml,

http://chrisbrimelow.com/blog/dropdown.fla
http://chrisbrimelow.com/blog/autos.xml

and remember the code is from http://chrisbrimelow.com/blog/?p=18.

Thank you


ps. xml looks like this:

Code:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<autos>

<auto id="227" name="Acura">
<model id="2553">Legend</model>
<model id="2557">RL</model>
<model id="2560">TL</model>
<model id="2561">TSX</model>
</auto>
<auto id="232" name="Audi">
<model id="2579">A8</model>
<model id="2583">Other</model>
<model id="2588">TT</model>
</auto>
<auto id="235" name="BMW">
<model id="2594">3 Series</model>
<model id="2595">5 Series</model>
<model id="10124">M Roadster</model>
<model id="2603">M5</model>
<model id="2605">Other</model>
<model id="2606">X3</model>
<model id="2608">Z3</model>
<model id="2609">Z4</model>
</auto>
<auto id="236" name="Buick">
<model id="2611">Century</model>
<model id="3504">LaCrosse</model>
<model id="2614">LeSabre</model>
<model id="2615">Park Avenue</model>
<model id="2616">Rainier</model>
<model id="2618">Regal</model>
<model id="2619">Rendezvous</model>
<model id="2620">Riviera</model>
</auto>
<auto id="237" name="Cadillac">
<model id="2629">Catera</model>
<model id="2631">CTS</model>
<model id="2633">DeVille</model>
<model id="3467">DTS</model>
<model id="2634">Eldorado</model>
<model id="2635">Escalade</model>
<model id="2638">Fleetwood</model>
<model id="2643">Other</model>
<model id="2639">Seville</model>
<model id="2641">SRX</model>
<model id="3405">STS</model>
</auto>
<auto id="238" name="Chevrolet">
<model id="2650">Avalanche</model>
<model id="2651">Aveo</model>
<model id="2653">Blazer</model>
<model id="3387">C1500</model>
<model id="2654">Camaro</model>
<model id="2655">Caprice</model>
<model id="2656">Cavalier</model>
<model id="2658">Cobalt</model>
<model id="2659">Colorado</model>
<model id="2661">Corvette</model>
<model id="2666">Equinox</model>
<model id="2667">Express</model>
<model id="3495">HHR</model>
<model id="2668">Impala</model>
<model id="2669">Lumina</model>
<model id="2670">Malibu</model>
<model id="10073">Malibu Maxx</model>
<model id="2672">Monte Carlo</model>
<model id="2673">Other</model>
<model id="2675">S-10</model>
<model id="3425">Silverado</model>
<model id="2644">Silverado 1500</model>
<model id="10538">Silverado 1500 Classic</model>
<model id="2646">Silverado 2500HD</model>
<model id="2647">Silverado 3500</model>
<model id="2676">SSR</model>
<model id="2677">Suburban</model>
<model id="2678">Tahoe</model>
<model id="2679">Tracker</model>
<model id="2680">TrailBlazer</model>
<model id="10137">TrailBlazer EXT</model>
<model id="2681">Uplander</model>
<model id="2682">Van</model>
<model id="2683">Venture</model>
</auto>
<auto id="239" name="Chrysler">
<model id="2685">300</model>
<model id="10606">Aspen</model>
<model id="2687">Concorde</model>
<model id="2695">Other</model>
<model id="2696">Pacifica</model>
<model id="2698">PT Cruiser</model>
<model id="2700">Sebring</model>
<model id="2702">Town & Country</model>
</auto>
<auto id="406" name="Coachmen">
<model id="10465">Other</model>
</auto>
<auto id="242" name="Dodge">
<model id="2712">Avenger</model>
<model id="10057">Caliber</model>
<model id="2713">Caravan</model>
<model id="2714">Charger</model>
<model id="2720">Dakota</model>
<model id="2721">Daytona</model>
<model id="2723">Durango</model>
<model id="3433">Grand Caravan</model>
<model id="2725">Intrepid</model>
<model id="2727">Magnum</model>
<model id="2729">Neon</model>
<model id="2731">Other</model>
<model id="3404">Ram</model>
<model id="2733">Ram 1500</model>
<model id="3530">RAM 250</model>
<model id="2734">Ram 2500</model>
<model id="2745">Stratus</model>
<model id="2746">Viper</model>
</auto>
<auto id="412" name="Fleetwood">
<model id="10471">Other</model>
</auto>
<auto id="245" name="Ford">
<model id="2758">Aerostar</model>
<model id="2768">Crown Victoria</model>
<model id="2769">E-150</model>
<model id="3470">Econoline Wagon</model>
<model id="10612">Edge</model>
<model id="2776">Escape</model>
<model id="2777">Escort</model>
<model id="2778">Excursion</model>
<model id="2780">Expedition</model>
<model id="2781">Explorer</model>
<model id="10058">Explorer Sport Trac</model>
<model id="2784">F-150</model>
<model id="2786">F-250</model>
<model id="2787">F-350</model>
<model id="2789">Five Hundred</model>
<model id="2790">Focus</model>
<model id="2791">Freestar</model>
<model id="2792">Freestyle</model>
<model id="10005">Fusion</model>
<model id="2793">GT</model>
<model id="2795">Mustang</model>
<model id="10599">Mustang SVT Cobra</model>
<model id="2796">Other</model>
<model id="2798">Ranger</model>
<model id="2799">Taurus</model>
<model id="2801">Thunderbird</model>
<model id="2803">ZX2</model>
</auto>
<auto id="246" name="Geo">
<model id="2804">Metro</model>
</auto>
<auto id="247" name="GMC">
<model id="2815">Envoy</model>
<model id="2816">Envoy XL</model>
<model id="2817">Jimmy</model>
<model id="2818">Other</model>
<model id="3403">Sierra</model>
<model id="2824">Sierra 1500</model>
<model id="10546">Sierra 1500 Classic</model>
<model id="3551">Sierra 2500HD</model>
<model id="10548">Sierra 2500HD Classic</model>
<model id="2827">Sonoma</model>
<model id="2830">Yukon</model>
<model id="10065">Yukon XL</model>
</auto>
<auto id="418" name="Gulfstream">
<model id="10477">Other</model>
</auto>
<auto id="303" name="Harley Davidson">
<model id="10751">Other</model>
</auto>
<auto id="419" name="Holiday Rambler">
<model id="10478">Other</model>
</auto>
<auto id="248" name="Honda">
<model id="2832">Accord</model>
<model id="10752">Accord EX</model>
<model id="2833">Civic</model>
<model id="2834">CR-V</model>
<model id="2836">Element</model>
<model id="2838">Odyssey</model>
<model id="2840">Passport</model>
<model id="2841">Pilot</model>
<model id="3540">Ridgeline</model>
<model id="2843">S2000</model>
</auto>
<auto id="249" name="Hummer">
<model id="2845">H2</model>
<model id="3426">H3</model>
</auto>
<auto id="250" name="Hyundai">
<model id="2847">Accent</model>
<model id="2848">Elantra</model>
<model id="10551">Entourage</model>
<model id="2851">Santa Fe</model>
<model id="2853">Sonata</model>
<model id="2854">Tiburon</model>
<model id="2855">Tucson</model>
</auto>
<auto id="251" name="Infiniti">
<model id="2869">Q45</model>
<model id="2870">QX4</model>
</auto>
<auto id="252" name="Isuzu">
<model id="2883">Other</model>
<model id="2885">Rodeo</model>
</auto>
<auto id="253" name="Jaguar">
<model id="2903">S-Type</model>
<model id="2905">XJ</model>
<model id="2909">XJR</model>
</auto>
<auto id="254" name="Jeep">
<model id="2914">Cherokee</model>
<model id="3401">CJ7</model>
<model id="2915">Comanche</model>
<model id="3458">Commander</model>
<model id="2916">Grand Cherokee</model>
<model id="2917">Grand Wagoneer</model>
<model id="2918">Liberty</model>
<model id="2919">Other</model>
<model id="10619">Patriot</model>
<model id="2921">Wrangler</model>
</auto>
<auto id="423" name="Keystone">
<model id="10482">Other</model>
</auto>
<auto id="255" name="Kia">
<model id="2923">Optima</model>
<model id="2926">Sedona</model>
<model id="2927">Sephia</model>
<model id="2928">Sorento</model>
<model id="2929">Spectra</model>
</auto>
<auto id="257" name="Land Rover">
<model id="2935">Discovery</model>
<model id="2936">Discovery Series II</model>
<model id="2937">Freelander</model>
<model id="2939">LR3</model>
<model id="2941">Range Rover</model>
</auto>
<auto id="258" name="Lexus">
<model id="2948">ES 300</model>
<model id="10045">ES 330</model>
<model id="10553">ES 350</model>
<model id="2950">GS 300</model>
<model id="2953">GX 470</model>
<model id="2955">LS 400</model>
<model id="2961">RX 300</model>
<model id="2962">RX 330</model>
<model id="10059">RX 350</model>
<model id="2965">SC 430</model>
</auto>
<auto id="259" name="Lincoln">
<model id="2966">Aviator</model>
<model id="10064">LS</model>
<model id="2970">Mark LT</model>
<model id="10613">MKX</model>
<model id="10608">MKZ</model>
<model id="2973">Navigator</model>
<model id="2974">Other</model>
<model id="2975">Town Car</model>
<model id="2976">Zephyr</model>
</auto>
<auto id="263" name="Mazda">
<model id="2987">626</model>
<model id="3578">B2200</model>
<model id="2993">B3000</model>
<model id="10555">CX-7</model>
<model id="10618">CX-9</model>
<model id="2996">Mazda3</model>
<model id="2997">Mazda6</model>
<model id="10557">MAZDASPEED MAZDA6</model>
<model id="3001">MPV</model>
<model id="3003">MX-5 Miata</model>
<model id="3006">Other</model>
<model id="3008">Protege</model>
<model id="3011">RX-8</model>
<model id="3012">Tribute</model>
</auto>
<auto id="264" name="Mercedes-Benz">
<model id="3047">C-Class</model>
<model id="3048">CL-Class</model>
<model id="10689">E320</model>
<model id="3604">M-Class</model>
<model id="3054">S-Class</model>
<model id="3055">SL-Class</model>
</auto>
<auto id="265" name="Mercury">
<model id="3112">Cougar</model>
<model id="3113">Grand Marquis</model>
<model id="3114">Marauder</model>
<model id="3115">Mariner</model>
<model id="3116">Milan</model>
<model id="3117">Montego</model>
<model id="3118">Monterey</model>
<model id="3119">Mountaineer</model>
<model id="3121">Other</model>
<model id="3122">Sable</model>
<model id="3124">Tracer</model>
</auto>
<auto id="267" name="MINI">
<model id="3129">Cooper</model>
</auto>
<auto id="268" name="Mitsubishi">
<model id="3135">Eclipse</model>
<model id="3136">Endeavor</model>
<model id="3138">Galant</model>
<model id="3141">Mirage</model>
<model id="3142">Montero</model>
<model id="3519">Montero Sport</model>
<model id="3143">Other</model>
<model id="10060">Raider</model>
</auto>
<auto id="429" name="Newmar">
<model id="10488">Other</model>
</auto>
<auto id="269" name="Nissan">
<model id="3155">350Z</model>
<model id="3156">Altima</model>
<model id="3157">Armada</model>
<model id="3160">Frontier</model>
<model id="3162">Maxima</model>
<model id="3163">Murano</model>
<model id="3165">Other</model>
<model id="3166">Pathfinder</model>
<model id="3168">Quest</model>
<model id="3169">Sentra</model>
<model id="3171">Titan</model>
<model id="10558">Versa</model>
<model id="3173">Xterra</model>
</auto>
<auto id="270" name="Oldsmobile">
<model id="3177">Alero</model>
<model id="3179">Bravada</model>
<model id="3180">Ciera</model>
<model id="3182">Cutlass</model>
<model id="3183">Intrigue</model>
<model id="3185">Other</model>
<model id="3186">Regency</model>
<model id="3187">Silhouette</model>
</auto>
<auto id="275" name="Plymouth">
<model id="3196">Acclaim</model>
<model id="3202">Neon</model>
</auto>
<auto id="276" name="Pontiac">
<model id="3209">Aztek</model>
<model id="3210">Bonneville</model>
<model id="10559">G5</model>
<model id="3212">G6</model>
<model id="3213">Grand Am</model>
<model id="3214">Grand Prix</model>
<model id="3215">GTO</model>
<model id="3217">Montana</model>
<model id="3220">Solstice</model>
<model id="3222">Sunfire</model>
<model id="3224">Torrent</model>
<model id="3226">Vibe</model>
</auto>
<auto id="435" name="RV">
<model id="10494">Other</model>
</auto>
<auto id="280" name="Saab">
<model id="3245">900 Turbo</model>
</auto>
<auto id="281" name="Saturn">
<model id="10560">Aura</model>
<model id="3252">Ion</model>
<model id="3254">L200</model>
<model id="3256">LS</model>
<model id="10609">Outlook</model>
<model id="3263">SC</model>
<model id="3266">SL</model>
<model id="3271">VUE</model>
</auto>
<auto id="284" name="Subaru">
<model id="3296">Other</model>
</auto>
<auto id="305" name="Suzuki">
<model id="3659">Hayabusa</model>
</auto>
<auto id="285" name="Suzuki">
<model id="3309">XL-7</model>
</auto>
<auto id="286" name="Toyota">
<model id="3336">4Runner</model>
<model id="3310">Avalon</model>
<model id="3311">Camry</model>
<model id="10563">Camry Solara</model>
<model id="3312">Celica</model>
<model id="3314">Corolla</model>
<model id="10564">FJ Cruiser</model>
<model id="3317">Highlander</model>
<model id="3319">Matrix</model>
<model id="3321">MR2</model>
<model id="3324">Pickup</model>
<model id="3327">RAV4</model>
<model id="3328">Sequoia</model>
<model id="3329">Sienna</model>
<model id="3330">Solara</model>
<model id="3333">Tacoma</model>
<model id="3334">Tercel</model>
<model id="3335">Tundra</model>
</auto>
<auto id="287" name="Volkswagen">
<model id="3343">Golf</model>
<model id="3345">Jetta</model>
<model id="3346">New Beetle</model>
<model id="3347">Other</model>
<model id="10567">Rabbit</model>
</auto>
<auto id="288" name="Volvo">
<model id="3375">Other</model>
<model id="3357">S40</model>
<model id="3363">V40</model>
<model id="3367">XC90</model>
</auto>
<auto id="443" name="Winnebago">
<model id="10502">Other</model>
</auto>
</autos>

Urgent:Flash And HTML ComboBox
Hi

I am new here...
Here's my headache: I need to load different .swf files into an empty movie clip using an HTML combobox (not Flash ComboBox which is easy to do). So based on the comboBox selection, different .swf movies will be loaded into an empty clip inside the main Flash movie...

Have any of you experience this? Thanks if any of you could help...

Flash Script - Combobox Component
This is an article discussion thread for discussing the SitePoint article, "Flash Script - Combobox Component"

Flash Mx 2004 Combobox Component
Hello

I'm Farley new to flash and don't have much experience with action scripts
and I got stuck on trivial thing. I would like to use combobox component to
group few links, nothing complicated - click on combobox select label, go to
page.

Now I was digging around the internet and didn't find anything simple
(everything involves xml, dynamically adding/removing slots and so on :)

So if anyone can help me or put me in the right direction I would be most
grateful.



Riwer

[flash] ComboBox Or IF Statement Problems... Help?
I want to show you the file I'm working on. It's a cubic feet calculator:
http://17style.com/linked/calculator.fla

My problem starts, I believe in line 47 of the code.

Two ComboBox are supposed to determine:

ModeBox: The method of shipment (Sea or Air)

LocBox: Local Freight Fee once on Destination


The problem is when publish the movie and change the value of the ComboBoxes the total doesn't change to reflect these changes as it should. For example if by Sea a shipment cost $100 and I change the ModeBox to Air the total should now display $250... or something similar, right?


The thing is I don't know if it's the ComboBox where I have the problem or with my IF statements. Can you help me out?

Oh by the way, make a text file called "variables.txt" and enter these:

Code:
&formula=1728&
&MINcf=3&
&MINwt=14.50&
&MIN_SEA=100&
&MIN_AIR=100&
&MODE_AIR=7&
&MODE_MAR=25&
&WEIGHTmin=45&
&WEIGHTfee=1&
&internalf=35&

Getting Flash Mx Combobox To Behave In Dreamweaver Mx
Hi I'm very much a newbie to flash mx and to this forum, so apologies if you've heard this one before. I have searched the forums to see if there's a solution, but i can't see one!

I've built a combobox in flash mx, i've exported it and put it into an html page in dreamweaver mx. when i test it in flash it drops down as it should. when its in dreamweaver, it tries to open upwards! I've fiddled around with settings on it and i can't do it! Somebody help me!

Any help in laymans terms would be good and v much appreciated.

How Do I Control Variables From ComboBox Values In Flash MX?
I've created a ComboBox using Flash MX's new ComboBox component...I have 3 values:

Jaguar
Porshe
Lamborgini

When the user clicks on say, Porshe, I have a movie clip with 3 labeled sectioned each containing text and an image of each of the cars. There is an instance of this movie clip on my root stage along with the ComboBox. The mc instance name is "cars." When the user clicks on the "Porshe" value in the ComboBox, how and where do I insert code so that an action is triggered that will make the instance of "cars" gotoAndStop at the frames labeled "Porshe" in the cars_mc?

Flash 2004 ComboBox Component Behind A Mask
Hi everyone,

I'm having a "little" problem masking a flash 2004 ComboBox and Button component. The label text of the Button and the content of the ComboBox are not visible. So, does anybody know what do i need to do in order to make the flash 2004 components text visible behind a mask?

In fact, i'm already tried with styles, but doesn´t work either. Thanks in advance.

Change Easing Of Combobox For Flash Mx 2004
I want some interactivity in my site so how can I change Easing of Combobox

Combobox - Why It Works In Flash Player Not Browser?
Hey experts - I have a simple combobox on a form. It is a list of states. Very typical stuff.

This is in an external .swf that is loaded when the user chooses to fill out the form. The form elements are nested within a couple movie clips that are masked.

When you click on the dropdown box, the labels display just fine. I have it set to display 6 rows.

In Flash Player, you can choose whatever you want and the combobox will function perfectly.

In the browser, (any browser on any platform), you can't choose anything above a certain _y point. For instance, on first dropdown, you can only choose the last in the list. You can't click on the scrollbar (above that _y point) either. It will just reset the combobox.

You can click on the down arrow and it will scroll just fine, but once the selections move above that certain _y point, they are no longer selectable.

The highlights work, but when you click it, it acts as though you clicked off the stage and closes itself up with the previous selection.

Please help me. I'm so tired of working with components, but my client won't let me have the user just type in the 2 letter abbreviation....ugh...

Thanks guys...

PS - Using Flash MX2004 and publishing as Flash 6. ActionScript 2.0.

How Do I Create A Drop Down Or Combobox Dropdown In Flash 8
I need create a control with a several names x number could be 2 to 20 names in the control the control needs to be a symbol that i can drop on the page in a scene better said is the stage being viewed at the time in a frame. The control needs to contain the names or could be actual loaded from a action script. How does one go about just getting the contol created and droped on the stage. The user will open up the control and it will list the names user selects the name and the name will be displayed in the text box when the control closes - Can you help me explaining the best way to go about this and give me a example of how to do it. THANKS!!!!

Using ExternalInterface From ComboBox Causes Flash Content To Break
I have a comboBox that calls a js function that spawns a new window.
The issue, is that after the user has clicked the item in the comboBox, and the new windows appears, the content, specificly the comboBox, breaks. At this point, close or ignore the spawned window. Try clicking the combobox again, the list box does not tween smoothly, if at all, in some cases the listbox only drops a little before stoping. This is an issue specific to flash player 9 on windows xp pro, using firefox. it works as expected with flash player 8 on mac and windows, also using the firefox browser. This does not appear to be an issue with mac osx 10.3.9.

i have souce files ziped here:
http://test.kineticbooks.com/jonathan/test.zip
and i have a live version here that you can just test with:
http://test.kineticbooks.com/jonathan/test.html

here is example code i have on the first frame of the fla, with a combobox in the library:









Attach Code

import mx.controls.ComboBox;
import flash.external.ExternalInterface;
//
function change(evtObj:Object)
{
tf.text = "selected item is "+ComboBox(evtObj.target).selectedItem.data;
ExternalInterface.call("newSizedWin","window.html",200,75);
}
//
var cb:ComboBox = ComboBox(createClassObject(ComboBox,"cb",10));
cb.move(10,30);
cb.dataProvider =
[
{label:"1",data:1},
{label:"2",data:2},
{label:"3",data:3},
{label:"4",data:4},
{label:"5",data:5}
];
cb.addEventListener("change",this);

ComboBox Component Used To Navigate Flash Slides
I'm using Flash CS3, and am trying to use a ComboBox Component to choose slide pages to navigate to. For example, the ComboBox Component has labels set as 1, 2, 3, and data set as HPage1, HPage2, HPage3. I'm trying to select a page from the ComboBox Component and go to that embedded slide. Why doesn't my code work below that is embedded in the 1st frame of my Flash file? Thanks. Nicholas

var myComboBoxListener:Object = new Object();
PageChoice.addEventListener("change",myComboBoxListener);

myComboBoxListener.change = function() {
_root.currentSlide.gotoSlide(_root.PageChoice.selectedItem.data);
}






























Edited: 12/17/2007 at 07:50:32 AM by NickMonk

How To Populate A ComboBox Properly With Flash Remoting
Hi

Got a question about ComboBox, I am populating a ComboBox with Flash Remoting. Currently I want to pull a Name column from a database. Right now I am populating a dataset. The ComboBox pulls from the dataset. However the Combobox displays the Name column plus two other columns.

How can I send out from the dataset just the Name Column to the ComboBox?

I include some code if it helps.
Thank you


Code:
#include "NetServices.as"
var frGatewayURL = "http://localhost/flashremoting/gateway.aspx";
var frServiceName = "test";

this.onLoad = function() {
NetServices.setDefaultGatewayUrl(frGatewayURL);
var frConnection = NetServices.createGatewayConnection();
var frService = frConnection.getService(frServiceName, this);

frService.getProjects();
}
function getProjects_Result(result) {
//projects is a dataset
projects.dataProvider = result;
}

function getProjects_Status(error) {
trace("-------- Remoting Error ---------");
this.type_txt = error.type;
this.desc_txt = error.type;
trace(error.type);
trace(error.description);
trace("---------------------------------");
}

Coordinating Combobox With Listbox In Flash Application
hello guys,
i want to amke one application in flash same functionality what is http://www.kbhome.com/dcenter/designCenter.aspx
has done.

can u guys tell me how to make selection of one item in combobox to update the value of the listbox below and how to make the different folders and subfolders with icon as they have done...

am still not actually very comfortable using componets..please help me on that

thanks

Changing Font In ComboBox (Flash UI Components Set 4)
trying my best but cant find it ???

any help much appreciated

thanx in advance

cheers

How To Populate A ComboBox Properly With Flash Remoting
Hi

Got a question about ComboBox, I am populating a ComboBox with Flash Remoting. Currently I want to pull a Name column from a database. Right now I am populating a dataset. The ComboBox pulls from the dataset. However the Combobox displays the Name column plus two other columns.

How can I send out from the dataset just the Name Column to the ComboBox?

I include some code if it helps.
Thank you


Code:
#include "NetServices.as"
var frGatewayURL = "http://localhost/flashremoting/gateway.aspx";
var frServiceName = "test";

this.onLoad = function() {
NetServices.setDefaultGatewayUrl(frGatewayURL);
var frConnection = NetServices.createGatewayConnection();
var frService = frConnection.getService(frServiceName, this);

frService.getProjects();
}
function getProjects_Result(result) {
//projects is a dataset
projects.dataProvider = result;
}

function getProjects_Status(error) {
trace("-------- Remoting Error ---------");
this.type_txt = error.type;
this.desc_txt = error.type;
trace(error.type);
trace(error.description);
trace("---------------------------------");
}

Coordinating Combobox With Listbox In Flash Application
hello guys,
i want to amke one application in flash same functionality what is http://www.kbhome.com/dcenter/designCenter.aspx
has done.

can u guys tell me how to make selection of one item in combobox to update the value of the listbox below and how to make the different folders and subfolders with icon as they have done...

am still not actually very comfortable using componets..please help me on that

thanks

Use Of Change Handler On Combobox In Flash Mx 2004
Hi all,

I am a complete beginner to flash and was going through some tutuorials from the macromedia site.

The tutorial uses flash but I have flash mx 2004 and I am stuck.

I have got round most of my problems but I am adding a combobox which needs to call a function which is placed in the change handler box in the properties inspector.

I dont have this line in MX 2004!!!! How do I do it???

Please help
Michael

ComboBox Component Not Working For Flash Slide Presentation
Hello Everyone!

I've created a Flash Slide Presentation using the ComboBox Component in Action Script 2.0. I created a ComboBox to be able to navigate between the slides. My ComboBox has an instance name of PageChoice. My slides have instance names of HPage1, HPage2, and HPage3. My ComboBox label parameter is set to 1, 2, and 3. My ComboBox data parameter is set to HPage1, HPage2, and HPage3. The code below creates no compile errors, but doesn't work. Clicking on the ComboBox choice results in no navigation to the appropriate slide. I get the same result whether I'm using Macromedia Flash MX Professional 2004 or Adobe Flash CS3 Professional. What am I missing here?

Thanks for your help!

Nicholas


var myComboBoxListener:Object = new Object();

myComboBoxListener.change = function() {
_root.currentSlide.gotoSlide(_root.PageChoice.selectedItem);
}

PageChoice.addEventListener("change", myComboBoxListener);

Flash Combobox, Check Box, Radio Buttons To Wok With Php For Email
Hi i'm a newbee in flash web designing can you help me out???? I'm making a reply form consist of text field, check buttons, combo box. think my acton script and php code has a problem. Can somebody help me out??? Thank you very much

Copyright © 2005-08 www.BigResource.com, All rights reserved