[Flashcoders] ComboBox drawing border on lost focus

2006-11-28 Thread Wade Arnold
I have a MM ComboBox component in a movieclip that extends UIComponent. When I select something from the ComboBox I get a yellow boarder around the movieclip that the combobox resides in. Once I move the mouse the yellow box disappears. Any ideas on where or what to start looking for? Thanks!

Re: [Flashcoders] ComboBox drawing border on lost focus

2006-11-28 Thread eric dolecki
focusRect On 11/28/06, Wade Arnold [EMAIL PROTECTED] wrote: I have a MM ComboBox component in a movieclip that extends UIComponent. When I select something from the ComboBox I get a yellow boarder around the movieclip that the combobox resides in. Once I move the mouse the yellow box

RE: [Flashcoders] ComboBox drawing border on lost focus

2006-11-28 Thread Wade Arnold
_focusrect = false; Much love! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of eric dolecki Sent: Tuesday, November 28, 2006 11:27 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] ComboBox drawing border on lost focus focusRect On 11/28/06

RE: [Flashcoders] ComboBox - green bounding box

2006-11-24 Thread Ned Perry
Hi I'm having a bit of a problem with some ComboBoxes. The ComboBoxes are in a swf that is loaded into another at runtime. The ComboBoxes work fine when I simply run the swf they're in. But when I load that swf in, and click on the ComboBoxes a green box bounding the dropdown is left visible

RE: [Flashcoders] ComboBox - green bounding box

2006-11-24 Thread Ned Perry
Thanks Mick That worked a treat! Ned -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mick G Sent: 24 November 2006 10:45 To: Flashcoders mailing list Subject: Re: [Flashcoders] ComboBox - green bounding box If you put an instance of the Combobox

[Flashcoders] ComboBox issue with attached movieclip

2006-11-22 Thread Martin Baltzer Hennelund
Hi, I attach a movieclip from library which includes a instance of ComboBox. After attachment I wait 3 frames then I populate the Combo in a for loop by calling the addItem() method. Problem is that I can't activate/open the combobox onClick. I can see that the title of the ComboBox is proper

[Flashcoders] ComboBox

2006-10-19 Thread Laurent CUCHET
There is 2 combobox on the stage, One_cb and two_cb One_cb.addItem({data:1, label:One}); One_cb.addItem({data:2, label:Two}); How can I do to fill two_cb (data and label) with a button ? Thank you for your tips, Laurent ___

Re: [Flashcoders] ComboBox

2006-10-19 Thread David Buff
]; } Two_cb.addItem(itemObject); } } May be there is something more simple... David Buff - Original Message - From: Laurent CUCHET [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, October 19, 2006 2:15 PM Subject: [Flashcoders] ComboBox There is 2

[Flashcoders] combobox label not displaying any text

2006-09-25 Thread Rich Rodecker
I have a combobox that I am using in a CellRenderer for a datagrid. For some reason the text for the selected item in the comboobox wont display. If i trace out the value of the text, it shows the right value, so I know its being set. I am setting embedFonts to true for the TextInput and

Re: [Flashcoders] combobox label not displaying any text

2006-09-25 Thread Andrei Thomaz
the font must be available as a symbol font in the library. And, in some cases, the font must be in the library of the main movie, in the case of combobox being in a movie loaded by another one. This is because Flash creates the combobox list in _level0. Sometime I created a combobox inside a

Re: [Flashcoders] combobox label not displaying any text

2006-09-25 Thread Rich Rodecker
i am embedding the font through a dynamic textfiled on the main timeline, since adding a font symbol takes up way more space. On 9/25/06, Andrei Thomaz [EMAIL PROTECTED] wrote: the font must be available as a symbol font in the library. And, in some cases, the font must be in the library of

Re: [Flashcoders] combobox label not displaying any text

2006-09-25 Thread Rich Rodecker
also, all the items in the combobox's dropdown display fine...its just the TextInput that shows the cb's selected item. On 9/25/06, Rich Rodecker [EMAIL PROTECTED] wrote: i am embedding the font through a dynamic textfiled on the main timeline, since adding a font symbol takes up way more

Re: [Flashcoders] combobox label not displaying any text

2006-09-25 Thread Rich Rodecker
i also notice if i set the DG's editable property to true, i cant enter any tex into the input field...wtf? On 9/25/06, Rich Rodecker [EMAIL PROTECTED] wrote: also, all the items in the combobox's dropdown display fine...its just the TextInput that shows the cb's selected item. On 9/25/06,

RE: [Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-07 Thread Merrill, Jason
-Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Pete Miller Sent: Thursday, September 07, 2006 10:24 AM To: Flashcoders mailing list Subject: RE: [Flashcoders] ComboBox,Depth, Draw API - Bug? I think you want to avoid using kCursor

Re: RE: [Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-07 Thread John Mark Hawley
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] ComboBox,Depth, Draw API - Bug? Thanks, I tried kTop and kTopmost as well, and it didn't work either. There is some kind of conflict between V2 components and the draw API depth which I can't seem to get

RE: RE: [Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-07 Thread Merrill, Jason
] On Behalf Of John Mark Hawley Sent: Thursday, September 07, 2006 11:17 AM To: Flashcoders mailing list Subject: Re: RE: [Flashcoders] ComboBox,Depth, Draw API - Bug? I almost always shoehorn all my v2 components into their own movieclips so I can ignore DepthManager completely. If each lives in a separate

[Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-06 Thread Merrill, Jason
Is this a bug? Try the sample code out below - Why is it that if you specify an explicit depth for a movie clip (SEE LINE 2 OF THE FIRST SET OF CODE BELOW) and draw on it with the draw API, and a comboBox made later with a depth of getNextHighestDepth() will have a drop down which displays over

RE: [Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-06 Thread Pete Miller
://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19435 P. -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Wednesday, September 06, 2006 3:31 PM To: Flashcoders mailing list Subject: [Flashcoders] ComboBox,Depth, Draw

RE: [Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-06 Thread Merrill, Jason
] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Pete Miller Sent: Wednesday, September 06, 2006 3:41 PM To: Flashcoders mailing list Subject: RE: [Flashcoders] ComboBox,Depth, Draw API - Bug? Try tracing the value that you get from getNextHighestDepth(). If the result is 1048575, you

RE: [Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-06 Thread Merrill, Jason
-Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Pete Miller Sent: Wednesday, September 06, 2006 3:41 PM To: Flashcoders mailing list Subject: RE: [Flashcoders] ComboBox,Depth, Draw API - Bug? Try tracing the value that you get from

[Flashcoders] ComboBox drop up

2006-08-07 Thread Robert Chyko
Any reasons why my ComboBox won't drop upwards even though I am running out of room? It is just getting cut off at the bottom of the movie. Hoping this is something stupid that I'm overlooking, but I'm kinda stuck so any ideas would be appreciated. Thanks, Bob Chyko

Re: [Flashcoders] ComboBox drop up

2006-08-07 Thread SWF Coder
Any reasons why my ComboBox won't drop upwards even though I am running out of room? It is just getting cut off at the bottom of the movie. Hoping this is something stupid that I'm overlooking, but I'm kinda stuck so any ideas would be appreciated. Thanks, Bob Chyko I don't think

[Flashcoders] ComboBox and Other Flash Components

2006-06-15 Thread Lieven Cardoen
I've created a ComboBox. Strangely when I open the combobox, the field with selections goes under the other components...??? Any idea as why. Swapdepths doesn't solve it. Lieven lieven cardoen indiegroup interactive digital experience engelse wandeling 2 k18 b8500 kortrijk T +32

[Flashcoders] ComboBox Halo

2006-06-15 Thread Matthew Simpson
Good Morning. I have a ComboBox on stage which is not behaving properly. When I pull down the list within the Combo the Halo surrounding the drop down list stays visible on stage also when I use the scrollbar to scroll down to a selection, the moment I move the mouse away from the scroll bar the

RE: [Flashcoders] ComboBox Halo

2006-06-15 Thread Steven Sacks
When I experience crazy behavior like this in Flash that absolutely shouldn't happen, I take a few steps. 1) Save and compact. Quit Flash. Restart my computer. 2) If that doesn't fix it, I try deleting the component from the library, save and compact, quit Flash, relaunch, put the component

RE: [Flashcoders] ComboBox and Other Flash Components

2006-06-15 Thread Steven Sacks
I've created a ComboBox. Strangely when I open the combobox, the field with selections goes under the other components...??? Is it on a lower layer in the timeline? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

RE: [Flashcoders] ComboBox and Other Flash Components

2006-06-15 Thread Joey Rivera
] On Behalf Of Steven Sacks Sent: Thursday, June 15, 2006 1:29 PM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] ComboBox and Other Flash Components I've created a ComboBox. Strangely when I open the combobox, the field with selections goes under the other components

RE: [Flashcoders] ComboBox Halo

2006-06-15 Thread Matthew Simpson
Steven, The problem went away with a save and compact. Thanks for the assistance! Matthew -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent: Thursday, June 15, 2006 1:12 PM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders

[Flashcoders] ComboBox won't scroll

2006-06-02 Thread nobski
Very simple little problem probably and hopefully: When adding items to a ComboBox using addItem() and setting its rowCount to anything less than the number of added items, the ComboBox renders empty completely and shows no scrollbar or items at all. I cannot find any method of property that

Re: [Flashcoders] ComboBox won't scroll

2006-06-02 Thread Helen Triolo
I can't reproduce your problem here (Flash 8, Win2k). With a combobox cb and two clips, add3 and add4, on stage, the combobox displays and works fine when add4 is clicked (no matter the order or number of times either button is clicked): var a:Array = [a, b, c]; cb.dataProvider = a;

Re: [Flashcoders] ComboBox won't scroll

2006-06-02 Thread nobski
02, 2006 6:05 PM Subject: Re: [Flashcoders] ComboBox won't scroll I can't reproduce your problem here (Flash 8, Win2k). With a combobox cb and two clips, add3 and add4, on stage, the combobox displays and works fine when add4 is clicked (no matter the order or number of times either button

[Flashcoders] ComboBox does not respond to user clicks when I use homemade preloader

2006-05-20 Thread Alberto Florentin
Hi, I have a ComboBox on a movieclip (inside a Window, does that matter?) like this $targetMC.createClassObject(ComboBox, cbname, cbdepth); It works ok when I play my movie directly. When I use a simple homemade preloader swf which loads the main movie into a movieclip, the combo box works ok

Re: [Flashcoders] comboBox overlap issues

2006-04-14 Thread elibol
Yes it seems like the items that are dynamically loaded into the combo boxes were not available in the library. I'm a bit confused though Radley, after exposing the combobox in your root.swf library were the dropdowns working? I'm not sure if you've put the comboboxes onto the root. anyway, the

Re: [Flashcoders] comboBox overlap issues

2006-04-14 Thread Radley Marx
You were in the right direction. After picking up your clues I found a workaround on MM livedocs: snip To use it correctly you first have to know what instance have to be set on top: Its not the component itself. Its the mc called __dropdown (with two __). So with this workaround

Re: [Flashcoders] comboBox overlap issues

2006-04-14 Thread elibol
Oh I see. I was thinking the dropdown was a child clip of the combobox so puting the combobox itself on the upper most layer would do so to the dropdown as well. Anytime bro I'm glad you got it sorted out, M. On 4/14/06, Radley Marx [EMAIL PROTECTED] wrote: You were in the right direction.

[Flashcoders] combobox big problem

2006-04-10 Thread Alfonso Florio
this is really strange: i create a serie of mcs with into them two combobox, populate and select index, all ok. when i delete them (i try to delete the mc container and the components) and re-create them (to delete some items and re-create the list), or just change the dataprovider a

Re: [Flashcoders] combobox big problem

2006-04-10 Thread Aaron Smith
Do you have it under a mask? if so I think you need to embed the fonts. On Apr 10, 2006, at 2:32 PM, Alfonso Florio wrote: this is really strange: i create a serie of mcs with into them two combobox, populate and select index, all ok. when i delete them (i try to delete the mc container

RE: [Flashcoders] combobox big problem

2006-04-10 Thread Steven Sacks
Try setting the font to _sans and see if that helps. cmb.setStyle(fontFamily, _sans); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Smith Sent: Monday, April 10, 2006 2:54 PM To: Flashcoders mailing list Subject: Re: [Flashcoders

RE: [Flashcoders] combobox big problem

2006-04-10 Thread Steven Sacks
when i delete them (i try to delete the mc container and the components) and re-create them (to delete some items and re-create the list), or just change the dataprovider a strange thing happens: Why don't you just delete items from the dataprovider? The components are made to respond

[Flashcoders] ComboBox problem when swf loading in another swf

2006-01-24 Thread lieven.cardoen
I have an swfA which is loaded into an swfB. In swfA I have a ComboBox. When executing swfA (not loaded in another swf), the combobox works fine. When executing swfB, problems occur with ComboBox in swfA. Tell me why? thx Met vriendelijke groeten, Lieven Cardoen MULTIMEDIALOFT |

RE: [Flashcoders] ComboBox problem when swf loading in another swf

2006-01-24 Thread Steven Sacks
PROTECTED] Sent: Tuesday, January 24, 2006 1:33 AM To: flashcoders@chattyfig.figleaf.com; osflash@osflash.org; [EMAIL PROTECTED] Subject: [Flashcoders] ComboBox problem when swf loading in another swf I have an swfA which is loaded into an swfB. In swfA I have a ComboBox. When

[Flashcoders] ComboBox Focus problem

2006-01-24 Thread bert.vandamme
Hi all, I keep on getting this nasty focus problem with the macromedia combobox component. This occurs as soon as an swf loads another swf with a combobox in it. After opening the combobox list: when you drag the scrollbar up or down, and release it to select a certain item, the list

RE: [Flashcoders] ComboBox Focus problem

2006-01-24 Thread Steven Sacks
One solution: http://www.ghostwire.com/ :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, January 24, 2006 7:03 AM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] ComboBox Focus problem Hi all

RE: [Flashcoders] ComboBox Focus problem

2006-01-24 Thread lieven.cardoen
: dinsdag 24 januari 2006 16:08 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] ComboBox Focus problem One solution: http://www.ghostwire.com/ :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, January

Re: [Flashcoders] ComboBox not firing change event when selectedIndex set

2006-01-16 Thread Yehia Shouman
use this instead (attach ur function to an object) var Listener_obj:Object= new Object(); Listener_obj.change=function(evt:Object) { trace(new Selected Index=+evt.target.selectedIndex); } myCmb.addEventListener(change,Listener_obj); myCmb.selectedIndex=2; the reason behind this, is that you

[Flashcoders] ComboBox not firing change event when selectedIndex set

2006-01-15 Thread Steven Sacks
function change() { trace(change); } MyCmb.addEventListener(change, this); MyCmb.selectedIndex = MyCmb.selectedIndex + 1; Does not fire a change event. How do I detect when the combo box has changed from code not from direct user interaction with the component? This seems completely

Re: [Flashcoders] ComboBox not firing change event when selectedIndex set

2006-01-15 Thread Chris Velevitch
This is the intended behaviour. You should fire the change event yourself. The reason being, know you changed it, so you can call or do anything else you like at the same time. It's only when the user interacts with a component that you want to detect. Chris -- Chris Velevitch Manager - Sydney

[Flashcoders] Combobox none selected

2005-12-21 Thread Merrill, Jason
Been racking my brains over this for a while now, checked the archives, help docs etc. I have a ComboBox, and would just like to capture the default item, even if the user does not select anything in the Combo box. That way, something is always chosen no matter what the user does. Currently, my

Re: [Flashcoders] Combobox none selected

2005-12-21 Thread Helen Triolo
Merrill, Jason wrote: Currently, my code is: //( locations_cb is my combobox) function change(evt){ evt.target.selected = evt.target.selectedItem.label } locations_cb.addEventListener(change, this); create_btn.onRelease = function(){ myFunction(locations_cb.selected,

RE: [Flashcoders] Combobox none selected

2005-12-21 Thread Merrill, Jason
- [EMAIL PROTECTED] On Behalf Of Helen Triolo Sent: Wednesday, December 21, 2005 1:47 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Combobox none selected Merrill, Jason wrote: Currently, my code is: //( locations_cb is my combobox) function change(evt){ evt.target.selected

RE: [Flashcoders] Combobox none selected

2005-12-21 Thread Merrill, Jason
, 2005 2:31 PM To: Flashcoders mailing list Subject: RE: [Flashcoders] Combobox none selected I guess I just don't see why you are saving my_cb.selected at all when it is already store in cbInstance.selectedItem. You could just get rid of your change handler altogether in your original scenario

RE: [Flashcoders] Combobox none selected

2005-12-21 Thread Steven Sacks
You have to wait one frame before selecting an item in the combo box. Flash needs to have one frame to draw/instantiate the combo box before you select something on it from code. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] Combobox none selected

2005-12-21 Thread Merrill, Jason
: Wednesday, December 21, 2005 4:30 PM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Combobox none selected You have to wait one frame before selecting an item in the combo box. Flash needs to have one frame to draw/instantiate the combo box before you select something on it from code

[Flashcoders] ComboBox change event

2005-12-13 Thread Chris Bare
The V2 component ComboBox does not send a change event if you select the value that is already select. I am using a combo box to set the font size in a textField. In my case, the user may have selected several characters of different font sizes. I can't select multiple sizes in the combo box, so I

Re: [Flashcoders] ComboBox change event

2005-12-13 Thread andrew . lucking
I've looked at the itemRollOver event, but that only gets sent if the user releases the mouse between opening the comboBox and making the selection. I also tried unsetting the list selection, but it won't let you do this. The close event won't work for you? A.

[Flashcoders] Combobox(es) stalling swf problem

2005-12-01 Thread Matthew Gaiser
Hi everyone, I have aform I ahve made that is just an swf loaded into another It is one frame and consists of only some text inputs and about 4-5 comboboxes. A strange thiing I cannot get around is after the form swf loads, it stalls the main flash movie (rollovers, everything) for

RE: [Flashcoders] Combobox(es) stalling swf problem

2005-12-01 Thread Steven Sacks
Welcome to Macromedia components. There really isn't a way around this except to wait a frame or two to draw the combo boxes on the screen (which simply delays the inevitable) OR download some slimmer components. I highly recommend the Ghostwire component sets. They've worked very well for me.

Re: [Flashcoders] Combobox(es) stalling swf problem

2005-12-01 Thread Matthew Gaiser
Seems unlikely they could be any harder to skin than the MM combobox :) I do like the way the finished skinned comobox looks with its animated dropdown set to ease/bounce, now I guess I just have to decide if the wait for them to initialize is worth it. On Dec 1, 2005, at 4:20 PM,

[Flashcoders] ComboBox all jacked up

2005-11-28 Thread Charles Parcell
OK, I dumped the ScrollPane Component completely. I have built a MC that has a few ComboBoxes in it. I place it on the Stage and added two arrow images to the right as a scrollbar place holder. I added code to these arrows to simply move the MC with the ComboBoxes up and down (theMC._y +/- 10).

Re: [Flashcoders] ComboBox all jacked up

2005-11-28 Thread Charles Parcell
Holy Crap!!! That totally works! Now I just hope the hair that I have been pulling out the past week grows back. Thanks a million!! Charles P. On 11/28/05, Ian Thomas [EMAIL PROTECTED] wrote: The ComboBox is really quite broken. Another thing to try - set _lockroot=true on the ComboBox

Re: [Flashcoders] comboBox not working after upgrading to 8

2005-11-17 Thread Lanny McNie
I believe they made some code updates to the components shipped with Flash 8 for compatibility. Try swapping the one in your library with the one in the Flash 8 components panel... On 11/17/05, Mendelsohn, Michael [EMAIL PROTECTED] wrote: Hi list... Has the comboBox component changed in

Re: [Flashcoders] ComboBox depth?

2005-11-15 Thread Charles Parcell
Yup, did that. That was actually the fix for my issue of not being able to get the comboBox to display its contents at all. Any other ideas? Charles P. On 11/14/05, Ryan Matsikas [EMAIL PROTECTED] wrote: put a comboBox in the library of your loader swf.. should fix it. On 11/14/05,

[Flashcoders] ComboBox dropdown/listbox height? (not row height)

2005-11-15 Thread Matthew Gaiser
Anyone know a way to dynamically set the height of the combobox's dropdown (listbox)? I can set its row height, but would love to be able to set the height of the dropdown part itself (how far it drops down) Best Regards, Matt ___ Flashcoders

[Flashcoders] ComboBox depth?

2005-11-14 Thread Charles Parcell
Hot on the heels of my previous problem with nested MCs and ComboBoxes I have yet another issue. I have a MC with several ComboBoxes and a List component. This MC is published as a SWF and works perfectly when played solo. I am loading this SWF into a ScrollPane component of another SWF. I am

[Flashcoders] Combobox within ScrollPane not working

2005-11-09 Thread Charles Parcell
I am really at a lose here. I have a SWF file which has multiple Combobox components in it. I load this SWF into a ScrollPane compoent of another SWF file. It displays everything fine. But the Combobox components are unable to be altered. When clicking the thumb area of the Combobox the Combobox

RE: [Flashcoders] Combobox within ScrollPane not working

2005-11-09 Thread Steven Sacks
I've seen this behavior before. Try putting a ComboBox component in the library of the loading SWF (the one with the scrollpane) and see if that fixes it. I am really at a lose here. I have a SWF file which has multiple Combobox components in it. I load this SWF into a ScrollPane compoent

Re: [Flashcoders] Combobox within ScrollPane not working

2005-11-09 Thread Charles Parcell
Winner! That did the trick. That never even crossed my mind. Thanks Steven! Charles P. On 11/9/05, Steven Sacks [EMAIL PROTECTED] wrote: I've seen this behavior before. Try putting a ComboBox component in the library of the loading SWF (the one with the scrollpane) and see if that fixes

[Flashcoders] Combobox stop working after resize

2005-11-08 Thread Martin Tremblay
The combobox seems to stop working (but I still receive the event) after an element been selected and the ComboBox.setSize() method is called. If no selection been made before setSize, the combo is working just fine. Is there a workaround other than re-attaching a new combo box? See the

<    1   2