RE: [flexcoders] "y" value of UIComponents added inside of VBox

2007-04-02 Thread Alex Harui
I would recommend adding a button to your app that, when you click the button, picks the y value off a component and sets verticalScrollPosition to it. If that works then you have a timing problem with invalidation and validation. If not, post that example. -Alex _

RE: [flexcoders] question about string equality

2007-04-02 Thread Alex Harui
We don't have the definitions of sc.name and oc.category. Are they really typed as strings? Do they have the same length? Testing with "sc.name is String" is a good way to verify. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of simonjpa

RE: [flexcoders] invalidateSize() in tandem with invalidateDisplayList()

2007-04-02 Thread Alex Harui
The grand theory of invalidation states that if your size properties may have changed, you call invalidateSize() and not invalidateDisplayList() and that if your size did change the framework will call invalidateDisplayList for you. Then if your size didn't change you won't waste time in updateDis

RE: [flexcoders] Re: Drawing a box over top of an image

2007-04-03 Thread Alex Harui
gt; > http://www.adobe.com/2006/mxml <http://www.adobe.com/2006/mxml> " > layout="absolute" width="100%" height="100%" backgroundColor="#FF"> > > > > id="myImage" > > source="@Embed('../resource

RE: [flexcoders] Re: Need to different images in datagrid column

2007-04-03 Thread Alex Harui
Try something like (foo contains 'pdf' or 'word'): import mx.controls.Image private function addGif(o, c) { return o.foo + ".gif" } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Vinoth Babu Sent: Tuesday, Ap

RE: [flexcoders] Modules vs RSLs - Are they mutually exclusive?

2007-04-03 Thread Alex Harui
One way to think of the difference is that RSLs define classes, and modules define interfaces. An RSL is loaded by Flex before app startup because classes you might need such as UIComponent may be in the RSL, and you must link to them as classes and not interfaces since they are base classes or ot

RE: [flexcoders] Tree and Array

2007-04-03 Thread Alex Harui
You have to build up the dataprovider and pass it into the tree. If you change the dataprovider later, the tree will notice in most cases. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sal Sent: Tuesday, April 03, 2007 5:38 PM To: flexco

RE: [flexcoders] browser() bug?

2007-04-03 Thread Alex Harui
Start adding trace statements and look in flashlog.txt to see what it had to say. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of herklano Sent: Tuesday, April 03, 2007 4:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] browser()

RE: [flexcoders] talking to Flash SWF's

2007-04-03 Thread Alex Harui
Others use a intermediary AS2 swf that talks to the AS3 via localconnection. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, April 03, 2007 2:50 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] talking

RE: [flexcoders] Re: getChildren

2007-04-03 Thread Alex Harui
FWIW you can test for a property using "in" if (getChildren in obj) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Morearty Sent: Tuesday, April 03, 2007 5:44 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: getChildren

RE: [flexcoders] Re: Checkbox in DataGrid cell won't turn invisible!

2007-04-03 Thread Alex Harui
I'm not sure DG allows invisible renderers. We flip visible as part of recycling renderers. Wrap in a UIComponent and see if that helps. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jamiebadman Sent: Tuesday, April 03, 2007 1:25 PM To:

RE: [flexcoders] Datagrid - Disable row

2007-04-03 Thread Alex Harui
Subclass the DG and access listItems array to get to the other cells. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eduardo Dias Sent: Tuesday, April 03, 2007 10:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Datagrid - Disabl

RE: [flexcoders] Re: need a little help with itemRenderer

2007-04-03 Thread Alex Harui
Or look at the examples on my blog (blogs.adobe.com/aharui) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Sent: Tuesday, April 03, 2007 7:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: need a little help with itemRend

RE: [flexcoders] Validating Datagrid

2007-04-03 Thread Alex Harui
You should validate edited cells during the ITEM_EDIT_END event From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jfournet Sent: Tuesday, April 03, 2007 8:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Validating Datagrid I am

RE: [flexcoders] Re: Module Interface Problems

2007-04-03 Thread Alex Harui
ModuleLoader is a convenience container. It loads in the module via ModuleManager and when READY, it starts to create the children. If you listen to READY you may see it before moduleloader had a chance to see it and create the child. -Alex From: flexcoders@ya

RE: [flexcoders] If you don't pass anything to IModuleInfo load()...

2007-04-04 Thread Alex Harui
child From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of footube42 Sent: Wednesday, April 04, 2007 7:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] If you don't pass anything to IModuleInfo load()... If you don't pass anything (

RE: [flexcoders] Re: How can I tell if I have the latest hotfix installed correctly?

2007-04-04 Thread Alex Harui
UIComponent has a static version property. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Collin Peters Sent: Wednesday, April 04, 2007 5:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How can I tell if I have the latest ho

RE: [flexcoders] Re: Module Interface Problems

2007-04-04 Thread Alex Harui
;mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > ModuleLoader is a convenience container. It loads in the module via > ModuleManager and when READY, it starts to create the children. If you > listen to READY you may see it before moduleloader had a ch

RE: [flexcoders] editable combobox

2007-04-04 Thread Alex Harui
I think that's been reported as a bug. Try setting the .text property to the correct value. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scotty Scott Sent: Wednesday, April 04, 2007 9:52 AM To: flexcoders@yahoogroups.com Subject: [flexc

RE: [flexcoders] Re: dynamically created access and event elements problem and

2007-04-04 Thread Alex Harui
You should keep variables referencing the checkboxes, call addEventListener to listen to the "change" event and set the selected property of the other checkbox From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alex steel Sent: Wednesday, Apri

RE: [flexcoders] Extending LinkButton - please help, no hair left!

2007-04-04 Thread Alex Harui
I would set the textfield's props in createChildren after super.createChildren. Calling measure from updateDisplayList is too late. The framework should have called it for you especially if invalidateSize got called. From: flexcoders@yahoogroups.com [mailto:[EM

RE: [flexcoders] Tiling a Background Image

2007-04-04 Thread Alex Harui
I'd make a custom border class. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Whitelock Sent: Wednesday, April 04, 2007 11:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tiling a Background Image I've just started work

RE: [flexcoders] Re: question about string equality

2007-04-04 Thread Alex Harui
=== I believe it doesn't affect strings. if name == null and category = new String() then they are not == or ===, but their valueOf may be "" From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of simonjpalmer Sent: Wednesday, April 04, 2007 9:

RE: [flexcoders] DataGrid, error using DateField as the item editor

2007-04-04 Thread Alex Harui
editorDataField="selectedDate" From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cosma Sent: Wednesday, April 04, 2007 8:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid, error using DateField as the item editor Hello,

RE: [flexcoders] Re: datagrid image itemRenderers don't maintainAspectRatio

2007-04-04 Thread Alex Harui
You could subclass Image, override updateDisplayList and set the contentHolder's width/height afters super.updateDisplayList From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bhaq1972 Sent: Wednesday, April 04, 2007 7:54 AM To: flexcoders@yah

RE: [flexcoders] Re: Scroll Tip on Roll Over on scroll bar of a grid

2007-04-04 Thread Alex Harui
of a grid Hi, I have gone through the ScrollControlBase.as but i didnt find any rollOver event.. so can I show a tip on rollover on scroll of a grid Kindly suggest... Thanks in Advance.. Sanjay sharma --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Ale

RE: [flexcoders] Re: Need to different images in datagrid column

2007-04-04 Thread Alex Harui
inoth --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Try something like (foo contains 'pdf' or 'word'): > > > impor

RE: [flexcoders] DataGrid Jumping

2007-04-05 Thread Alex Harui
I don't remember any bugs like that. Can you build a small test case that uses regular DataGrid? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Grace Sent: Thursday, April 05, 2007 12:40 PM To: flexcoders@yahoogroups.com Subject: [

RE: [flexcoders] Re: Module Interface Problems

2007-04-05 Thread Alex Harui
dule. I got a little lost ModuleLoader loading ModuleLoaders module... makes my head spin. -Mike --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > If you don't make an instance of the main cla

RE: [flexcoders] Re: Validating Datagrid

2007-04-05 Thread Alex Harui
s.com [mailto:[EMAIL PROTECTED] On Behalf Of jfournet Sent: Thursday, April 05, 2007 8:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Validating Datagrid --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED

RE: [flexcoders] Urgent! add one property to property dialog box ?

2007-04-05 Thread Alex Harui
The right mouse menu is the ContextMenu class and api. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of arpan srivastava Sent: Thursday, April 05, 2007 7:49 AM To: Flex Coders; Flex Builder Subject: [flexcoders] Urgent! add one prope

RE: [flexcoders] Re: datagrid image itemRenderers don't maintainAspectRatio

2007-04-05 Thread Alex Harui
don't maintainAspectRatio Thanks Alex. That works except the image appears left aligned. I'd like it to be centre aligned. horizontalAlign=center doesn't work. any more ideas --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PR

RE: [flexcoders] DataGrid Jumping

2007-04-05 Thread Alex Harui
work for when something like this happens, but there sure is a lot of code to try and understand. Daniel On 4/5/07, Alex Harui < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: I don't remember any bugs like that. Ca

RE: [flexcoders] SOLVED: Image Item Renderer in ActionScript for DataGrid

2007-04-06 Thread Alex Harui
I just put an example of Image renderers on my blog: http://blogs.adobe.com/aharui/2007/04/more_thinking_about_item_rende.htm l From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Whitelock Sent: Thursday, April 05, 2007 7:48 PM To: fle

RE: [flexcoders] Re: datagrid image itemRenderers don't maintainAspectRatio

2007-04-06 Thread Alex Harui
;mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > You could subclass Image, override updateDisplayList and set the > contentHolder's width/height afters super.updateDisplayList > > > > From:

RE: [flexcoders] Loading and Controlling a Flash Animation within a Flex Application

2007-04-06 Thread Alex Harui
If Flash animation is player 8 or earlier, you need to set up localconnections to talk to it. If you are using Flash for player 9, you can access properties of the SWF. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kelpmike Sent: F

RE: [flexcoders] DataGrid Jumping

2007-04-06 Thread Alex Harui
ion = n; } Note that this failed to ever run, even when I saw the bug happen. Are there any other functions that could trap when this bug is rearing its head? I like having the source to most/all of the framework for when something like this happens, but there sure is a lot of code to

RE: [flexcoders] In datagrid, how to change the cell background after editing....

2007-04-06 Thread Alex Harui
Check out the itemrenderer examples on my blog http://blogs.adobe.com/aharui/2007/03/thinking_about_item_renderers_1.ht ml http://blogs.adobe.com/aharui/2007/04/more_thinking_about_item_rende.htm l From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTE

RE: [flexcoders] Re: Module Interface Problems

2007-04-06 Thread Alex Harui
osted, the zip file contains both module one and module two project zip files as well. Example: http://thanksmister.com/moduletest/main.html <http://thanksmister.com/moduletest/main.html> --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui"

RE: [flexcoders] Loading Modules from module

2007-04-06 Thread Alex Harui
Check out the Module Interface Problem discussion. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wpding Sent: Thursday, April 05, 2007 8:08 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Loading Modules from module I want

RE: [flexcoders] Accessing files in folders with special characters

2007-04-06 Thread Alex Harui
Can you hit the image from the browser without Flex/Flash. Not all Unicode characters are valid URLs From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shmeedee Sent: Thursday, April 05, 2007 7:05 AM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] Re: Dynamic constructor invocation?

2007-04-07 Thread Alex Harui
That's one of the reasons all of our mxml classes have no constructor arguments. The code flow is then: result = new clazz(); for (var p:String in args) { results[p] = args[p]; } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behal

RE: [flexcoders] Re: List item selection on mouse right click?

2008-06-11 Thread Alex Harui
Google for it. Maybe even in the forum archives. I'm pretty sure it's been done. You use one of the context menu events and check the mouse position (mouseX,mouseY) and set selection accordingly. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Re: Possible to add some data to load to the default preloader?

2008-06-11 Thread Alex Harui
oups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > I'll bet you had to handroll it in Flash 5, and you can hand-roll it in > Flex 3. It will just take some work like it did in Flash 5. > > > > > > From: flex

RE: [flexcoders] Flex 3.1 - The "Marshall Plan"

2008-06-11 Thread Alex Harui
act [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: 10 June 2008 18:42 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex 3.1 - The "Marshall Plan" If your "remoteModule"

RE: [flexcoders] How would i layout different objects in grid form

2008-06-11 Thread Alex Harui
You might be able to use constraintColumns/Rows. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of anuj181 Sent: Wednesday, June 11, 2008 12:27 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How would i layout different objects in

RE: [flexcoders] Memory leak caused by Image and String objects

2008-06-11 Thread Alex Harui
There's a glitch in the profiler/debugger-player where strings don't get cleaned up. If two memory snapshots only differ by strings that have no backreferences, run it in the release player and see if memory still accumulates. In my experience, you will see memory stabilize in the release player.

RE: [flexcoders] controlling a swf from SWFLoader

2008-06-11 Thread Alex Harui
I would try meter.content.meter_mc.gotoAndStop(), but meter.swf must be an ActionScript 3 swf published for player 9. Any player 8 or earlier content cannot be directly talked to. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mario Vi

RE: [flexcoders] Multiline Title in Panel Component

2008-06-11 Thread Alex Harui
I'd try subclassing, setting headerHeight, and setting multiline=true on titleTextField. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of asaivanson Sent: Wednesday, June 11, 2008 7:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoder

RE: [flexcoders] Check for crossdomain.xml from Flex?

2008-06-11 Thread Alex Harui
I'm not sure what is faster, but crossdomain.xml can usually be fetched via URLLoader and examined. My guess is watching for SecurityError is easier and just as efficient. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Se

RE: [flexcoders] Changing renderer's margin in the TileList Component

2008-06-11 Thread Alex Harui
In a tilelist, the renderer is responsible for honoring paddingLeft and paddingRight, so if you have a custom renderer, you can implement margins in that renderer. paddingTop/paddingBottom should have an effect no matter what the renderer. From: flexcoders@yah

RE: [flexcoders] Re: HTTPService Bug

2008-06-11 Thread Alex Harui
How are you converting from XML to object? You may need a custom converter as I think our default code will try to make numbers out of anything that is a valid number. There's probably not enough info to know it is a string. From: flexcoders@yahoogroups.com [

RE: [flexcoders] Another Bug? Security? OBject Related.

2008-06-11 Thread Alex Harui
Try ObjectUtil.toString(bla, null, []); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rafael Faria Sent: Wednesday, June 11, 2008 9:30 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Another Bug? Security? OBject Related. S

RE: [flexcoders] Check for crossdomain.xml from Flex?

2008-06-11 Thread Alex Harui
with looking for security faults if there's nothing built-in :) Cheers, -Josh On Thu, Jun 12, 2008 at 2:29 PM, Alex Harui <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: I'm not sure what is faster, but crossdomain.xml can usually be fetched via URLLoader and exami

RE: [flexcoders] Modules not loading in some browsers! Why?

2008-06-12 Thread Alex Harui
Most common issue has been multiple open requests for the same module From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mellomike07 Sent: Thursday, June 12, 2008 8:36 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Modules not load

RE: [flexcoders] DuplicateMovieClip

2008-06-12 Thread Alex Harui
2 loaders will each load the jpg, although the 2nd should come from the browser cache. You can make a copy of the bitmap and use that instead of the 2nd loader. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Deniz Davutoglu Sent: Th

RE: [flexcoders] Dynamic DataGrid row height ?

2008-06-12 Thread Alex Harui
Subclass Tree and change its measure() method to report a measuredHeight that contains the current number of rows * rowHeight From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tvikatos Sent: Thursday, June 12, 2008 1:50 AM To: flexcoders@y

RE: [flexcoders] Question about flex event flow

2008-06-12 Thread Alex Harui
Capture allows the parent to see an event before the child gets it and potentially block it. Bubble allows the parent to see an event after the child has got it and decided whether to allow the parents to see it. Sometimes your parents read your mail and never let you see it, sometime you want

RE: [flexcoders] Re: Modules not loading in some browsers! Why?

2008-06-12 Thread Alex Harui
loaded inside a creationComplete event handler of a view component. Could it be that this creationComplete event is being fired more than once? if so, how can I prevent this? Thanks!!! --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <

RE: [flexcoders] Re: DuplicateMovieClip

2008-06-12 Thread Alex Harui
again and create preloader for second as well and weard thing is that it takes same time with first ( tried a lot but it doesnt change). It needs to be some way to duplicate object. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAI

RE: [flexcoders] Importing lots of symbols from swf for TileList

2008-06-12 Thread Alex Harui
If the SWF symbols are published for player 9, then I think you can embed the entire swf. If it is Flash 8 content or earlier, you'll have to embed individually From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nik Derewianka Sent: Thursd

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

2008-06-12 Thread Alex Harui
How are you trying to get the size to be an integer number of tiles? You might need paddingRight=0 on VBox or HBox? If you break in SystemManager.mouseDownHandler, the event.target should be the container or control that owns the pixels you clicked on. From

RE: [flexcoders] PopUpButton custom component with styles

2008-06-12 Thread Alex Harui
PopUpStyleName? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jon Bradley Sent: Thursday, June 12, 2008 12:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] PopUpButton custom component with styles Got a bit of an issue he

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

2008-06-12 Thread Alex Harui
groups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Thursday, June 12, 2008 4:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Extra pixels on right side of TileList. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMA

RE: [flexcoders] Loaded Modules Dimensions - height="100%" doesn't work !!

2008-06-13 Thread Alex Harui
Known issue. Use percentHeight="100" From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aerospc Sent: Friday, June 13, 2008 8:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Loaded Modules Dimensions - height="100%" doesn't work

RE: [flexcoders] Help me understand custom drag/drop events

2008-06-13 Thread Alex Harui
Event properties should be thought of as read-only. Drag/Drop events are dispatched by the DragManager so to alter what gets dispatched would probably require a custom DragManager which isn't officially supported. I suppose you could intercept and re-dispatch events using capture phase, stopImmedi

RE: [flexcoders] Context Menu Use in PopUp

2008-06-13 Thread Alex Harui
By "functions" do you mean event listeners? How are you setting it up? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jmfillman Sent: Friday, June 13, 2008 10:14 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Context Menu Use

RE: [flexcoders] ContextMenu submenus

2008-06-13 Thread Alex Harui
That is correct. No submenus in ContextMenu From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of toofah_gm Sent: Friday, June 13, 2008 8:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ContextMenu submenus Is there really no s

RE: [flexcoders] Flash 10 - Large Bitmap support does

2008-06-13 Thread Alex Harui
Flex 3 swfs cannot take advantage of player 10 features. You could try to hack the version byte in the SWF, but I don't know what else might fail after that. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of richmcgillicuddy Sent: Friday,

RE: [flexcoders] Ruminations on the LayoutManager

2008-06-13 Thread Alex Harui
Sounds good to me. File an enhancement request at bugs.adobe.com/jira. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dave Glasser Sent: Friday, June 13, 2008 6:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Ruminations on

RE: [flexcoders] Help with updating a Tree when its dataprovider has changed.

2008-06-13 Thread Alex Harui
Try applying the filter to each child collection. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hpeter96 Sent: Friday, June 13, 2008 6:13 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Help with updating a Tree when its datapr

RE: [flexcoders] Flex 3.1 - The "Marshall Plan"

2008-06-13 Thread Alex Harui
__ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: 11 June 2008 21:44 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex 3.1 - The "Marshall Plan" It is being considered. Below is a comment from one of the main A

RE: [flexcoders] Re: DuplicateMovieClip

2008-06-13 Thread Alex Harui
? Also this work just for bitmap. if I load swf what sould I do? --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > You can make a copy of the bitmap. >

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

2008-06-13 Thread Alex Harui
The JS should be ready before Flash, so I'd make sure there's a function in JS that Flash will call via EI when it is ready. ApplicationComplete event would be a good time to call out to JS. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Custom TreeItemRenderer not rendering children

2008-06-13 Thread Alex Harui
If you don't use the custom renderer, do you still only see the root? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of svbhamid Sent: Friday, June 13, 2008 11:55 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Custom TreeIte

RE: [flexcoders] Re: Help with updating a Tree when its dataprovider has changed.

2008-06-13 Thread Alex Harui
taProvider ? --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Try applying the filter to each child collection. > > > > > > From: flexcod

RE: [flexcoders] Re: Help me understand custom drag/drop events

2008-06-13 Thread Alex Harui
--- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Event properties should be thought of as read-only. Drag/Drop events > are dispatched by the DragManager so to alter what gets dispatched would > probably require a

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

2008-06-13 Thread Alex Harui
By debugging a simple test case. Can you make one and post it? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Friday, June 13, 2008 1:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Extra pixels on right side o

RE: [flexcoders] RSL hell

2008-06-13 Thread Alex Harui
I think you use: -compiler.external-library-path framework.swc to prevent classes in that swc from being linked into your RSL From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of matthew.painter Sent: Friday, June 13, 2008 1:36 PM To: fl

RE: [flexcoders] Extends DataGrid

2008-06-13 Thread Alex Harui
Look for examples on my blog (blogs.adobe.com/aharui). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rodrigo Pereira Fraga Sent: Friday, June 13, 2008 3:06 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Extends DataGrid Hi

RE: [flexcoders] Firefox 3 and Flex Debug Not Working ?

2008-06-14 Thread Alex Harui
I would add a text label that traces out version and isDebugger from flash.system.Capabilities. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Walters Sent: Saturday, June 14, 2008 4:08 PM To: flexcoders@yahoogroups.com Subject: [f

RE: [flexcoders] Firefox 3 and Flex Debug Not Working ?

2008-06-15 Thread Alex Harui
? Done: MAC 9,0,124,0 true Added a trace as well and again the trace works in Safari but not Firefox 3. Mark Walters [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> http://digitalflipbook.com <http://digitalflipbook.com> On Sat, Jun 14, 2008 at 11:08 PM, Alex Harui <[

RE: [flexcoders] Re: Help me understand custom drag/drop events

2008-06-15 Thread Alex Harui
o slightly, to call the insertToDataBaseFunction(); right after the normal behavior of inserting it into the dataProvider. Looks simple, problem is, I'm just not sure where to start. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[

RE: [flexcoders] Error #2025: The supplied DisplayObject must be a child of the caller

2008-06-15 Thread Alex Harui
Makesure mainWindow is the right parent. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of guillaumeracine Sent: Saturday, June 14, 2008 10:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Error #2025: The supplied DisplayObject

RE: [flexcoders] Re: How to set the registration point for a UIComponent

2008-06-17 Thread Alex Harui
There isn't really a "registration point". All that is is magic to reposition the graphical content to some other place. IOW, instead of drawing a rectangle from 0,0 to 100, 100, you can effectively set the reg point at 50,50 by drawing from -50, -50 to 50,50

RE: [flexcoders] Simple XML problem

2008-06-17 Thread Alex Harui
Double check your labelFunction From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sabe2000 Sent: Tuesday, June 17, 2008 11:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Simple XML problem Hi, HOw can I show all the titles

RE: [flexcoders] flash9f.ocx crashes

2008-06-17 Thread Alex Harui
Use the proflier to watch for memory leaks. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathon Stierman Sent: Tuesday, June 17, 2008 10:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] flash9f.ocx crashes Has anyone e

RE: [flexcoders] Class library

2008-06-17 Thread Alex Harui
Looks ok. Try it and tell us what errors you get. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, June 17, 2008 10:27 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Class library Can I create a

RE: [flexcoders] How to compose a super tree item renderer using TreeItemRenderer and others

2008-06-17 Thread Alex Harui
You may need to bind the new renderer's .data to the TreeITemRenderer's .data property. I would just extend TreeItemRenderer and change what it does, though. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of an0one Sent: Tuesday, June

RE: [flexcoders] "Infinity" value in Datagrid

2008-06-17 Thread Alex Harui
You may need to use resultFormat e4x and do your own parsing From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shrike6_7 Sent: Tuesday, June 17, 2008 7:08 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] "Infinity" value in Datagrid

RE: [flexcoders] DataGrid higlighted row blinks when data is updated

2008-06-17 Thread Alex Harui
File a bug. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jbaileyadam Sent: Monday, June 16, 2008 6:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid higlighted row blinks when data is updated I have a simple Data

RE: [flexcoders] How to have a component as a Wallpaper/Background

2008-06-17 Thread Alex Harui
Most containers have no background so if you put the object behind the container it should act like it is the background. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of timgerr Sent: Monday, June 16, 2008 9:35 AM To: flexcoders@yahoogro

RE: [flexcoders] How to catch Focus In/Out event on TileList ItemRenderer

2008-06-17 Thread Alex Harui
Unless there are focusable objects, they won't get focus. I think you want to catch the "change" even tinstead? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Hess Sent: Monday, June 16, 2008 7:27 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: How to compose a super tree item renderer using TreeItemRenderer and others

2008-06-18 Thread Alex Harui
s.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > You may need to bind the new renderer's .data to the TreeITemRenderer's > .data property. > > > > I would ju

RE: [flexcoders] Tree itemRenderer not displaying as a tree?

2008-06-18 Thread Alex Harui
Because indentation is handled by the renderer and label doesn't know how to do that. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of S B Sent: Wednesday, June 18, 2008 9:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tree it

RE: [flexcoders] Problems with Flash Player not recognized and problem with flex app loading xml

2008-06-18 Thread Alex Harui
Is there a file at: file:///C:/Users/Bruce-PC/Documents/Flex Builder 3/chapter11Begin/bin-debug/data/slideshow.xml? Is the -use-network flag on? Try changing its value. Try serving the app from http: From: flexcoders@yahoogroups.com [mailto:[EMAIL PR

RE: [flexcoders] How to rotate a Combo Box

2008-06-18 Thread Alex Harui
The internal TextInput doesn't rotate? Post a test case. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wyattwang Sent: Wednesday, June 18, 2008 12:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to rotate a Combo Box

RE: [flexcoders] Tree itemRenderer not displaying as a tree?

2008-06-18 Thread Alex Harui
tree? How can I fix that? Or, how can I change each node's label based on two attributes in the XMLList? - Original Message From: Alex Harui <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, June 18, 2008 10:43:22 AM Subject: RE: [flexcoders] Tree itemR

RE: [flexcoders] How to rotate a Combo Box

2008-06-18 Thread Alex Harui
oders@yahoogroups.com Subject: Re: [flexcoders] How to rotate a Combo Box Is there an easy way to tell the compiler to embed fonts so I can test this? Or do I have to dig up / convert them into SWF format first? -Josh On Thu, Jun 19, 2008 at 2:45 PM, Alex Harui <[EMAIL PROTECTED] <mailto:[EMAI

RE: [flexcoders] Flex and Flash 9 movies in Firefox

2008-06-19 Thread Alex Harui
For me, it happens in every browser. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michelle Grigg Sent: Wednesday, June 18, 2008 10:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex and Flash 9 movies in Firefox Hi

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