[flexcoders] Re: Extra pixels on right side of TileList.

2008-06-14 Thread Amy
space all the way around. -Amy

[flexcoders] Re: tilelist and transitions

2008-06-14 Thread Amy
--- In flexcoders@yahoogroups.com, giopaia [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: Any idea how to avoid the freezing problem? Have you tried setting includeInLayout to false on the TileList until after the transition is finished

[flexcoders] Re: Extra pixels on right side of TileList.

2008-06-13 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: MXML is not HTML. I don't remember seeing a specification of columnCount or width of the TileList in pixels. You could be seeing round-off error or simply that the computed width of the tile doesn't fully cover the TL.

[flexcoders] Re: Using Flex as a Flash IDE

2008-06-13 Thread Amy
and great code completion...enjoy ;) Is there any documentation on how to use it with Flex? I couldn't find any. Thanks; Amy

[flexcoders] Re: tilelist and transitions

2008-06-13 Thread Amy
to false on the TileList until after the transition is finished? HTH; Amy

[flexcoders] Re: Extra pixels on right side of TileList.

2008-06-13 Thread Amy
to manually add a tag when the code hinting said no just resulted in a compiler error. Could you tell me a bit more about monkey patching? Where does the file need to be, and how do you get it to be picked up as if it were in the mx namespace? Thanks; Amy

[flexcoders] Re: Extra pixels on right side of TileList.

2008-06-13 Thread Amy
--- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Hi Amy, Just a thought, but what happens if you take width=100% off of the tile list, or set the width and columnWidth to explicit values? Does the extra space still show up? And, did you try Alex's suggestion to add

[flexcoders] Re: Trying to call a function in a Flex object from JavaScript before it's ready.

2008-06-13 Thread Amy
should have a function that looks something like this: handleCreationComplete():void{ ExternalInterface.call('yourStartedJSFunction', true); } The Application's creationComplete event should be set to call this. HTH; Amy

[flexcoders] Extra pixels on right side of TileList.

2008-06-12 Thread Amy
that I gave everything a garish color so it was clear what container was where. If anyone has any ideas of how to get rid of those pixels, I'd be grateful. TIA; Amy

[flexcoders] Re: Extra pixels on right side of TileList.

2008-06-12 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: How are you trying to get the size to be an integer number of tiles? I'm letting Flex handle that, just as I would if I were working in HTML and using a table. It's sizing the TileList, and my expectation was that it

[flexcoders] Re: OOP and Work for Hire

2008-06-11 Thread Amy
--- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: Amy - that would be a breach of confidentiality in the legal and business world. You can not share information like that when a company is paying you to develop/code that information, unless it is specifically called out in any

[flexcoders] Re: Finding the last day of the month

2008-06-11 Thread Amy
--- In flexcoders@yahoogroups.com, Indra Prastha [EMAIL PROTECTED] wrote: Hi, I used to work with Coldfusion where they have this function like DaysInMonth(date), to obtain the last day of the month (31 / 30, or 28 / 29 for feb / leap year) ,and it's very handy, is there anyway I could

[flexcoders] Re: OOP and Work for Hire

2008-06-11 Thread Amy
--- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: Maybe. If said tools and techniques are uncovered while being paid to accomplish this floor re-finishing, then No they do not have any legal right to re-use it. In reality, will folks re-use/re-purpose what they've done? Absolutely

[flexcoders] Re: OOP and Work for Hire

2008-06-11 Thread Amy
was giving in 70 minutes. It may be that I never share, for instance, the exact VO that I use for driving a multiple choice question. But I'd like to know that if I want to base example code on stuff I do for this client that I don't put myself in legal jeopardy. -Amy

[flexcoders] Re: OOP and Work for Hire

2008-06-11 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, bubbamorse@ wrote: Amy - that would be a breach of confidentiality in the legal and business world. You can not share information like that when a company is paying you to develop/code

[flexcoders] Re: OOP and Work for Hire

2008-06-11 Thread Amy
the techniques might be inspired by things I did for them and they might decide to sue me. That could be a problem, as it is a big company ;-). But it looks like they're willing to negotiate on this, and so I think we're ok. -Amy

[flexcoders] Re: Working with Dates Double Bookings

2008-06-10 Thread Amy
way to apply this pattern, but it's working for me. HTH; Amy

[flexcoders] OOP and Work for Hire

2008-06-10 Thread Amy
developers handle the idea of Work for Hire? Thanks; Amy

[flexcoders] Re: OOP and Work for Hire

2008-06-10 Thread Amy
; Amy

[flexcoders] Re: setting fillcolor with actionscript and stylename

2008-06-09 Thread Amy
--- In flexcoders@yahoogroups.com, netdeep [EMAIL PROTECTED] wrote: Perhaps I am not understanding this properly. When I add the following style to my Panel: mx:Style .gradientBgrd { borderStyle: applicationControlBar; fillColors: #003483,#a9a7ff;

[flexcoders] Re: new to VO's, why won't this cast?

2008-06-09 Thread Amy
the object into another data type. I think it just helps the compiler REALIZE it is that data type if the syntax is not clear. So your data grid's dataProvider would need to already contain some sort of collection of EmployeeVO's to begin with. HTH; Amy

[flexcoders] Re: Getting PropertyChangeEvent to work properly

2008-06-07 Thread Amy
--- In flexcoders@yahoogroups.com, superbokbok [EMAIL PROTECTED] wrote: Hi Amy, I created the bindable event as suggested but still nothing :( Is there a sample usage of the PropertyChange class that I could look over to get a good sense of how to use this correctly? Again, I can get

Re: RES: [flexcoders] Using CSS with custom item renderers

2008-06-06 Thread Amy
the component use its CSS style? The fix I found is fairly easy, but a property would be even easier ;-). -Amy

[flexcoders] Re: How to remeasure itemRenderer

2008-06-05 Thread Amy
is not in sync with the swcs. How do I fix that? Thanks; Amy

[flexcoders] Re: Getting PropertyChangeEvent to work properly

2008-06-05 Thread Amy
[Bindable (event=propertyChange)] to get it to work with a property that has a getter only. HTH; Amy

[flexcoders] Re: Datagrid default sorting and row number

2008-06-05 Thread Amy
in sort like this 1,10,100,101,102...109...2,20,200,201 . and vice versa for descending. This might help http://flexdiary.blogspot.com/2007/11/showing-item-number-in- itemrenderer.html HTH; Amy

[flexcoders] Re: How to remeasure itemRenderer

2008-06-04 Thread Amy
; invalidateSize(); } Thanks :-) -Amy

[flexcoders] Re: Getting PropertyChangeEvent to work properly

2008-06-04 Thread Amy
the PropertyChangeEvent properly?? :) regards What class is your class extending? -Amy

[flexcoders] Re: How to remeasure itemRenderer

2008-06-04 Thread Amy
. If I uploaded my code, would you have time/interest to look at it? Thanks; Amy

[flexcoders] Re: HTTP request sending from IDE(Flex Builder) ERROR

2008-06-04 Thread Amy
Doesn't HTTPRequest need the compile flag use-network=false set to run locally? URLRequest will work both ways without any special flags set. HTH; Amy --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Precisely what is the error? Tracy

[flexcoders] Re: How to remeasure itemRenderer

2008-06-04 Thread Amy
was stepping through line by line and I didn't see it go through that function. It won't let me set a break point in the Framework code. Thanks; Amy

[flexcoders] Re: Using CSS with custom item renderers

2008-06-03 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: Hi, all; I'm trying to style a custom item renderer. I've called it TestRenderer. It's basically a canvas with a label in it. This is the style declaration: TestRenderer{ backgroundColor: #FF

Re: RES: [flexcoders] Using CSS with custom item renderers

2008-06-03 Thread Amy
--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Can you post the code for TestRenderer? Are you sure? It's very complicated ;-) ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; width=200 height=50 mx:Label x=10 y=10

Re: RES: [flexcoders] Using CSS with custom item renderers

2008-06-03 Thread Amy
is the List component set up to break this? Thanks; Amy

Re: RES: [flexcoders] Using CSS with custom item renderers

2008-06-03 Thread Amy
not have to pass in a styleName. Thannks; Amy

[flexcoders] Re: Questions regarding updating dataProviders after a drag drop

2008-06-03 Thread Amy
to the dataProvider which is an arrayCollection? The Flex 2/3 Training from the Sourcce books will walk you through the process of creating pretty much the type of application you seem to be going for. HTH; Amy

Re: RES: [flexcoders] Using CSS with custom item renderers

2008-06-03 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Michael Schmalle teoti.graphix@ wrote: The solution ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; width=200 height=50

[flexcoders] How to remeasure itemRenderer

2008-06-03 Thread Amy
to line 4487 (itemRendererToIndices protected function): if (!item || !(item.name in rowMap)) When that line runs, the invalidateSizeFlag on item (my renderer) suddenly goes to false. Any idea what's happening? What is the recommended way to remeasure an itemRenderer? Thanks; Amy

[flexcoders] Re: How to remeasure itemRenderer

2008-06-03 Thread Amy
. I uninstalled the last beta before installing. Is there any other action I should take? And yes ;-). Thanks! -Amy

[flexcoders] Re: How to convert a powerpoint to AS3 swf for loading in Flex?

2008-06-02 Thread Amy
rewriting Connect to be open source, Giorgio Natali, and I've seen him post occasionally on here. Maybe he will pop in with an opinion. If not, maybe a member of the engineering team could check with the Connect engineers and see if they can give you a hint. HTH; Amy

[flexcoders] What is the default itemRenderer for a List?

2008-06-02 Thread Amy
What is the default itemRenderer for a List? Thanks; Amy

[flexcoders] Re: working with resulthandler httpservice and referencing lastresult?

2008-06-02 Thread Amy
--- In flexcoders@yahoogroups.com, Jason B [EMAIL PROTECTED] wrote: Tracy im confused? you keep mentioning my data from XML but that is working fine like i said i am able to comment out the line throwing the error and use alert.show and it works fine... but this line

[flexcoders] Using CSS with custom item renderers

2008-06-02 Thread Amy
_does_ change, though. Can anyone give me a clue as to why my component style isn't changing? Thanks; Amy

Re: RES: [flexcoders] Using CSS with custom item renderers

2008-06-02 Thread Amy
--- In flexcoders@yahoogroups.com, Luciano Manerich Junior [EMAIL PROTECTED] wrote: Hi, you are setting the background Alpha to 0, how do you spec to see some bgcolor? Same result with 1. That's just the most recent value I tried. Thanks; Amy

[flexcoders] Re: Which is more expensive: binding or setting

2008-05-30 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: It depends... ...on the data object. Is it bindable? If so, does it really need to be? Let's say you have a person Object { firstName: Alex, lastName: Harui}. Not bindable. It becomes the data property

[flexcoders] Re: What is a classfactory and why would I use one?

2008-05-30 Thread Amy
--- In flexcoders@yahoogroups.com, Jonathon Stierman [EMAIL PROTECTED] wrote: I would say it's more flexible to use the ClassFactory because you can dynamically set the properties in the ClassFactory. Simple example: Say you had an application that creates Squares - just simple

[flexcoders] Re: taking xml var and splitting into 2 xml lists - flex bug?

2008-05-30 Thread Amy
{ return item.NodeStatus==1; } public function init(){ xlc1.filterFunction = filterForStatus0; xlc1.refresh(); xlc2.filterFunction = filterForStatus1; xlc2.refresh(); } You should now see the XMLListCollections properly populated. HTH; Amy

[flexcoders] Using an ArrayCollection as the dataProvider for multiple components

2008-05-29 Thread Amy
missing? Thanks; Amy

[flexcoders] Re: importing packages

2008-05-29 Thread Amy
they are in the same package. If all your as files are in the src directory, you don't need to import any of them. HTH; Amy

[flexcoders] Re: Working with SQL Lite Indexing and how it always starts at '1'

2008-05-29 Thread Amy
or you may be able to use a subquery to add a field that reflects the order of the item within the recordset. I'm not sure if SQLLite will allow such a subquery, but it might be worth a try. HTH; Amy

[flexcoders] Re: Using an ArrayCollection as the dataProvider for multiple components

2008-05-29 Thread Amy
in the other AC, then you want to share the AC's list property instead. The source array is created as a temporary variable inside a function. Can I just point at the source of the ArrayCollection, or do I need to store the Array separately? Thanks; Amy

[flexcoders] Which is more expensive: binding or setting

2008-05-29 Thread Amy
instead of the hodgepodge I have now. The question is, which will perform better, binding or setting in commitProperties()? Thanks; Amy

[flexcoders] Re: Component Broken

2008-05-28 Thread Amy
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 27 May 2008, Amy wrote: _request = new URLRequest(_path); this.addEventListener(Event.COMPLETE, getURLResult, false, 0, true); And your sure the XML is going

[flexcoders] Component Broken

2008-05-27 Thread Amy
ideas, I'd greatly appreciate it. Thanks; Amy

[flexcoders] Re: Button down event

2008-05-27 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: On Windows, in FF and IE, you tab to any regular Button, and space will activate it. It is standard MSAA But how many people use that instead of the more ubiquitous Enter to activate the highlighted button? I don't

[flexcoders] Re: Button down event

2008-05-25 Thread Amy
be automatically highlighted when you tabbed to it, what were you intending that the significance of that visual cue was supposed to be? Thanks; Amy

[flexcoders] Button down event

2008-05-22 Thread Amy
; Amy

[flexcoders] Re: Button down event

2008-05-22 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: If you set defaultButton on the container it will do it for you What if there are multiple buttons? Surely they can't _all_ be the default button? I thought Flex was supposed to be easy to make accessible. Thanks; Amy

[flexcoders] Flex in Connect

2008-05-21 Thread Amy
Has anyone demo'ed Flex in Connect before? I've found that both Flex and Connect slow my machine, and I am worried that the two together may be a horrible combination. Also, am I right in thinking that Connect itself is built in Flex? I thought I heard that somewhere. Thanks; Amy

[flexcoders] Re: drag from datagrid to textinput

2008-05-20 Thread Amy
--- In flexcoders@yahoogroups.com, David C. Moody [EMAIL PROTECTED] wrote: Hi, Is is possible to drag from a datagrid to a textinput? I just want one column of the data grid dumped inot the textinput? I'm not having much luck finding examples anywhere, the Adobe examples are mostly

[flexcoders] Re: Bindable tag question

2008-05-19 Thread Amy
to flesh that out if you need more info. HTH; Amy

[flexcoders] Re: Using custom item renderer with List

2008-05-19 Thread Amy
--- In flexcoders@yahoogroups.com, the_braniak [EMAIL PROTECTED] wrote: Hi all, In my application I am pooling data every 3 seconds. The data goes into a model which updates a view. I am using a list with a custom Item renderer. In the custom itemRenderer I am overriding the data

[flexcoders] Re:Authorware to Flex?

2008-05-19 Thread Amy
http://www.elearningsummit.eu/. I don't claim this will be the definitive guide for doing such conversions...everyone is still working that out, but it might help point you in the right direction. HTH; Amy

[flexcoders] Re: bug in setMonth() method?

2008-05-18 Thread Amy
. Every aspect of parsing, validation, and math that you can think of will save us time and agony. I was a bit surprised at the lack of anything analagous to DateDiff and DateAdd in AS3. -Amy

[flexcoders] Re: bug in setMonth() method?

2008-05-18 Thread Amy
was there in lieu of having a setter on month. -Amy

[flexcoders] Re: bug in setMonth() method?

2008-05-17 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I would not guarantee results if you set values that are out of range. So you think that it's ok to fail silently and return a nearly appropriate value rather than throwing an error?

[flexcoders] bug in setMonth() method?

2008-05-16 Thread Amy
that the month is out of range or just keep incrementing. Or have I missed something here? Thanks; Amy

[flexcoders] TabBar and percentage width

2008-05-16 Thread Amy
together to reflect the change. If I then close the browser at that width and relaunch the app, the tabs are all full size and extend off the edge of the page with no way to get to them (unless you resize the browser window). Is this expected behavior? TIA; Amy

[flexcoders] Re: Actionscript 3 Cookbook question

2008-05-14 Thread Amy
. _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Tuesday, May 13, 2008 2:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Actionscript 3 Cookbook question --- In [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com, Jeff

[flexcoders] Re: How to delete a workspace in FB3

2008-05-13 Thread Amy
Now how do I answer my second question? Write yourself a note (i.e. include a text file somewhere with the title copy1.txt and copy2.txt. HTH; Amy

[flexcoders] Re: Scroll HBox

2008-05-13 Thread Amy
of the replacement buttons? Then the three or four or however many data objects being shown at one time would just be switched out by the repeater... -Amy

[flexcoders] Actionscript 3 Cookbook question

2008-05-13 Thread Amy
this? Thanks; Amy

[flexcoders] Re: Actionscript 3 Cookbook question

2008-05-13 Thread Amy
--- In flexcoders@yahoogroups.com, Jeff Hindman [EMAIL PROTECTED] wrote: Actually, it's a Joey Lott package … check out http://rightactionscript.com/ascb/ Thanks! It would be SOOO cool if the index to that book pointed to some information like this when you look up ascb ;-)

[flexcoders] Re: Scroll HBox

2008-05-13 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: If you use repeater, there is no selection model. I'm not sure what he's looking for. I assumed that since the parent container was an HBox, he was using a repeater to repeat the DG's...

[flexcoders] Re: on the fly XML string change and keep CDATA wraps....

2008-05-09 Thread Amy
+ ]] but that throws an error. Any suggestions? try something like this: var newText:String = 'new text' xml.info.circleText=![CDATA[{newText}]] HTH; Amy

[flexcoders] Re: Adding/Removing child components

2008-05-06 Thread Amy
--- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Tom and Tracy both have good suggestions. However, I'd recommend using any of the List based controls, with an itemRenderer, instead of using a repeater. Unlike the Repeater component, which instantiates all objects

[flexcoders] Re: datagrid using button or checkbox wHat Code to Trigger

2008-05-05 Thread Amy
. After that (correct me if I'm wrong--this is all theoretical to me), you'd need to filter the dataProvider to only show the items that have not been removed. The last step would be either using the dataProvider's source to send to the server or removing the filter. JMO; Amy

[flexcoders] Re: looping with variable on object

2008-05-03 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: That's ok, dear, we love you anyway. (it's Dad, by the way) Tracy Tee hee...I'd been wondering :-D

[flexcoders] Re: looping with variable on object

2008-05-02 Thread Amy
--- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: ive tried using the loop as NO Double quotes and using a bracket around it too? im not having much luck anyone know a way to do this in a for loop NOT foreach. ALSO TRIED funfair_tab_challenge[i]

[flexcoders] Re: looping with variable on object

2008-05-02 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Yes, but leave off the dot after this, as Amy shows in the second line. I am sure the dot in the first one is just a typo. Oops. Sory Mom ;-)

[flexcoders] Re: Synchronous web service calls

2008-04-29 Thread Amy
--- In flexcoders@yahoogroups.com, byte.sensei [EMAIL PROTECTED] wrote: OK, so I understand that Flex web service calls are asynchronous, and I understand the many cases where this makes sense since you don't have to hold up the UI experience while waiting for a web service or remote

[flexcoders] Re: looping on results from returned data

2008-04-29 Thread Amy
--- In flexcoders@yahoogroups.com, Jason B [EMAIL PROTECTED] wrote: xmlResult = new XML(event.result); Try dropping the word new. HTH; Amy

[flexcoders] Re: Flexbuilder or Eclipse plugin to emulate VisualStudio function drop down?

2008-04-29 Thread Amy
Studio? I have quite a few functions in my script block and I'm constantly scrolling up and down to find stuff. That feature would be nice! You can set up bookmarks, or you can click your function anywhere it is used in code and press F3. HTH; Amy

[flexcoders] Re: warning: unable to bind to property 'XXX' on class 'XML' (class is not an IEventDispatcher)

2008-04-29 Thread Amy
tmpXMLList:XMLList = new XMLList(evt.result); xmlListCategories = new XMLListCollection(tmpXMLList); You may find that you need to return back actual XML and then what you have should work fine. HTH; Amy

[flexcoders] Re: Changing DataProvider on HorizontalList component

2008-04-24 Thread Amy
on the original dataProvider and it doesn't even _try_ to add the last itemRenderer. Thanks; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-24 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Alex Harui aharui@ wrote: I'm pretty sure you're not lazy, which is why I'm suggesting that you continue to spend time upgrading your skills at debugging. As your applications reach

[flexcoders] Re: passing parameters to eventlistener functions

2008-04-24 Thread Amy
HTH; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-24 Thread Amy
it is patched to work acceptably, so if you don't have time, you don't have time. Thanks; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-24 Thread Amy
. Set itemsNeedMeasuremet on the HList. I haven't subclassed HorizontalList. Can I do that from within my HBox itemRenderer? Or can I do that from the Application container? Thanks; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-24 Thread Amy
to just switch to a Repeater and rewrite my itemRenderer to work from a repeater as soon as the problem appeared, but this is how you learn things :-). Thanks; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-24 Thread Amy
to trick it to being set to true by setting a style like fontSize OK, thanks. I'll try that :-). -Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-23 Thread Amy
updateDisplayList(w:Number, h:Number):void { trace(udl, w, h); super.updateDisplayList(w, h) } This is completely wrong (10 and 4 vs. the measured 114 and 238), but I don't know enough about why to be able to determine what that means. Thanks! Amy

[flexcoders] Re: how do I loop thru dynamically created UI components?

2008-04-23 Thread Amy
with static type flash.display:DisplayObject to a possibly unrelated type mx.containers:HBox. If I read the line correctly, I can TypeCast a Display Object by using the constructor of the UIComponent? You can use something like myHBox:HBox = yourVar as HBox HTH; Amy

[flexcoders] Changing DataProvider on HorizontalList component

2008-04-23 Thread Amy
(); trace('addSolution'); } What am I missing? Thanks; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-22 Thread Amy
; Amy

[flexcoders] Re: Newbie Question: loading text file.

2008-04-22 Thread Amy
in a string. Look at URLLoader. You can either hard-code the URLRequest object or set it up dynamically. HTH; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-22 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Amy, Many folks have used HBox as a renderer successfully. Maybe there's something about repeater that is exposing a problem, but all I can do at this point is try to offer advice on how to get more information

[flexcoders] First repeater item loading twice

2008-04-21 Thread Amy
; } } Thanks! Amy

[flexcoders] Tiny components when using callLater()

2008-04-21 Thread Amy
to work. Any ideas? TIA; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-21 Thread Amy
in the above code. Thanks; Amy

<    5   6   7   8   9   10   11   >