Re: [flexcoders] SCROLL for MENU

2007-04-09 Thread Samuel Reuben
Hi Sanjay, The way menu works, I don't think you can get a scroll bar for the menuItems. You could of course try to make one yourself. I'd suggest using a ComboBox (you can set the dropDown's height) or a PopUpButton (with a list popped up). Hope that helps, -sam On 29 Mar 2007 23:58:22

Re: [flexcoders] Printing in Flex

2007-01-05 Thread Samuel Reuben
Very strange, can you send me the code that you are using please? Thanks, -sam On 1/4/07, baardos [EMAIL PROTECTED] wrote: Hi, I am trying to implement printing and I have the following issue. When I try to print ectire content of the screen everything seems to work fine. However If I

Re: [flexcoders] Re: FlexPrintJob PrintJob

2006-12-20 Thread Samuel Reuben
I'll leave it at that then. Thanks, -sam On 12/19/06, Mike Weiland [EMAIL PROTECTED] wrote: Orientation is read only, it can't set the orientation, it's still up to the user to change it in the print dialog. Mike Weiland Original Message --- I'll file an enhancement

Re: [flexcoders] Re: FlexPrintJob PrintJob

2006-12-19 Thread Samuel Reuben
I'll file an enhancement request since the flash player now supports Orientation, why not FlexPrintJob. For now, if you are using FlexPrintJob the only option is to manually select it when you print. Thanks, -sam On 12/18/06, Uday M. Shankar [EMAIL PROTECTED] wrote: Just to make it more

Re: [flexcoders] FlexPrintJob PrintJob

2006-12-17 Thread Samuel Reuben
Hi Uday, FlexPrintJob cannot set the orientation. That can be done in the Print control box when it pops up. -sam On 12/16/06, Uday M. Shankar [EMAIL PROTECTED] wrote: Hi, How do I set orientation with FlexPrintJob? FlexPrintJob is a wrapper on PrintJob. But, all properties of PrintJob are

Re: [flexcoders] Pop Up Panels, what to use/how to make them?

2006-12-15 Thread Samuel Reuben
Try a TitleWindow popped up. -sam On 11/27/06, {reduxdj} [EMAIL PROTECTED] wrote: How do you make pop up boxes like the alert box? I'd like to make a panel with a textarea component pop up on top of my application in the center, not below it or inside it. I tried to use an alert box and and

Re: [flexcoders] Unable to bind Warning

2006-12-13 Thread Samuel Reuben
Can you send the whole code, with some contents for the ArrayCollectioin? -sam On 12/8/06, Samuel Reuben [EMAIL PROTECTED] wrote: from the looks of the code it seems that you'll have to change the name of your ArrayCollection. Try myDataProvider hope it works, -sam On 12/8/06, Paul

Re: [flexcoders] Unable to bind Warning

2006-12-13 Thread Samuel Reuben
sorry saw your post about it... -sam On 12/13/06, Samuel Reuben [EMAIL PROTECTED] wrote: Can you send the whole code, with some contents for the ArrayCollectioin? -sam On 12/8/06, Samuel Reuben [EMAIL PROTECTED] wrote: from the looks of the code it seems that you'll have to change

Re: [flexcoders] Panel Title Embedded Font

2006-11-28 Thread Samuel Reuben
I tried this it seems to work. If you want bold you'll have to embed a bold font and give the font weight bold. If you need bold as well as normal fonts you can create the same font name with both bold as well as normal font and it will take. -sam On 11/16/06, Bjorn Schultheiss [EMAIL

Re: [flexcoders] FlexPrintJob problem: application background colors showing in margins

2006-11-06 Thread Samuel Reuben
can you send a the isolated printing code that you are seeing the problem in?Are you by any chance mentioning the corners that show the bg color, specially when the component has rounded corners?Thanks, -samOn 11/6/06, Tom Bray [EMAIL PROTECTED] wrote: The

Re: [flexcoders] closing a popupButtonMenu

2006-10-26 Thread Samuel Reuben
This will work for the popUp of PopUpMenuButton too ?xml version=1.0?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml xmlns=assets.* backgroundColor=#FF width=600 height=600 mx:Script![CDATA[]]/mx:Scriptmx:PopUpButton id=myPopUpButton rollOver=myPopUpButton.open() label=Check

Re: [flexcoders] Image complete and init event problem

2006-10-18 Thread Samuel Reuben
did you try updateComplete event? It should work, -sam On 10/18/06, Brian [EMAIL PROTECTED] wrote: I'm loading images using the Image class, and I'm trying to analyzetheir height and width after they load for sizing purposes. Problemis, sometimes (not always but sometimes) someImage.width

Re: [flexcoders] Re: Multiline ComboBox

2006-10-17 Thread Samuel Reuben
Have you tried playing around with PopUpButton? it might be what you're looking for, -sam On 10/17/06, Michael Labriola [EMAIL PROTECTED] wrote: Michael,Problem is that ComboBase uses a textInput control to display thecurrently selected item. The TextInput is limited to displaying asingle

Re: [flexcoders] Printing Images

2006-10-16 Thread Samuel Reuben
Hi Nathan, Canyou please send me a sample code of what works and what doesn't. I'll be able to help you out. Thanks, -sam On 9/28/06, nathanpdaniel [EMAIL PROTECTED] wrote: I have an issue when printing images! I am working on a shipping app which will generate a barcode label for

Re: [flexcoders] ToolTip Timers

2006-09-18 Thread Samuel Reuben
and off course it would be desired to create or destroy the tooltips on the desired events of the components. -sam On 9/18/06, Samuel Reuben [EMAIL PROTECTED] wrote: Hi J, You could look into the documentation for ToolTipManager and use the methods (createToolTip and destroyToolTip

Re: [flexcoders] Re: Flash Quiz in Flex

2006-09-08 Thread Samuel Reuben
Have you been able to solve this problem by modifying the file? -sam On 9/6/06, flexnewbie06 [EMAIL PROTECTED] wrote: thanks for your thoughts...it is just a simple flash 8 quiz it wasn't made with flex.--- In flexcoders@yahoogroups.com, Samuel Reuben [EMAIL PROTECTED] wrote: I'm just

Re: [flexcoders] ComboBox Multiple Selection

2006-09-08 Thread Samuel Reuben
Hi Daniel, The combo box was not designed to do what you are trying to do. I suggest that you use a PopUpButton with a list popped up and you can set the allowMultipleSelection=true for the list. You will have to handle what happens when you make a selection(because everytime you select an

Re: [flexcoders] Flash Quiz in Flex

2006-09-06 Thread Samuel Reuben
I'm just guessing - but I think the references to thevaribles must be changingor something like that...when you load it up- if it was made in flash.. If it was made in Flex2.0, I'd like to see the code that you are using - for the flex quiz. Thanks, -sam On 9/6/06, flexnewbie06 [EMAIL

Re: [flexcoders] Date Format

2006-09-06 Thread Samuel Reuben
this is a problem and is logged. You can format the date using a Date formatter and set the text of the DateField to the desired format -for the moment. Thanks, -sam On 9/5/06, Travis Anderson [EMAIL PROTECTED] wrote: Please tell me what I'm doing wrong here.I've tried many methods to

Re: [flexcoders] preload images HorizontalList

2006-09-06 Thread Samuel Reuben
for that you would have to embed your images... Hope that helps, -sam On 9/5/06, janeminkovich [EMAIL PROTECTED] wrote: Hello,I am a photographer(before was an engineer) and just finishing up the flex site. I notice that my horizontallist that I use to display the thumbnails/images

Re: [flexcoders] NumberValidator question

2006-08-29 Thread Samuel Reuben
Hi Michael, You have mentioned that it shoud send some sort of message with the event. What do you want this for? The error tips are shown for the inputs that are not number. So like any other validator it doesn't show any error tip when it is right. The error tips that are shown are meant to

Re: [flexcoders] SWFLoader hack

2006-08-29 Thread Samuel Reuben
No Fernando, I haven't seen the thing that you are facing. But I know if the security sandbox is violated the image won't show. For that you can look up the documentation. -sam On 8/28/06, Fernando Flórez [EMAIL PROTECTED] wrote: Hello!I had a really weird bug last week in where the

Re: [flexcoders] Using ControlBar Panel child in states or in ActionScript?

2006-08-29 Thread Samuel Reuben
Try this Sergey, ?xml version=1.0 encoding=iso-8859-1? mx:Application xmlns:mx=http://www.adobe.com/2006/mxmlmx:Panelmx:ControlBar id=myCB mx:Button click=myCB.visible=false;//mx:ControlBar/mx:Panel/mx:Application You can give the Control bar an id and then set it's visible to false

Re: [flexcoders] NumberValidator question

2006-08-29 Thread Samuel Reuben
as to what he is doing extending and needing NaN. As far as me and the event, well that was more philosophical. :)Peace, Mike On 8/29/06, Samuel Reuben mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:Hi Michael,You have mentioned that it shoud send some sort of message with the event. What do you want

Re: [flexcoders] Setting NumericStepper to 00 for Minutes

2006-08-29 Thread Samuel Reuben
You'll have to make the date formatter know that the minute is 0. Something like this ti.text=dateFormatter.format(new Date(nowCurr.setMinutes(event.target.value))); Hope this helps, -sam On 8/29/06, Bruce Denham [EMAIL PROTECTED] wrote: I'm trying to use to make a numericstepper control

Re: [flexcoders] Setting NumericStepper to 00 for Minutes

2006-08-29 Thread Samuel Reuben
/mx:Canvasmx:NumericStepper id=minutes height=20 value=0 stepSize=15 maximum=60 change=timeChange(event); creationComplete=timeChange(event); borderThickness=0 width=43/mx:TextInput id=ti width=25 editable=false/ /mx:Canvas/mx:Application Hope this helps, -sam On 8/29/06, Samuel Reuben [EMAIL PROTECTED

Re: [flexcoders] Rotating a TabBar

2006-08-29 Thread Samuel Reuben
Embed the textRyan. It will work. -sam On 8/29/06, Ryan Sabir [EMAIL PROTECTED] wrote: Hey all, I'm trying to rotate a TabBar by 90 degrees, but when I do this the text disappears. Is this possible in Flex 2? thanks. Ryan SabirTechnical Director p: (02) 9274 8030f: (02) 9274

Re: [flexcoders] Setting NumericStepper to 00 for Minutes

2006-08-29 Thread Samuel Reuben
if you subclass NumericStepper you should be able to get it to work the way you want it to, by setting the text of the numeric stepper there. -sam On 8/29/06, Samuel Reuben [EMAIL PROTECTED] wrote: One workaround, while I try out something that works, could be... ?xml version=1.0 encoding

Re: [flexcoders] Rotating a TabBar

2006-08-29 Thread Samuel Reuben
use a bold font as both the states are bold... mx:Style @font-face {src:url(arialbd.ttf);font-weight: bold;font-family: myArial;}/mx:Stylemx:TabBar id=myBB fontFamily=myArial . so on On 8/29/06, Samuel Reuben [EMAIL PROTECTED] wrote: Embed the textRyan. It will work. -sam On 8/29/06

Re: [flexcoders] SWFLoader hack

2006-08-29 Thread Samuel Reuben
to scale to the appropiate size after the image was loaded.Thanks,Fernando On 8/29/06, Samuel Reuben [EMAIL PROTECTED] wrote: No Fernando, I haven't seen the thing that you are facing. But I know if the security sandbox is violated the image won't show. For that you can look up

Re: [flexcoders] TileList columnWidth = widest item?

2006-08-28 Thread Samuel Reuben
Hi Tom, You can use a combinationofmaxColumns,columnWidth and rowHeight to achieve what you are trying to do. You could make a customized Tile list if you want it all done. Regards, -sam On 8/27/06, Tom Lee [EMAIL PROTECTED] wrote: Hi guys, By default, the width of a column in a

Re: [flexcoders] Run Swf File in flash player.

2006-08-25 Thread Samuel Reuben
I don't get it Kumar, Are you trying to open a stand alone swf from a IE browser (Explorer) by using SWFLoader??? That is clearly not possible. or are you trying to open it from your computer's file Explorer? That is possible if you have the stand alone player on your machine... You could do a

Re: [flexcoders] Embedded SWF as backgroundImage causing mouseOut event to dispatch

2006-08-25 Thread Samuel Reuben
have you tried using rollOver and rollOut? Please let me know if it works, -sam On 8/24/06, Brendan Meutzner [EMAIL PROTECTED] wrote: Hi All,I've created a container which contains a couple of sub-containers that have SWF symbols set to the backgroundImage. Problem is occurring when I

Re: [flexcoders] Re: How to collapse Panel?

2006-08-17 Thread Samuel Reuben
of the title text, though it is still calculable. On 8/16/06, Samuel Reuben [EMAIL PROTECTED] wrote: Hi Sergey, Good observation. Why do you need the header height? The documentation says, The default value is based on the style of the title text. Sothere is no fixed default header height

Re: [flexcoders] Re: Trouble Printing lots of images--PLEASE HELP!!!!!!

2006-08-16 Thread Samuel Reuben
Hi Wayne, Could you please post some code, possibally with the xml file to? It will help us reproduce the problem that you are facing and find a solution to it. Thanks, -sam On 8/16/06, wayneposner [EMAIL PROTECTED] wrote: Unfortunately, when a user requests a print job it will mean

Re: [flexcoders] PrintDataGrid page filling

2006-08-16 Thread Samuel Reuben
Hi Phil, you can always change the height of the PrintDataGrid and call nextPage(). Which should do the trick, but if your chart is taking up space on the second page make it zero or get it out of the way and only show the PDG. It's like any other component. So you'll have to put it in the

Re: [flexcoders] TileList item margins

2006-08-16 Thread Samuel Reuben
HiSergey, You can solve this problem by setting the ThemeColor for your TileList to white (themeColor=#FF). I'll look into this and let you know if there are other ways you can get rid of the border. In a way it is good to have some color showing because the user will know thathe can

Re: [flexcoders] Re: How to collapse Panel?

2006-08-16 Thread Samuel Reuben
Hi Sergey, Good observation. Why do you need the header height? The documentation says, The default value is based on the style of the title text. Sothere is no fixed default header height, it depends on the Title text font size. Having said that, the getStyle(headerHeight) should return the

Re: [flexcoders] Image class instance source nature detection

2006-08-16 Thread Samuel Reuben
no way to know that Sergey, if it is a small image. You canguess when ittakes time to load that it is loaded(not embeded). When it is Embeded it should show up faster(because it is a part ofthe swf), apart from this there is now way to find out at runtime. The person writing the code will

Re: [flexcoders] Image class instance source nature detection

2006-08-16 Thread Samuel Reuben
If on the other hand, the images are being loaded using data from an XML file, it can be associated to a flag which mentions that it is loaded or not(embeded). -sam On 8/16/06, Samuel Reuben [EMAIL PROTECTED] wrote: no way to know that Sergey, if it is a small image. You canguess when

Re: Bug in printing with test case (was Re: [flexcoders] Flex print jobs)

2006-08-11 Thread Samuel Reuben
the indexes and print. What would that do to performance if I had a viewstack of 500-1000 views?Wayne--- In flexcoders@yahoogroups.com , Samuel Reuben [EMAIL PROTECTED] wrote: Can you try proceeding with the printing on updateComplete event of the Image? If they are small images, I think Embeding

Re: Bug in printing with test case (was Re: [flexcoders] Flex print jobs)

2006-08-10 Thread Samuel Reuben
=printjob.pageWidth; item.height=printjob.pageHeight printjob.addObject(item.atts); printjob.send(); } --- In flexcoders@yahoogroups.com , Tom Chiverton tom.chiverton@ wrote: On Wednesday 09 August 2006 11:13, Samuel Reuben wrote: On 7/19/06, Tom Chiverton tom.chiverton@ wrote:On Wednesday 19 July

Re: [Junk E-Mail - MED] Re: [flexcoders] PopUpMenuButton icon not working?

2006-08-09 Thread Samuel Reuben
: Original Size icon={myIcon}/ So you are using icons in the menu. Have you notice that icons seems to duplicate when select a menu item and open the menu one more time? On 8/8/06, Samuel Reuben [EMAIL PROTECTED] wrote: However, if you want to make a changable icon you'll have to do

Re: [flexcoders] DateChooser does not show selected day when using DateField component

2006-08-09 Thread Samuel Reuben
test... reply for Anand... On 8/9/06, Bas J. Brey [EMAIL PROTECTED] wrote: I'm working with DateField components a lot and when i set the selectedDate of the DateField component the connected DateChooser does show the correct Year and Month, but does not highlight the selected Day!

Re: [flexcoders] RichTextEditor (rte)

2006-08-09 Thread Samuel Reuben
Test for Anand... He's onto this... On 8/9/06, app.developer [EMAIL PROTECTED] wrote: Why, when you set the format you wish to type in the RichTextEditor (RTE), after the first letter typed (letters after the first)?Example: I click the BOLD button then start typing I am bold, the only

Re: [Junk E-Mail - MED] Re: [flexcoders] PopUpMenuButton icon not working?

2006-08-08 Thread Samuel Reuben
Yes I think it is Shan, I'll log the bug. Sorry for the delay in the reply. It was being used with PopUpButton and was somehow missed in PUMB. -sam On 7/18/06, Shannon Hicks [EMAIL PROTECTED] wrote: Nope, no change. Adobe: is this on the official bug list? Seems like an oversight

Re: [Junk E-Mail - MED] Re: [flexcoders] PopUpMenuButton icon not working?

2006-08-08 Thread Samuel Reuben
change when you change the selected menu items, which will be the case for the Icon too (that's where the bug is, because it changes evenwhen the label doesn't change). But in any case the icon should get set -which is a bug. Thanks again On 8/8/06, Samuel Reuben [EMAIL PROTECTED] wrote: Yes I think

Re: [flexcoders] Chage text on main preload

2006-08-07 Thread Samuel Reuben
I think you posted the same question on the Discussion forum, it's answered there for you. Thanks, -sam On 8/2/06, Jesús Iglesias [EMAIL PROTECTED] wrote: Hi again, Does anybody know how to change the text of the main preload Loading and Initializing? Thanks. __._,_.___ --

Re: [flexcoders] TitleWindow Text colors

2006-08-07 Thread Samuel Reuben
Hi Tim, You can change the Title text color using titleStyleName. But changing it to two colors is not possible, you could probably us the status and use the statusStyleNameto change it's color too or use and image in front of the text which has the textCurrent Window and set it as the

Re: [flexcoders] TitleWindow Text colors

2006-08-07 Thread Samuel Reuben
The closest that you will be able to get is setting the titleIcon(to an image with text in it) and changing the titleStyleName. -sam On 8/7/06, Samuel Reuben [EMAIL PROTECTED] wrote: Hi Tim, You can change the Title text color using titleStyleName. But changing it to two colors

Re: [flexcoders] Re: printing/zooming bugs

2006-07-27 Thread Samuel Reuben
This is still an open issue Peter. I remember it had been fixed but then some how it got back. Will press for it to be fixed ASAP. Thanks, -sam On 7/25/06, Daniel Tuppeny [EMAIL PROTECTED] wrote: I was playing with your code, and discovered you don't need to create a new context menu,

Re: [flexcoders] TileList Bug Flex Final... pretty serious.

2006-07-27 Thread Samuel Reuben
Hi Tim, I tried this and I don't seem to see any tiles disappearing. Can you send me some code please? Thanks, -sam On 7/25/06, sufibaba [EMAIL PROTECTED] wrote: Hi ya,I found what seems to be a bug with the TileList Control. When theTileList is resized, not all of the images that are

Re: [flexcoders] SWFLoader related query / challenge

2006-07-25 Thread Samuel Reuben
Do you want to interaction between the swf's? You most probably will run into problems here. If you don't mind what are you trying to achive? Thanks, -sam On 7/24/06, Vishwajit Girdhari [EMAIL PROTECTED] wrote: One problem in flex... You have 3.mxmlsthat getcompiled into .swf (Say A ,

Re: [flexcoders] Problem in displaying data in Combo Box

2006-07-25 Thread Samuel Reuben
Try doing something like this... * ?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml layout=absolute mx:HTTPService id=statesModel url="" result=st.dataProvider=event.result.root.state showBusyCursor=true

Re: [flexcoders] help please

2006-07-19 Thread Samuel Reuben
See Uday, You can use the contentWidth and contentHeight on the updateComplete event to determine how you want to show your images. Some ideas could be that you set the visible to false while the images are loading and show them once you've got the logic worked out,as to what and howyou want

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Samuel Reuben
If you go to http://www.adobe.com/shockwave/welcome/ in the flash player about does it show 9,0,16,0 ? -sam On 7/19/06, Daniel Tuppeny [EMAIL PROTECTED] wrote: It's still present here. I can right-click - Zoom In, and it correctly zooms in. When I then right-click - Zoom Out, it only

Re: Bug in printing with test case (was Re: [flexcoders] Flex print jobs)

2006-07-19 Thread Samuel Reuben
Hi Tom, Does this happen even when the object height/width is set? I suppose a ValidateNow() could make a difference... -sam On 7/6/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 05 July 2006 15:09, Tom Chiverton wrote: If I try and print a dynamicaly instantiated GUI component, the

Re: [flexcoders] PopUpMenuButton icon not working?

2006-07-18 Thread Samuel Reuben
try icon=@Embed('../assets/print_16.gif') It should work, -sam On 7/8/06, Shannon Hicks [EMAIL PROTECTED] wrote: I've tried adding an icon to the PopUpMenuButton, but it doesn't seem to work. It shows the icon in Flex Builder, but not in the compiled SWF. I've added icons to every

Re: [flexcoders] NumberFormatter Bug???

2006-07-18 Thread Samuel Reuben
I don't see this happening Dan! Which version of flex are you using? I tried it with flex 1.5 and 2.0 both seem to be giving me 1.0 Thanks, -sam On 7/3/06, Dan [EMAIL PROTECTED] wrote: Hi, I just want to ask is this a known issue? I use a numberformatter with the following

Re: [flexcoders] Flex 2 final - Buf in tabChildren of a Panel

2006-07-18 Thread Samuel Reuben
It's a bug, I'll log it in. Thanks, -sam On 6/30/06, Harald Dehn [EMAIL PROTECTED] wrote: I need to temporay disable the tabChildren of a panel. If i set the tabChildren property to false and try to change the focus with the tab key, i get the following error message: TypeError:

Re: [flexcoders] Flex print jobs

2006-07-18 Thread Samuel Reuben
Looking into it Tom! -sam Quality Engineer, Flex On 7/4/06, Tom Chiverton [EMAIL PROTECTED] wrote: Has anyone else had problems using the printJob classes ?It seems to be failing silently for me. printJob.start() is returning OK etc. etc.index.mxml:mx:Application xmlns:mx=

Re: [flexcoders] Flex print jobs

2006-07-18 Thread Samuel Reuben
Hi Tom, It works fine if you give aheight and width to your object that is being printed. something like: formPrintView.width=600;formPrintView.height=300;before printing it. Thanks, -sam On 7/18/06, Samuel Reuben [EMAIL PROTECTED] wrote: Looking into it Tom! -sam Quality Engineer, Flex

Re: [flexcoders] Do not reloaded images in TileList

2006-07-18 Thread Samuel Reuben
You could embed the images into the app. so that it is seen faster. -sam On 7/18/06, franto [EMAIL PROTECTED] wrote: Hi,i hope that there is some switch to not preloaded Images from web when I have TileList with some data Providerimages are downloaded based on this data providerbut

Re: [flexcoders] Re: printing/zooming bugs

2006-07-18 Thread Samuel Reuben
The zoom in, zoom out problem was noticed and was fixed. I'll look into it. As far as I can see it works fine on the release player. -sam On 7/18/06, Daniel Tuppeny [EMAIL PROTECTED] wrote: Cool, thanks! From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf

Re: [flexcoders] How to make a components to show its tooltip without point mouse to it?

2006-05-29 Thread Samuel Reuben
do you want the tooltip displayed permanently or displayed when you do something? -sam On 5/26/06, Ronan Bottini [EMAIL PROTECTED] wrote: Hi.How to make a components to show its tooltip without point mouse to it? Thanks. --Flexcoders Mailing ListFAQ:

Re: [flexcoders] Flex 2: determine scaled dimensions of Loader content?

2006-03-05 Thread Samuel Reuben
contentHeight and contentWidthis returning the original values 50, 50. So it is a bug, I'll file one. Thanks Tom, -sam On 3/3/06, Matt Chotin [EMAIL PROTECTED] wrote: I believe that contentWidth/Height are supposed to return the scaled values, not the original values. So that might be a

Re: [flexcoders] Flex 2: determine scaled dimensions of Loader content?

2006-03-05 Thread Samuel Reuben
At the same time if contentHeight and contentWidth are taken a little after complete it shows that scaled values. So this is a workaround. -sam On 3/6/06, Samuel Reuben [EMAIL PROTECTED] wrote: contentHeight and contentWidthis returning the original values 50, 50. So it is a bug, I'll file

Re: [flexcoders] PopupButton bug

2006-03-01 Thread Samuel Reuben
Hi Tom, I see this intermittently commented or uncommentedi've logged a bug - though not in Beta1. Thanks, -sam On 3/2/06, Matt Chotin [EMAIL PROTECTED] wrote: http://www.macromedia.com/go/wish is OK but I"m forwarding these on to QA when possible right now. From:

Re: [flexcoders] prompt property in ComboBox as array?

2005-11-10 Thread Samuel Reuben
I guess you could put in quite a long note(instructions) broken up into small bits. -sam On 11/9/05, Manish Jethani [EMAIL PROTECTED] wrote: Hi flexcoders,There's a prompt property in the ComboBox control in Flex 1.5. Thevalue can be either a string or an array (I bet you didn't know about the

Re: [flexcoders] prompt property in ComboBox as array?

2005-11-10 Thread Samuel Reuben
Yeah, Manish agrees on that... On 11/10/05, Dirk Eismann [EMAIL PROTECTED] wrote: sorry for the offtopic-reply but shouldn't your signature read l33t fl3x h4x0r instead of l33t f3lx h4x0r ? Dirk.Von: flexcoders@yahoogroups.com im Auftrag von Manish Jethani