[flexcoders] Re: tile list animation / transition throws error when height shrinks(not always!)

2008-11-07 Thread Amy
--- In flexcoders@yahoogroups.com, Fotis Chatzinikos [EMAIL PROTECTED] wrote: Hello Romain, that is not so easy... Its inside a custom component with a couple hundrends lines of code... Any ideas on how to debug something like this? Can i somehow tell the debugger to catch any

[flexcoders] Re: tile list animation / transition throws error when height shrinks(not always!)

2008-11-07 Thread Amy
--- In flexcoders@yahoogroups.com, Fotis Chatzinikos [EMAIL PROTECTED] wrote: Hello Romain, that is not so easy... Its inside a custom component with a couple hundrends lines of code... Any ideas on how to debug something like this? Can i somehow tell the debugger to catch any

[flexcoders] Re: callLater calls from flex

2008-11-07 Thread Amy
it so as not to fall afoul of it. I'm suspecting that the proper place for what you're doing is in updateDisplayList(), but you may also want to consider looking at commitProperties() as well. HTH; Amy

[flexcoders] Re: tile list animation / transition throws error when height shrinks(not always!)

2008-11-07 Thread Amy
--- In flexcoders@yahoogroups.com, Fotis Chatzinikos [EMAIL PROTECTED] wrote: Hello Amy, What kind of processing do you mean? The only solution i have found - so far- is to empty the datasource of the tilelist until the effect is finished and then reassign it, but this makes

[flexcoders] Re: Adding data to a bubbling event

2008-11-07 Thread Amy
to the appropriate grandparent node. Otherwise, if the Model implements IUID, it shouldn't be difficult to get the appropriate information just off of Product. If you can cast the model to IHierarchicalCollectionView, it's even easier using getParentItem(). HTH; Amy

[flexcoders] Re: Adding data to a bubbling event

2008-11-07 Thread Amy
that the requirements expanded. I actually enjoy telling my clients that I designed it to handle this kind of scope creep, so that won't cost any more than I estimated up front. My husband, who does the bookkeeping, hates this approach. LOL -Amy

[flexcoders] Re: Charts

2008-11-06 Thread Amy
--- In flexcoders@yahoogroups.com, Anthony DeBonis [EMAIL PROTECTED] wrote: Go to: http://examples.adobe.com/flex2/inproduct/sdk/dashboard/dashboard.html Right Click View Source on the app Dirrect link is here http://examples.adobe.com/flex2/inproduct/sdk/dashboard/srcview/index.ht

[flexcoders] Referring to built-in Flex classes in Class typed variables

2008-11-05 Thread Amy
without a CSS entry. Thanks; Amy

[flexcoders] Re: Debugging question - how do I skip over modules I don't care about?

2008-11-05 Thread Amy
and play through the fw code until it hits your breakpoint. HTH; Amy

[flexcoders] Re: Panel as an itemrenderer in List ?

2008-11-04 Thread Amy
--- In flexcoders@yahoogroups.com, Nik Derewianka [EMAIL PROTECTED] wrote: Hi, I am trying to create a list of re-orderable panels, I have set it up so that the Panel is the itemrenderer, but seem to be running into a few issues: 1) The Panel does not display it's title bar or

[flexcoders] Re: error border on custom itemRenderer

2008-11-04 Thread Amy
() and invalidateDisplayList(). HTH; Amy

[flexcoders] Re: Flex developer and their hourly rate

2008-11-04 Thread Amy
student. That's one reason I don't live there ;-). -Amy

[flexcoders] Re: SWFLoader problems!

2008-11-04 Thread Amy
, then try centering the SWFLoader in some other container The Flex Component kit lets you set up a MC that says what the bounds of the component are. HTH; Amy

[flexcoders] Re: Center Checkbox in DG Column

2008-11-02 Thread Amy
you're using for the dp happens to have the right number of rows anyway. Are you using a labelFunction that might be disguising this kind of problem? -Amy

[flexcoders] Re: UI component, a set function creationComplete

2008-10-31 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I know I shouldn't step in here, but I'd like to ask for a cease- fire. Faithful Flex developers may know that Amy was the guinea pig for Gordon and my first article in Flex Authority magazine where we discussed

[flexcoders] Re: Flex htmlText component

2008-10-31 Thread Amy
the collection of lines. When I use this kind of construction, I just use one List based component and move it around between the different children of the Accordion as the Accordion changes. I have an example of this at my blog if you're interested. HTH; Amy

[flexcoders] Re: Center Checkbox in DG Column

2008-10-31 Thread Amy
. In that case, you could simply use a CheckBox as the itemRenderer. Or, if you're only using CheckBoxes in that one place, you could just use a CheckBox TypeSelector to set the horizontalCenter and verticalCenter styles. HTH; Amy

[flexcoders] Re: Center Checkbox in DG Column

2008-10-31 Thread Amy
--- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: You could also potentially use my extended datagrid Where can I find it? --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2000

[flexcoders] Re: Using addChild() in Flex to add a Flash component.

2008-10-30 Thread Amy
Builder. Within Flex, I can instantiate the SimpleButton class with no problem, but I can't make it visible via addChild(). Any ideas why this may be and how I can get around it? Thanks much. If you use the Flash Component Kit, it will wrap it in UIMovieClip for you. HTH; Amy

[flexcoders] Re: How do arguments to an AS3 class translate to MXML?

2008-10-30 Thread Amy
once all the fields declared in the mxml tag have been set. Note that UIComponent contains a different initialize() method, so you can't use the IMXMLObject one for anything that inherits from UIComponent. HTH; Amy

[flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Amy, These functions are in place for very good reasons, and if you try to circumvent them you have a really good chance of running into problems. I will happily disagree with you on this and not say much else

[flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Amy
believe, though, that delaying creation of the child components will help his timing issues. Sorry, your post felt a little personal. I wrote it myself :-) -Amy

[flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Amy
to do so in this forum by people I respect. Maybe in retrospect it was a bad idea to take such advice, but new developers are going to continue getting such advice and taking it. So it very much matters where you create children when _other people_ are going to be subclassing your work. -Amy

[flexcoders] Re: How do arguments to an AS3 class translate to MXML?

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Note :: The IMXMLObject method signature is (d); initializedhttp://127.0.0.1:49487/help/topic/com.adobe.flexbuilder.he lp/langref/mx/core/IMXMLObject.html#initialized()

[flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Amy, I have read all that you have written. 2 years of sales, no complaints on the algorithm I use. So it very much matters where you create children when _other people_ are going to be subclassing your work

[flexcoders] Re: Dynamicaly loading of images

2008-10-30 Thread Amy
or whatever to pass a style into the icon, for instance, and that style could, theoretically, contain a path to an image. HTH; Amy

[flexcoders] Re: Do you use a Mac?

2008-10-29 Thread Amy
to make an objective opinion. One point though speaks for Mac and it's the fact that you can't run OS X in any virtual machine. So if you develop for OS X, you have to buy a Mac. My husband's Dell dual-boots to Mac... -Amy

[flexcoders] Re: Daily WTF... Property top not found on mx.containers.HBox and there is no default value.

2008-10-29 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Whenever in doubt always look at the asdoc's before hitting critical mass. :) Also, Flex Builder uses icons next to code completion that give you the type of member as well (event, effect, style or

[flexcoders] Re: Binding textinput width to datagrid column width?

2008-10-29 Thread Amy
--- In flexcoders@yahoogroups.com, biosmonkey [EMAIL PROTECTED] wrote: I must be doing something dumb, but I can't understand why this isn't working. I have a datagrid with say, 2 columns. Under the datagrid, I have two text input controls next to each other in an hbox. I want the

[flexcoders] Re: UI component, a set function creationComplete

2008-10-29 Thread Amy
invalidation method so that you can execute at the correct place in the invalidation process. HTH; Amy

[flexcoders] Re: best practice XML hyphens

2008-10-28 Thread Amy
interested I'm having to do something like xml[language-block].(@ln == _language) rather than the standard way of just doing xml.language-block.(@ln == _language). I'm thinkng you could just use yourXML.child('language-block').(attribute==_language) which is the recommended syntax anyway. HTH; Amy

[flexcoders] Re: Return two instances of objects keeping the same reference on the Actionscript s

2008-10-28 Thread Amy
defined, so you need to get hold of it and control it yourself. HTH; Amy

[flexcoders] Re: TabBar ViewStack

2008-10-28 Thread Amy
--- In flexcoders@yahoogroups.com, Mike Oliver [EMAIL PROTECTED] wrote: I have a TabBar controlling a ViewStack and I want the border on the view stack canvas to be hidden as it crosses under the selected tab so there is no line between the text in the tab and the canvas it controls. --

[flexcoders] Re: Equivalent to Java's Class.isInstance(Object) instance method?

2008-10-27 Thread Amy
of type Class is not an instance of anything. Typically this is handled in the Framework code by casting whatever variable ought to be a Class to Class type. HTH; Amy

[flexcoders] Re: Updating row of datagrid

2008-10-27 Thread Amy
() method! Please help! Thanks in advance. 1) Dispatch itemUpdated() for the edited item 2) Make sure your override of set data() properly calls commitProperties, etc. based on the change. HTH; Amy

[flexcoders] Re: Equivalent to Java's Class.isInstance(Object) instance method?

2008-10-27 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Adding to the insight, if you wanted to use the 'is' operator with those two arguments, you need to create an instance of the Class and then use the 'is' operator. This would let you know if it is an instance of

[flexcoders] Re: Flex stage size

2008-10-26 Thread Amy
I'm not sure if that translates to stage area or flash player area. Is there a difference? What I intend to resize is the full extent of any flash area in the browser. Set the width and height of your application to 100%. HTH; Amy

[flexcoders] Re: Can anyone help me?

2008-10-25 Thread Amy
--- In flexcoders@yahoogroups.com, Michael VanDaniker [EMAIL PROTECTED] wrote: The docs have the usage. In short, the item is the object from your collection you want to operate on and the fieldName is the field the chart wants to know about. In your case you would have something like this:

[flexcoders] Re: Runtime loading of fonts.

2008-10-24 Thread Amy
--- In flexcoders@yahoogroups.com, pratikshah83 [EMAIL PROTECTED] wrote: Hello Guys, I am currently embedding the font I need for label rotation. Its getting included at compile time. I am using unicodeRange to reduce the size of the swf with the font. Would loading the font at

[flexcoders] Re: Itemrenderer in an AdvancedDatagridColumn

2008-10-24 Thread Amy
item renderer. I have looked through the properties list and I couldn't find it. My dataprovider for the AdvancedDataGrid is a collection of StatusVO. Any help would be appreciated!!! I believe the iconFunction definition for ADG gives you the column information. HTH; Amy

[flexcoders] Re: Tree parent node

2008-10-24 Thread Amy
usually do have a reference parent inside the data model ie: class TreeNode { parent:TreeNode label:String data:Number } HierarchicalCollectionView handles this for you: http://flexdiary.blogspot.com/2008/07/musings-on-advanceddatagrid- part-5_03.html HTH; Amy

[flexcoders] For Each in XMLList

2008-10-24 Thread Amy
, it's setting it as 0, 1, etc. I'm trying to get around this by using if (prop is Number), but this is returning false. How do you check to distinguish a string that contains a number vs. a string that does not contain a number? Thanks; Amy

[flexcoders] Re: For Each in XMLList

2008-10-24 Thread Amy
--- In flexcoders@yahoogroups.com, Steve Mathews [EMAIL PROTECTED] wrote: isNaN should work. Thanks. :-) I wound up using parseInt.

[flexcoders] Re: getStyle(fill) from chart series fails

2008-10-23 Thread Amy
me at amy at magnoliamultimedia dot com if you'd like the extended Legend. HTH; Amy

[flexcoders] Re: How to get XML data in before self-configuring custom component needs it?

2008-10-23 Thread Amy
--- In flexcoders@yahoogroups.com, Mic [EMAIL PROTECTED] wrote: Not a very good description I think :-( A custom component uses XML data to build itself. With xml embedded within the AS component everything flies: var layoutXML:XML = layouts layout name='View1'

[flexcoders] Re: Is this possible?

2008-10-23 Thread Amy
--- In flexcoders@yahoogroups.com, donvoltz [EMAIL PROTECTED] wrote: Hello, I am working on a large app using Cairngorm and am trying to develop a sort of copmplex component amd am curious if this is a workable solution. I have created a custom component that extends a titleWindow.

[flexcoders] Re: Stage to Bitmap

2008-10-23 Thread Amy
to get from stage and and transform it to Bitmap or BitmapData. Do you know which Class/method I need to do ? ImageSnapshot. HTH; Amy

[flexcoders] Re: Still no one knows ? Please help.

2008-10-22 Thread Amy
be changed, I can't predict what color user used and I can prepare so many different colors icon. So, how to do if I want to draw my own icon ? You can use ANY class as an icon. So build your own class that does what you want, then use that. HTH; Amy

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-22 Thread Amy
--- In flexcoders@yahoogroups.com, Haykel BEN JEMIA [EMAIL PROTECTED] wrote: Try scaling only in one direction (X or Y) and you will see that it doesn't work. However it does with embedded fonts. I think scaling in both directions with the same value makes flex use another font size, but

[flexcoders] Re: Still no one knows ? Please help.

2008-10-22 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Since you are using an itemRenderer, this could be tricky. You need to find out where the parent is (MenuItem instance) and cast that reference to IStyleClient. IE var color =

[flexcoders] Re: sailorsea21 - RemoveChild question.

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Try the debug approaches I suggested. Tracy Please trim. Remember, digest is a perfectly valid way to get this newsgroup :-).

[flexcoders] Re: How can I make an ItemRenderer on a Datagrid react to a row selection?

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, João [EMAIL PROTECTED] wrote: I solved it by implementing the IDropInListItemRenderer and listening to DataGrid(listData.owner).addEventListener(ListEvent.CHANGE, listChangeHandler) It's not a best practice, but for now it's enough. You might find

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Haykel BEN JEMIA haykelbj@ wrote: Could you post a working example? This would really interest me! I'll try to make time tonight :-). I updated my GroupingFunction example to show

[flexcoders] Re: Forcing Flex to not cache images

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, oneworld95 [EMAIL PROTECTED] wrote: Hi. I've got a Flex app that communicates with a Java servlet to enable image file uploads. The user clicks in a Flex DataGrid row's button to select an image file and then clicks an Upload button to send the file to the

[flexcoders] Re: Hiding lineseries in a chart

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, seona.bellamy [EMAIL PROTECTED] wrote: Hi guys, I'm new to the list, and pretty new to Flex as well. I've been learning as I go while working on a project, so I'm not sure if I'm doing everything the most elegant way possible, but I'm hoping to refine it

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-21 Thread Amy
/ mx:Label text=Test label 2 scaleX=2 scaleY=2/ mx:Label text=Test label 3/ /mx:Application And both the first and second labels scaled properly (regardless of blend mode), so it's difficult for me to guess what the issue is on your file. HTH; Amy

[flexcoders] Papervision 3D an Flex components

2008-10-20 Thread Amy
or what. Thanks; Amy

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread Amy
--- In flexcoders@yahoogroups.com, akila_ksri [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: --- In flexcoders@yahoogroups.com, akila_ksri akila_ksri@ wrote: Hi, I need to apply horizontal scaling for a text with 'Arial' font

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread Amy
--- In flexcoders@yahoogroups.com, Haykel BEN JEMIA [EMAIL PROTECTED] wrote: You can't apply any effects or transformations (alpha, rotation, scaling etc.) on fonts if they are not embedded! So they tell me. Yet somehow I do, by setting the blendMode. Go figure ;-).

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread Amy
--- In flexcoders@yahoogroups.com, Haykel BEN JEMIA [EMAIL PROTECTED] wrote: Could you post a working example? This would really interest me! I'll try to make time tonight :-). -Amy

[flexcoders] Re: Papervision 3D and Flex components

2008-10-20 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: Is it possible to wrap an entire Flex component (for instance, a TileList) in PaperVision 3D in such a way that you give it a more 3D appearance, yet still keep it interactive? I've seen this demo http://dev.getoutsmart.com

[flexcoders] Re: Rippling through state changes

2008-10-17 Thread Amy
the applicable style/state at runtime. HTH; Amy

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-16 Thread Amy
to scale the text?? Is scaling not applicable for system fonts? ( I tried the same with font 'Verdana', but again, no luck!) Any help would be greatly appreciated. Try one of the following: 1) Set the blendMode to layer 2) Set the container's cacheAsBitmap to true 3) Embed the font HTH; Amy

[flexcoders] Re: Repeater control and custom Component

2008-10-16 Thread Amy
--- In flexcoders@yahoogroups.com, lysfael [EMAIL PROTECTED] wrote: Hello, Since it's not the same problem as the old one, i post a new topic on this, i hope this way to do enter in the ToS. I created a component Box-Based, which contains a repeater and some other attributes. Since my

[flexcoders] Re: Axis Label Width in Flex 3 BarChart

2008-10-16 Thread Amy
--- In flexcoders@yahoogroups.com, ashney1 [EMAIL PROTECTED] wrote: I have a problem that I have been struggling with for a couple days. I have a BarChart with a vertical axis that has very long labels. When Flex renders the chart, it squeezes the label making it virtually illegible. Is

[flexcoders] Re: DataGrid headerrenderer prevent redraw

2008-10-15 Thread Amy
--- In flexcoders@yahoogroups.com, aphexyuri [EMAIL PROTECTED] wrote: Hi I have a datagrid with valious headerRenderers. These headerRenderers have controls in them, for adjusting results in the datagrid. When I change the dataProvider for the datagrid, the entire datagrid gets redrawn,

[flexcoders] Re: Every second time I debug my app, Flex closes Safari :(

2008-10-15 Thread Amy
on if the Help is open and how many projects you have open. -Amy

[flexcoders] Interfaces with Styles

2008-10-15 Thread Amy
Is it possible to write an interface that specifies that a component will expose particular styles? Thanks; Amy

[flexcoders] Re: Efficiency and objects in the display list

2008-10-15 Thread Amy
? IUIComponent?). If you extend Sprite or whatever and implement whichever one is needed, you could add it to a container. -Amy

[flexcoders] Re: Problem with the DataGrid column keeps switching location

2008-10-14 Thread Amy
--- In flexcoders@yahoogroups.com, Weyert de Boer [EMAIL PROTECTED] wrote: Hello, I have been working on a solution to make some sort of property grid in Flex and I have been using the DataGrid. Only I am experiencing some problems with it. The datagrid consists of two columns called

[flexcoders] Re: Flex-based e-larning tool

2008-10-14 Thread Amy
to three people online at once. But just as a FYI, this is like saying I'd like to build a tiny skyscraper kind of like the Empire State building. Could you give me some pointers? Hope this clarifies. -Amy

[flexcoders] Flex themes

2008-10-14 Thread Amy
Is there a place where you can view the other themes that come with Flex? The style explorers seem to be hard coded to Halo. Thanks; Amy

[flexcoders] Re: Flex themes

2008-10-14 Thread Amy
. Aren't there any pages hosted by Adobe that demo what they look like? Thanks; Amy

[flexcoders] Re: Flex themes

2008-10-14 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Amy, A flex theme is just a SWC file. Use the -theme compiler flag and add it to the options. Why would this be silly? Probably would take me the time it took you to write that paragraph. ;-) But I don't have

[flexcoders] Flex Workspace Preferences

2008-10-13 Thread Amy
Hi, all; Is there a way to copy preferences from one workspace to another? For example, things like my help contexts I always want to be the same across projects. But it's aggravating that each time I create a new project I have to do all this setup again. Thanks; Amy

[flexcoders] Re: Custom Tooltip

2008-10-13 Thread Amy
that all of the List based components have. You can set this up to use the data in the current item to look up any information available to the program. HTH; Amy

[flexcoders] Re: How to add a horizontal scrollbar to a 3d column chart

2008-10-12 Thread Amy
--- In flexcoders@yahoogroups.com, jeffreyr6915 [EMAIL PROTECTED] wrote: I would like to add a horizontal scrollbar to the column chart that I have. Can someone please show me how to do this? Below is the axis renderer class that I need to alter. Please help. Thanks I haven't tried these,

Re: RE:[flexcoders] floodFill and threshold methods with bitmapData

2008-10-12 Thread Amy
. Gif does a much better job of that. -Amy

[flexcoders] Re: Loading, unloading and then re-loading a module with a chart populated from a My

2008-10-11 Thread Amy
... http://www.magnoliamultimedia.com/flex_examples/Amys_Flex_FAQ.pdf See Q8 HTH; Amy

[flexcoders] Re: Couple questions

2008-10-11 Thread Amy
Flash or Flex - maybe these are not even the best choices? You might want to look at Captivate. HTH; Amy

[flexcoders] Re: Couple questions

2008-10-11 Thread Amy
an intemediary AS2 swf to talk between the runtime systems. Some of the converters include players for playing back the converted files. Eventually I wrote a player using AS2. There's a public Beta of Captivate 4 going on now. I would suspect that this version uses AS3. HTH; Amy

[flexcoders] The trouble with Alert.show()

2008-10-11 Thread Amy
? It might provide a clue as to what the larger problem is. Thanks! Amy

[flexcoders] Re: Couple questions

2008-10-11 Thread Amy
--- In flexcoders@yahoogroups.com, Nancy Gill [EMAIL PROTECTED] wrote: There's a public Beta of Captivate 4 going on now. I would suspect that this version uses AS3. There is, Amy? Where? I just checked Adobe Labs and I don't see anything. http://blogs.adobe.com/silke.fleischer/2008/08

[flexcoders] Re: The trouble with Alert.show()

2008-10-11 Thread Amy
else trying to draw to the screen will fail in the same way. I've figured out how to get the problem to happen outside the wrapper, so I'm tracking it down that way. Thanks :-) -Amy

[flexcoders] Re: Interfaces WHY?

2008-10-10 Thread Amy
. If the parent component doesn't see that you have implemented this interface, I don't think it will try to give you that information. HTH; Amy

[flexcoders] Re: Create Help System in Flex - how to display html in a canvas or component?

2008-10-10 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Displaying full html in Flex (Flash Player) is not yet possible. What are your requirements? The simplest solution is to use a separate browser to display the html help pages. The Flex side needs to know where

[flexcoders] Error 1150 when overriding protected function

2008-10-09 Thread Amy
this class, because usually when you start typing override protected function in a class, it has a whole list of functions you might be overriding. But in this class, that doesn't happen. If anyone has any ideas, I'd be very grateful. Thanks; Amy

[flexcoders] Re: Error 1150 when overriding protected function

2008-10-09 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, You have a brace mismatch in your class/package. :) I think I just picked that up accidentally in copy and paste, as I already checked that carefully. But I certainly will go back and recheck. Thanks :-)

[flexcoders] Re: Error 1150 when overriding protected function

2008-10-09 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, You have a brace mismatch in your class/package. :) Still trying to troubleshoot this. Even just this throws the same error: package com.magnoliamultimedia.views { import flash.display.DisplayObject;

[flexcoders] Re: AMFPHP and HierarchicalData

2008-10-09 Thread Amy
--- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: OK, this is a small example: Thanks :-). This project is on hold right now, but I will be able to use this soon.

[flexcoders] Re: Feeding complex XMLdata to charts: Flex3

2008-10-09 Thread Amy
. There are also some good charting links in the Thoughts on charting post on my blog. HTH; Amy

[flexcoders] Re: Error 1150 when overriding protected function

2008-10-09 Thread Amy
with head... Thanks! Amy

[flexcoders] Re: set height of a Container back to default? (resize to content)

2008-10-09 Thread Amy
--- In flexcoders@yahoogroups.com, Ryan [EMAIL PROTECTED] wrote: I have the following quandary: I have a container which most of the time resizes to what it's holding. Fine. But sometimes I need it to be an explicit height- so i set the height- also fine. Then I need to set it back to

[flexcoders] Re: How to default an Accordian to a closed state (Flex 3)

2008-10-08 Thread Amy
includeinLayout=false --Canvas minHeight=0 label=Section 2 YourComponent includeinLayout=false Then when they click any tab, set the includeInLayout property of the child of the canvas to true. HTH; Amy

[flexcoders] Re: coloring a box

2008-10-08 Thread Amy
to do it horizontally. your help guys is really needed. http://livedocs.adobe.com/flex/3/html/help.html?content=skinstyle_3.html HTH; Amy

[flexcoders] AMFPHP and HierarchicalData

2008-10-08 Thread Amy
Does anyone have an example of using AMFPHP to serialize and deserialize hierarchical collections of typed objects? Thanks; Amy

[flexcoders] Re: AMFPHP and HierarchicalData

2008-10-08 Thread Amy
. With this structure, the Flex menubar can take the entire arraycollection as a dataprovider and automatically create my menubar. Let me know if you would like me to create a small example. I'd love to see it if you don't mind :-) Thanks; Amy

[flexcoders] Re: datagrid itemRenderer help

2008-10-07 Thread Amy
--- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Ha, well we wouldn't want the inmates running the asylum. Props to Amy too. I'm just wondering why Adobe wouldn't already have these kinds of checks in place. I haven't looked at Label code specifically, but I see

[flexcoders] Re: Feeding complex XMLdata to charts: Flex3

2008-10-07 Thread Amy
dataprovider connection, which understands simple arrays, gets confused with complex arrays. *What I get thats wrong:* You might find this useful http://flexdiary.blogspot.com/2008/08/charting-example.html HTH; Amy

[flexcoders] Re: External Item Renderer Question

2008-10-07 Thread Amy
--- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Hey JF, By external, do you mean custom itemRenderer; like in the DataGridColumn tag itemRenderer=myItemRenderer? If so, the same logic should work. Just make sure that buyList is a public variable. However, it's

<    1   2   3   4   5   6   7   8   9   10   >