RE: [flexcoders] Flash based flex component issue

2008-08-25 Thread Alex Harui
Don't know, maybe someone else does, but when I run into issues like this, I create small test cases including AS-only projects to eliminate as much as possible From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Clint Tredway Sent: Monday,

RE: [flexcoders] Re: question about AMF

2008-08-25 Thread Alex Harui
:) --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > It is essentailly the same problem. Each module has a definition but > only one can be translated via AMF and if it is the wrong one you have > troubl

RE: [flexcoders] Image Viewer

2008-08-25 Thread Alex Harui
When you create thumbnails in your app, you have to load the original data in order to do so. The only way to reduce traffic is to generate thumbnails on the server, which is more or less what Scene7 does From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECT

RE: [flexcoders] Applying form login in Flex

2008-08-25 Thread Alex Harui
You can use the XML class APIs to access the XML From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joshua Partogi Sent: Monday, August 25, 2008 3:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Applying form login in Flex De

RE: [flexcoders] External Interface: Do I have to have a javascript function?

2008-08-25 Thread Alex Harui
You need to call a function on the other side, not run eval of a string. Of course, the one function you put in could eval the string you pass in From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thegators_2002 Sent: Monday, August 25, 200

RE: (bump) Re: [flexcoders] styling Flex - able to use multiple stylenames - styleName="styleA styleB" ?

2008-08-25 Thread Alex Harui
Multiple stylenames is on the schedule for the next major release. I would worry about it hiccupping at the transition because an inheriting style recalc is not fast. Best performance would probably be achieved by having a minimum set of setStyle calls on the component, and removing or restori

RE: [flexcoders] Need Help and Guidance desperately

2008-08-25 Thread Alex Harui
TileList? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Winscot Sent: Monday, August 25, 2008 7:47 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Need Help and Guidance desperately The seconds link was to a flow l

RE: (bump) Re: [flexcoders] styling Flex - able to use multiple stylenames - styleName="styleA styleB" ?

2008-08-25 Thread Alex Harui
Tue, Aug 26, 2008 at 2:30 PM, Alex Harui <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: Multiple stylenames is on the schedule for the next major release. I would worry about it hiccupping at the transition because an inheriting style recalc is not fast. Best performan

RE: [flexcoders] Re: Need Help and Guidance desperately

2008-08-26 Thread Alex Harui
Yup, there's a trade-off of how much work you'll need to do for variable sized items so if you can live with same size items, you can use TileList and write less code. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Tuesday, Au

RE: [flexcoders] help controlling an external swf from flex.

2008-08-26 Thread Alex Harui
That should work if the SWF is published for FP9 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas Sent: Tuesday, August 26, 2008 7:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] help controlling an external swf

RE: [flexcoders] Changing itemEditors of a DataGrid a row basis

2008-08-26 Thread Alex Harui
You should be able to call preventDefault and override creatItemEditor From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: Tuesday, August 26, 2008 6:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Changing it

RE: [flexcoders] Re: Help, Random module load issues.

2008-08-26 Thread Alex Harui
The stack trace indicates the shared code problem described on my blog in the presentation on modules (blogs.adobe.com/aharui) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gus Sent: Tuesday, August 26, 2008 12:13 PM To: flexcoders@yah

RE: [flexcoders] Positioning Custom ToolTips

2008-08-26 Thread Alex Harui
I think you intercept TOOL_TIP_SHOW and give it a different position. The ToolTipMgr should have placed it already where it think it should be. You can set the ToolTipManager.toolTipClass to have all instances of tooltips be something else, but you should extend ToolTip in your custom ToolTip.

RE: [flexcoders] Combobox to show table columns?

2008-08-26 Thread Alex Harui
Just walk the children() and pull the name() and add it to an array From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cox.blair Sent: Tuesday, August 26, 2008 9:19 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Combobox to show ta

RE: [flexcoders] selectedIndex and updateDisplayList

2008-08-26 Thread Alex Harui
I'm sorry, but this didn't make any sense. I don't see the code that broke in your exaple. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, August 26, 2008 9:09 AM To: flexcoders@yahoogroups.com Subject: [f

RE: [flexcoders] Get all class definitions in a loaded swf ?

2008-08-26 Thread Alex Harui
There is no way to find out the classes in a SWF (not without a lot of work). Best option is to put something in each SWF that describes what is in it. You will probably always have to use getDefinition though From: flexcoders@yahoogroups.com [mailto:[EMAIL P

RE: [flexcoders] dynamically sorting an adv datagrid

2008-08-26 Thread Alex Harui
Does the ADG have sorting on? If so, the collection should contain the sort info that descirbes the field used in the sort. If your component then modifies the sort, the ADG should detect and reflect that. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTE

RE: [flexcoders] Placing crossdomain.xml at non-root locations

2008-08-26 Thread Alex Harui
Security.loadPolicyFile should do it as long as you call it before other network requests get going. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jerusalem_pilgrim Sent: Tuesday, August 26, 2008 8:24 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: selectedIndex and updateDisplayList

2008-08-26 Thread Alex Harui
to:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > I'm sorry, but this didn't make any sense. I don't see the code that > broke in your exaple. > > > > > > From: flexcoders

RE: [flexcoders] Positioning Custom ToolTips

2008-08-26 Thread Alex Harui
The tooltipmanager positions tips according to available screen size and what not. DataGridItemRenderer uses TOOL_TIP_SHOW to reposition the tooltip as a datatip. There is no way to trick the positioning logic per-se. I suppose a custom class could respond to any given x,y and actual give its

RE: [flexcoders] Get all class definitions in a loaded swf ?

2008-08-26 Thread Alex Harui
AFAIK, it is too late for FP10. There may already be an enhancement request for FP11, but iif not, feel free to file one. Today, you can load the SWF as bytes, unpack the SWF and get the list of classes, then loadbytes the SWF. I think it will always be more efficient to do the legwork an

RE: [flexcoders] When do all the calls to Singleton.registerClass() happen, and can I beat it to the punch?

2008-08-26 Thread Alex Harui
They happen early in SystemManager before [mixin], assuming the class you want is baked into the SWF. I think CursorMgr, PopUpMgr are, but not others. Check a link-report to be sure. To beat them, subclass SM, override mx_internal docFrameHandler and register before calling super. One of t

RE: [flexcoders] generate size report in flex?

2008-08-26 Thread Alex Harui
Size of what? Try -link-report, see if that has what you want From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Yochikoh Haruomi Sent: Tuesday, August 26, 2008 3:24 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] generate size report in flex? Dear list, In fle

RE: [flexcoders] When do all the calls to Singleton.registerClass() happen, and can I beat it to the punch?

2008-08-26 Thread Alex Harui
od on a static const assignment I might be able to beat it, but I haven't seen any proof that you can move classes forward in the timeline, only backward. Another on the list of experiments to conduct :) -Josh On Wed, Aug 27, 2008 at 8:57 AM, Alex Harui <[EMAIL PROTECTED]> wrote: They happe

RE: [flexcoders] Get all class definitions in a loaded swf ?

2008-08-26 Thread Alex Harui
I'm not sure all classes are "in the appdomain " at startup. They are in the SWF, but I'm not clear getDefinition will find it if other code hasn't used that class yet. It is at minimum, a string to hashcode lookup. All such things like Reflection also make the player larger and sometimes make t

RE: [flexcoders] addFrameScript (will it be officially supported?)

2008-08-26 Thread Alex Harui
I'm pretty sure it will remain in FP10, but Flex may not use it by the end of the year. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Keith Sent: Tuesday, August 26, 2008 8:06 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] addFrameScript (will it be offici

RE: [flexcoders] help binding to combo box selectedItem

2008-08-26 Thread Alex Harui
What is NtpClass? Is it bindable? Are you getting any warnings? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rss181919 Sent: Tuesday, August 26, 2008 5:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] help binding to combo box selectedItem i have a cus

RE: [flexcoders] Exit effect for popup when being removed

2008-08-26 Thread Alex Harui
I'd consider hide effect then removal From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Boon Chew Sent: Tuesday, August 26, 2008 6:26 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Exit effect for popup when being removed Sorry, forgot to mention, the eff

RE: [flexcoders] List rowCount in a datagrid, varying by row using ListItemRenderer

2008-08-26 Thread Alex Harui
I'm not sure I understand the setup. It is rare for a renderer to set its parent's rowCount. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorsetwest Sent: Tuesday, August 26, 2008 6:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] List rowCount in a datagri

RE: [flexcoders] itemEditBeginning not being called

2008-08-26 Thread Alex Harui
I don't see editable="true" on the DG From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Sent: Tuesday, August 26, 2008 9:45 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] itemEditBeginning not being called Hi, I'm hoping that I'm missing something trivi

RE: [flexcoders] Binding using Interface

2008-08-26 Thread Alex Harui
The final class that gets listened to needs to have its property be bindable. The interface being bindable gets you past the compiler, but the warning is a run-time when it actually looks at the instance it is hooking up to. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behal

RE: [flexcoders] change direction of the combo box opening

2008-08-27 Thread Alex Harui
PopUpMenuButton? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of samata Sent: Wednesday, August 27, 2008 6:55 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] change direction of the combo box opening Hi, I wanted to know how to change direction of the combo

RE: [flexcoders] Re: help binding to combo box selectedItem

2008-08-27 Thread Alex Harui
is just a Number type property of NtpVO class. NtpClass is declared as bindable in the NtpVO class definition. NtpIn is an instance of NtpVO cast as Object. I am using flashdevelop and i don't get any warnings. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> ,

RE: [flexcoders] Changing itemEditors of a DataGrid a row basis

2008-08-27 Thread Alex Harui
Subclass ComboBox and preset its dataprovider From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: Wednesday, August 27, 2008 5:54 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Changing itemEditors of a DataGrid a row basis Hello Alex,

RE: [flexcoders] popup changes title only in IE

2008-08-27 Thread Alex Harui
Sounds like a bug. Make a simple test case and file it. Try turning of historyManagementEnabled if you aren't using it From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of paulbohnenkamp Sent: Wednesday, August 27, 2008 1:24 PM To: flexcoders@yahoogroups.com Subject: [flexc

RE: [flexcoders] Getting rounded corners on List focus rectangle

2008-08-27 Thread Alex Harui
cornerRadius From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djepyon Sent: Wednesday, August 27, 2008 1:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Getting rounded corners on List focus rectangle I'm setting focusRoundedCorners="tl tr bl br" on a Li

RE: [flexcoders] Re: Getting rounded corners on List focus rectangle

2008-08-27 Thread Alex Harui
flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > cornerRadius > > > > From: flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> [mailto:flexcoders@yahoogroups.com <mailto:flexc

RE: [flexcoders] DataGrid change handler: event.selectedItem == true???? w/ CheckBox renderer

2008-08-27 Thread Alex Harui
I think there are times where the DG will pull the data property from the renderer assuming it is the dataprovider item, which in your case it isn't. Maybe we shouldn't do that, but it doesn't matter since Scene7 is going to take over the world J From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Digest XML Schema

2008-08-27 Thread Alex Harui
There's an undocumented SOAPDecoder in mx.rpc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ron_mori Sent: Wednesday, August 27, 2008 3:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Digest XML Schema Goal: digest an XML schema and generate set of obje

RE: [flexcoders] UMap problem

2008-08-27 Thread Alex Harui
There is an assumption that the Flex Application is at index 1 in the SystemManager. A mouseShield goes at 0. We don't officially support slipping anything behind the Application. You could try adjusting the mx_internal applicationIndex to be the right number. From: flexcoders@yahoogroups.co

RE: [flexcoders] Need help about generating swf from template flash file

2008-08-27 Thread Alex Harui
You're going to generate a SWF file from within a running Flex app? That's a lot of work. Why not use the SWF from the FLA as a library of assets and dynamically use them in your Flex UI? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yk96290 Sent: Wednesday, August 27

RE: [flexcoders] UMap problem

2008-08-27 Thread Alex Harui
Guy On 28/08/2008, at 2:06 PM, Alex Harui wrote: There is an assumption that the Flex Application is at index 1 in the SystemManager. A mouseShield goes at 0. We don't officially support slipping anything behind the Application. You could try adjusting the mx_internal appl

RE: [flexcoders] Re: change direction of the combo box opening

2008-08-27 Thread Alex Harui
PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: change direction of the combo box opening --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > PopUpMenuButton? > > > > From:

RE: [flexcoders] flahs.ui.Keyboard bug?!

2008-08-27 Thread Alex Harui
Is this for an AIR project? I don't think it was supposed to work for non-AIR. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nagaofthesea Sent: Wednesday, August 27, 2008 10:10 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] flahs.ui.Keyboard bug?! Howdy-

RE: [flexcoders] checkbox ItemRenderer in a List doesn't allow wordWrap

2008-08-28 Thread Alex Harui
It's the renderers responsibility to support wordwrap, which checkbox does not. You might be able to adapt the multiline button example from my blog From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bernardo Salazar Sent: Thursday, August 28, 2008 9:16 AM To: flexcoders@ya

RE: [flexcoders] Re: Need help about generating swf from template flash file

2008-08-28 Thread Alex Harui
ynamically use the swf. For instance, I have a movie clip tempImage in the swf, in my flex, I'll replace tempImage with a1.jpg, a2.jpg, ... etc on different scenarios. Young --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, "Alex Harui" <[EMAIL PROT

RE: [flexcoders] Disable Control Keys being captured by Flash Player

2008-08-28 Thread Alex Harui
Last I heard, this is a limitation of the plug-in API in browsers. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent: Thursday, August 28, 2008 6:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Disable Control Keys being captured by Flash Player I ha

RE: [flexcoders] Capturing Cmd-C (or Ctrl-C) keyboard event from modular Flex application in browser or AIR.

2008-08-28 Thread Alex Harui
Not really. I think some folks capture the event in javascript and notify Flash via ExternalInterface. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ian M. Jones Sent: Thursday, August 28, 2008 5:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Capturing Cmd-

RE: [flexcoders] dragable datagrid

2008-08-28 Thread Alex Harui
Can we see a sketch of what you want to do? Is it something other than putting the DataGrid in a popup TitleWindow? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of deepa_pathuri Sent: Thursday, August 28, 2008 2:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] ComboBox Disable Drop Down Items

2008-08-28 Thread Alex Harui
Try forcing caret to false when calling super From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wwwpl Sent: Thursday, August 28, 2008 9:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox Disable Drop Down Items I am trying to disable ComboBox drop down item

RE: [flexcoders] Re: ComboBox Disable Drop Down Items

2008-08-28 Thread Alex Harui
s the combobox is not accepting that. Of course it works if you just have a list box. --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, Alex Harui <[EMAIL PROTECTED]> wrote: > > Try forcing caret to false when calling super > > From: flexcoders@yaho

RE: [flexcoders] Re: flahs.ui.Keyboard bug?!

2008-08-28 Thread Alex Harui
app Nothing about AIR only in the Langauge Reference though?!?! -naga --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Is this for an AIR project? I don't think it was supposed to work for &g

RE: [flexcoders] Re: ComboBox Disable Drop Down Items

2008-08-28 Thread Alex Harui
ork. This isn't ideal, but it > works for the most part. I have had to change a bit of the code to > handle situations. > > --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, Alex > Harui wrote: > > > > Hmm. The combobox is handling keyst

RE: [flexcoders] Re: Flash Player 10 Release Date?

2008-08-28 Thread Alex Harui
Adobe rarely publishes hard dates whether for FP10 or Flex4. Any dates you see are always subject to changes. Flex 4 probably won't be A/M/J09. FP10 will be "soon". From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abdou Sent: Thursday, August 28, 2008 1:59 PM To

RE: [flexcoders] Re: dragable datagrid

2008-08-29 Thread Alex Harui
<mailto:flexcoders%40yahoogroups.com>, Alex Harui <[EMAIL PROTECTED]> wrote: > > Can we see a sketch of what you want to do? Is it something other than putting the DataGrid in a popup TitleWindow? > > From: flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups

RE: [flexcoders] Re: Need help about generating swf from template flash file

2008-08-29 Thread Alex Harui
an we do the same for other objects? Replace the link url at run time? Replace the text message at run time? Young --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, Alex Harui <[EMAIL PROTECTED]> wrote: > > I still don't understand. You want to create a

RE: [flexcoders] Scrolling in a TileList

2008-08-29 Thread Alex Harui
To scroll vertically, you need direction="horizontal". Weird, huh? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nik Derewianka Sent: Thursday, August 28, 2008 10:09 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Scrolling in a TileList TileList scrolling isn

RE: [flexcoders] Re: 3.1 changelog?

2008-08-29 Thread Alex Harui
t was a popup from Adobe Updater when I got into work this morning. -Josh On Mon, Aug 18, 2008 at 3:48 PM, Alex Harui <[EMAIL PROTECTED] <mailto:aharui%40adobe.com><mailto:aharui%40adobe.com> > wrote: Sorry, we need to update that. Marshall Plan is 3.2, it was going to be 3

RE: [flexcoders] dynamic tooltip via function call returns 0 for x/y/width/height

2008-08-29 Thread Alex Harui
getPosSize gets run once at init time when the width/height isn't known. It doesn't know when to update again From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gwangdesign Sent: Friday, August 29, 2008 10:20 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] dynamic t

RE: [flexcoders] Datagrid item render tooltip issue

2008-08-29 Thread Alex Harui
Set dataTipFunction to return the appropriate text From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pixelgeek Sent: Friday, August 29, 2008 9:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Datagrid item render tooltip issue I have an item renderer that I creat

RE: [flexcoders] Re: How to get selectedIndex from itemRenderer

2008-08-29 Thread Alex Harui
Given that renderers recycle, if you have a ComboBox in a renderer, you usually need to store its selectedIndex somewhere (in the data, on the column, in some map). If you're calculating it on the fly, that might slow scrolling so you should consider storing it somewhere. From: flexcoders@yaho

RE: [flexcoders] Re: dynamic tooltip via function call returns 0 for x/y/width/height

2008-08-29 Thread Alex Harui
Thanks, Alex! Any suggestion as to how to implement a truly "dynamic" tooltip? --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, Alex Harui <[EMAIL PROTECTED]> wrote: > > getPosSize gets run once at init time when the width/height isn't know

RE: [flexcoders] dragable datagrid

2008-08-29 Thread Alex Harui
That seemed like a rude response vinay. Deepa, we need a better description of what you want to do. Where would the mouse be used to drag the DG since almost all of the DG is active to the mouse? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Howard Fore Sent: Friday,

[flexcoders] RE: FlexPrintJob - Very Hit & Miss

2008-08-29 Thread Alex Harui
Are you directly printing the loaded bitmap or passing it into SWFLoader/Image? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Friday, August 29, 2008 3:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] FlexPrintJob - Very Hit & Miss Act

RE: [flexcoders] How do I make sure container's child components have applied new style before ImageSnapshot?

2008-08-29 Thread Alex Harui
Does the legend change color eventually? Maybe waiting for updateComplete will be better. You can always chain callLaters From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ian M. Jones Sent: Friday, August 29, 2008 4:50 AM To: flexcoders@yahoogroups.com Subject: [flexcode

RE: [flexcoders] Re: Datagrid item render tooltip issue

2008-08-29 Thread Alex Harui
item render tooltip issue --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, Alex Harui <[EMAIL PROTECTED]> wrote: > Set dataTipFunction to return the appropriate text I should have been clearer. The custom tooltip is a distinct mxml file based off of the ca

RE: [flexcoders] Drawing shapes with "holes" and applyng them as mask in AS3

2008-08-29 Thread Alex Harui
I think of it as a scanline fill algorithm, which is why it works From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy Gilbert Sent: Friday, August 29, 2008 10:24 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Drawing shapes with "holes" and applyng them as ma

RE: [flexcoders] Re: Q: What is Flexcoders? A: All of us in this together who have purchased FLEX

2008-08-29 Thread Alex Harui
That was like laying my baby gently into his crib and then shouting "good night" as loud as I can. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Thompson Sent: Friday, August 29, 2008 11:17 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Q: What

RE: [flexcoders] Re: Datagrid item render tooltip issue

2008-08-29 Thread Alex Harui
ehalf Of pixelgeek Sent: Friday, August 29, 2008 11:35 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Datagrid item render tooltip issue --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, Alex Harui <[EMAIL PROTECTED]> wrote: > No, but having a

RE: [flexcoders] Re: Datagrid item render tooltip issue

2008-08-29 Thread Alex Harui
@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, Alex Harui <[EMAIL PROTECTED]> wrote: > Your post said that everything was working except when the text was truncated. Nope. I said the exact opposite in fact. The tooltips are only being triggered when the text in the colum

RE: [flexcoders] Binding an ICollectionView completely in ActionScript to a ComboBox

2008-08-29 Thread Alex Harui
Skip binding, set the dataprovider in a result handler from the server From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wubac1 Sent: Friday, August 29, 2008 2:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Binding an ICollectionView completely in ActionScript to

RE: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-29 Thread Alex Harui
Matt Chotin is away this week and has moved from development to product management and therefore must now choose his words carefully. I'm still in development so maybe I can get away with more. Robert, I don't think we've met, and I haven't gone back to see your past history with Flex, but I w

RE: [flexcoders] Re: PLEASE Help. Why some Flash CS3 swf can be unloaded in Flex and why some can't ?

2008-08-29 Thread Alex Harui
You can look for memory leaks in a Flash CS3 SWF using FlexBuilder profiler to profile an external application. You should definitely make sure there aren't any other apparent leaks From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abdou Sent: Friday, August 29, 20

RE: [flexcoders] Re: Datagrid item render tooltip issue

2008-08-29 Thread Alex Harui
ce at this time. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pixelgeek Sent: Friday, August 29, 2008 5:41 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Datagrid item render tooltip issue --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups

RE: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-29 Thread Alex Harui
od examples out there. Now we are looking at you to show us the way. Please give us time and develop ALEXIAN example of "flex schedule frame work". It is not a rude demand but a humble request. Cheers On Fri, Aug 29, 2008 at 7:39 PM, Alex Harui <[EMAIL PROTECTED]<mailto:aha

RE: [flexcoders] TitleBox

2008-08-29 Thread Alex Harui
Flex does not ship with that control. If you are over a solid background, I'd just drop a textField over a border with background=true. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Friday, August 29, 2008 4:09 PM To: flexcoders@yahoogroups.com Su

RE: [flexcoders] Sorting grids

2008-08-29 Thread Alex Harui
Get headerRelease event, call preventDefault, apply custom Sort. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Friday, August 29, 2008 4:41 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Sorting grids How do we sort Grids on a numeric val

RE: [flexcoders] Re: Datagrid item render tooltip issue

2008-08-29 Thread Alex Harui
[flexcoders] Re: Datagrid item render tooltip issue --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, Alex Harui <[EMAIL PROTECTED]> wrote: > Since I don't know your requirements and you don't seem interested in my recommendations I can't provide

RE: [flexcoders] Resize Text Area Control

2008-08-30 Thread Alex Harui
Fix the width, ask for the measuredHeight. You may have to use callLater in between. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of litesh_b321 Sent: Friday, August 29, 2008 11:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Resize Text Area Control Hi Guys

RE: [flexcoders] Printing Problems

2008-08-30 Thread Alex Harui
I'm surprised you aren't getting an error or warning in the console. I think the use of callLater doesn't work during a printjob and the job might eventually timeout (see Flash Player's printing classes for timeout limits). Usually, all external data needs to be pre-loaded and the whole print

RE: [flexcoders] Re: Keydownhandler fires twice for each keystroke

2008-08-30 Thread Alex Harui
If you override keyDownHandler, you shouldn't need to call addEventListener since the base class will. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aceoohay Sent: Saturday, August 30, 2008 12:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keydownhandler

RE: [flexcoders] text markup - please help

2008-08-30 Thread Alex Harui
You can use html markup. See flash.text.TextField for the subset of html tags it uses. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abdou Sent: Saturday, August 30, 2008 6:52 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] text markup - please help

RE: [flexcoders] Re: Disable Deep Linking

2008-08-31 Thread Alex Harui
HistoryManager was changed to use the same browser intergration as BrowserManager does for deeplinking. The repercussions of that is that the stuff that HistoryManager stores now shows up on the browser address bar. Is that the issue here? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTE

RE: [flexcoders] FlexLivedocs Module chart example has scroll bars ....

2008-08-31 Thread Alex Harui
ColumnChartModule.mxml http://www.adobe.com/2006/mxml"; percentWidth="100" percentHeight="100" minHeight="0" minWidth="0" > MainApp.mxml: From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mic Sent: Sunday, August 31, 2008 12:41 AM To: flexcoders@yahoogroups.co

RE: [flexcoders] Quick question about Mixins and internal class scope

2008-08-31 Thread Alex Harui
In case you were hoping I had the answer, I don't. Should be a 10 minute experiment though. However, an internal class can certainly be handed the SM by the first [mixin] that uses it From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Sunday, August 31

RE: [flexcoders] Quick question about Mixins and internal class scope

2008-08-31 Thread Alex Harui
2008 at 3:28 PM, Alex Harui <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: In case you were hoping I had the answer, I don't. Should be a 10 minute experiment though. However, an internal class can certainly be handed the SM by the first [mixin] that uses it

RE: [flexcoders] Quick question about Mixins and internal class scope

2008-08-31 Thread Alex Harui
) would throw an exception, but it's just returning null. Perhaps that's the behaviour for "found but hidden", or it might be just special behaviour on behalf of SM or because it's frame1... -Josh On Mon, Sep 1, 2008 at 3:59 PM, Alex Harui <[EMAIL PROTECTED]<mai

RE: [flexcoders] Re: Strange List Behavior

2008-09-01 Thread Alex Harui
I didn't see a problem in FireFox From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Sent: Monday, September 01, 2008 6:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Strange List Behavior The problem seems to be with Firefox. Can anyone give an explanati

RE: [flexcoders] Trying to set the height of sliderthumbclass based on the height of a VBox ...

2008-09-01 Thread Alex Harui
{} only works in MXML, not in actionscript. I would just listen for the RESIZE event and update the height then From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jo Morano Sent: Monday, September 01, 2008 3:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Trying

RE: [flexcoders] Why this does not work?

2008-09-01 Thread Alex Harui
TrackTotal.numericSort should be ok. But your compare function is using a variable "col" which may not be correct. You should just be able to set the isNumeric flag on a SortFIeld and get what you want From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sen

RE: [flexcoders] DataGrid columnWidth at runtime

2008-09-01 Thread Alex Harui
As you change each column, the DG will try to adjust other columns so that they all fit on screen. Setting horizontalScrollPolicy="on" is one way to prevent auto-resizing. Another is to generate new DGColumns from the old ones, adjust the their widths and then set the .columns property once.

RE: [flexcoders] Re: Communication between custom preloader and the application

2008-09-01 Thread Alex Harui
However, a good preloader does not reference any UIComponent based classes otherwise they have to be loaded before the preloader can show up (which defeats the purpose of a preloader). I would use the systemManager to do communication. The preloader and the application can both see it. The s

RE: [flexcoders] TileList: Tiles possible with different width/height ??

2008-09-02 Thread Alex Harui
All tiles in a tilelist must be same width/height (or at least, they'll take up the same width and height, you could add padding around smaller ones). You can adjust the width and height of all tiles at runtime. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abd

RE: [flexcoders] how to regain the focus on the textinput when browser is minimized and maximized

2008-09-02 Thread Alex Harui
Flash doesn't currently have a way to wrestle focus back from the browser when the browser takes it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abdou Sent: Tuesday, September 02, 2008 6:04 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] how to rega

RE: [flexcoders] Don't need to upload file, but need to display it E4X.

2008-09-02 Thread Alex Harui
A SWF served over http cannot get data from files on the user's file system. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of artgrater Sent: Monday, September 01, 2008 11:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Don't need to upload file, but need to disp

RE: [flexcoders] Re: text markup - please help

2008-09-02 Thread Alex Harui
arkup - please help Thanks that worked (though i am unable to get a mouse over (hover) event - html link event is generated only for a click) -jlogan --- In flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com>, Alex Harui <[EMAIL PROTECTED]> wrote: > > You c

RE: [flexcoders] Custom Tool Tip

2008-09-02 Thread Alex Harui
Subclass ToolTip, make the appropriate changes, then change ToolTipManager.toolTipClass or catch TOOL_TIP_CREATE event and supply the tooltip there. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of deepa_pathuri Sent: Monday, September 01, 2008 11:09 PM To: flexcoders@yah

RE: [flexcoders] Re: Strange List Behavior

2008-09-02 Thread Alex Harui
> Sherif Abdou > http://VadexFX.com > http://Sherifabdou.com > - Original Message - > From: Alex Harui > To: flexcoders@yahoogroups.com<mailto:flexcoders%40yahoogroups.com> > Sent: Monday, September 01, 2008 11:40 PM > Subject: RE: [flexcoders] Re: Strange Li

RE: [flexcoders] Creating a class by name

2008-09-02 Thread Alex Harui
One could certainly build a much fancier system where, if hasDefinition fails, you make a server request for a module with that class, wait for it to get installed and then go back and use getDefinition. Some system on the server would have to keep track of which classes are in which modules,

RE: [flexcoders] Creating a class by name

2008-09-02 Thread Alex Harui
t: Re: [flexcoders] Creating a class by name Or perhaps a special kind of module could register classes with the player and the class factory could throw an exception or return null if an unregistered class was requested? On Tue, Sep 2, 2008 at 1:24 PM, Alex Harui <[EMAIL PROTECTED]<ma

<    5   6   7   8   9   10   11   12   13   14   >