Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread eka
Hello :) in flash8 with FP8 compilation you can use the property _lockroot of the MovieClips. You wait the loading of your movie and you apply in the holder movie the value true on the _lockroot property. Example : var loader:MovieClipLoader = new MovieClipLoader() ; loader.addListener(this)

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread natalia Vikhtinskaya
THANK YOU. Maybe you can give me one more advice. When holder clip is under mask I don't see my list. I understand that I should embed font somehow to combobox but could not find how. Is it possible that combobox works under mask? 2006/12/23, eka [EMAIL PROTECTED]: Hello :) in flash8

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread eka
Hello :) the panel of the combobox is an movieclip hide in the _root by macromedia in this component framework... you can't hide with a mask this panel beaucause the panel isn't in the same referencial :) If you want change this state... you must develop your component with actionscript and

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread natalia Vikhtinskaya
No my clip holder is under mask. Combobox works but don't show text in opend list. 2006/12/23, eka [EMAIL PROTECTED]: Hello :) the panel of the combobox is an movieclip hide in the _root by macromedia in this component framework... you can't hide with a mask this panel beaucause the panel

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread eka
Hello :) 1 - use a movieclip to create your mask and the method MovieClip.setMask() (not a layer) 2 - if the first solution don't work. embed the fonts in the library and use the style of the component to embed the fonts and change the default font. EKA+ :) 2006/12/23, natalia Vikhtinskaya

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread natalia Vikhtinskaya
Nothing helps. I embed Arial in to the library with name my_font (I did that in movie.swf) then in that movie I write myComboBox.setStyle(fontFamily, my_font); myComboBox.setStyle(fontSize, 12); or _global.style.setStyle(fontFamily, my_font); _global.style.setStyle(fontSize, 12); There is

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread eka
Hello :) dont forget the property embedFonts : myComboBox.setStyleProperty(embedFonts, true); myComboBox.setStyleProperty(textFont, fontID); myComboBox.setStyleProperty(textSize, 10); with fontID the link of your font in the library of flash (right button on the symbol to attach the font in

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread natalia Vikhtinskaya
!!! my problem that I did not use myComboBox.setStyle(embedFonts, true); THANK YOU!!! 2006/12/23, eka [EMAIL PROTECTED]: Hello :) dont forget the property embedFonts : myComboBox.setStyleProperty(embedFonts, true); myComboBox.setStyleProperty(textFont, fontID);

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread eka
Hello :) All the response are in the documentation ;) Good continuation ;) EKA+ :) 2006/12/23, natalia Vikhtinskaya [EMAIL PROTECTED]: !!! my problem that I did not use myComboBox.setStyle(embedFonts, true); THANK YOU!!! 2006/12/23, eka [EMAIL PROTECTED]: Hello :) dont forget the

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread natalia Vikhtinskaya
Hi again Yes of course but sometime I don't know where to find solution. So please help more. My continuation is not good. When combox is loaded in main movie I scroll list and when I move mouse to item trying to choose the item list closes. When I test original swf all work correctly.What can be

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread eka
Hello :) Do you use the _lockroot property ? (my first comment explain this property) EKA+ :) 2006/12/23, natalia Vikhtinskaya [EMAIL PROTECTED]: Hi again Yes of course but sometime I don't know where to find solution. So please help more. My continuation is not good. When combox is loaded

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread natalia Vikhtinskaya
yes 2006/12/23, eka [EMAIL PROTECTED]: Hello :) Do you use the _lockroot property ? (my first comment explain this property) EKA+ :) 2006/12/23, natalia Vikhtinskaya [EMAIL PROTECTED]: Hi again Yes of course but sometime I don't know where to find solution. So please help more. My

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread natalia Vikhtinskaya
I found that combox don't like when I do this trick in my main movie in one frame with stop()I load my movie.swf in clip host with preloader . onClipEvent (enterFrame) { if (this._url != _root._url) { _root.preload(this); } } preload is usual function that preload any swf function

Re: [Flashcoders] problem with combobox within another clip

2006-12-23 Thread natalia Vikhtinskaya
I have found solution. If I want to load swf with combobox twice in two different clips I should remove first clip. I did unload. That was wrong. Maybe that helps somebody. 2006/12/23, natalia Vikhtinskaya [EMAIL PROTECTED]: I found that combox don't like when I do this trick in my main movie

[Flashcoders] problem with combobox within another clip

2006-12-22 Thread natalia Vikhtinskaya
Hi to all Can anybody help me with this problem? I have combobox in swf file. This loading works well _root.loadMovie(movie.swf); but with this _root.holder.loadMovie(movie.swf); combobox does not work I need to load this swf in holder clip and don't know how to solve the problem. Thank you for