Re: [flexcoders] Button in dataGrid (Flashbuilder 4)

2010-06-06 Thread Alex Harui
33490a1 to mx.controls.listClasses.IListItemRenderer. Moreover; I’m trying to figure out how to either place a text label “PAID” or a button if the item has not been paid. Any ideas on how this is done? Thanks Scott -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] excluding symbols from sub swf

2010-06-05 Thread Alex Harui
le (without using Runtime Shared Libraries) to exclude symbols from compiled flas? Thanks! Matt -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Modify Flex ComboBox DataProvider

2010-06-03 Thread Alex Harui
t the proper values. Is there anything that I need to do to refresh the comboBox and make the values that appear on the list those that were in the the proper xmllistcollection? Thanks. Angelo -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] DataGrid error when scrolling to last row and starting item edit

2010-06-03 Thread Alex Harui
emRenderer = actualContentHolder.listItems[actualRowIndex][actualColIndex]; -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] DateField problem

2010-06-03 Thread Alex Harui
in a form. the problem is, I am not able to fill the datefield from the value in the dataobject as code: tried date.text = selectedRow.Date (date value from the database) doesn't give any errors, but the datefield is not filled with the date -- Alex Harui Flex SDK Team Adobe Sy

Re: [flexcoders] Combobox in ItemEditor

2010-06-03 Thread Alex Harui
e selected value of the combobox from the itemeditor ? I use the grid, as the rows are of variable height and the combobox looks huge if the height of the row is more Thank you -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] spark Panel titleBar equivalent

2010-06-03 Thread Alex Harui
thinking of is using a basic layout, and positioning the buttons where I want. Just wanted to get an idea what approach others would take. thanks -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] No Flex builds since May 21st?

2010-06-02 Thread Alex Harui
it's very unusual to see no nightlies for so long (this is a good thing). Is 4.1 done and baking? -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Blocking

2010-06-02 Thread Alex Harui
gure a mock API implementation and am limited in what I can change in the main application architecture. So I need a way to block while loading the configuration file. I've tried setting a _loadState variable and looping while it's set to loading, but that didn't seem to do the

Re: [flexcoders] removeEventListener - is it important?

2010-06-02 Thread Alex Harui
ll attached and therefore the DateField is referenced by these handlers and therefore won't get GD'd ? Mmmm Cheers, Nick -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: Possible to capture the console log and act on it?

2010-06-02 Thread Alex Harui
unction for trace. I haven't tried this, but maybe if you redefine the trace() in HaXe, then it will override the default tracing method... I also think that in AS2 you could redefine it through AsNative. But I'm sure that other than that you cannot read from the output stream of anot

Re: [flexcoders] Re: Flex 4 layout documentation for spark ActionScript components

2010-05-31 Thread Alex Harui
ders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > I would create a new Layout class and properly measure and layout in its > measure() and updateDisplayList() methods and use that as the contentGroup's > layout, otherwise the Group's def

Re: [flexcoders] Flex 4 layout documentation for spark ActionScript components

2010-05-30 Thread Alex Harui
. The skin creates the skin parts in MXML in a Group (id="contentGroup") but the layout is calculated within the skin's updateDisplayList method. I only found one useful article on the web, which is not really a lot of information at all (http://www.adobe.com/devnet/flex/arti

Re: [flexcoders] Data grid column sizing is changing when returning from another state

2010-05-30 Thread Alex Harui
quot;true" > when i stick a trace in the enterstate handler it says the first datacolumn is -1 in width. any help much appreciated cheers Steve -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Have a Spark List with an Itemrenderer

2010-05-29 Thread Alex Harui
p would be appreicated, thanks Randy -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] How to get X, Y position/coordinates of a specific character/letter in a text field

2010-05-29 Thread Alex Harui
4 AM, Baz wrote: Alex I'm going to look into that, thanks for the tip. Similarly, if I wanted to change the font color of a single word, would I use TextLine (or something similar) or would I then have to manually break apart the tags to be able to give them different styles? -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Flex4 Swf loading real slow because of loading lots of swfs

2010-05-28 Thread Alex Harui
There must be someway to control RSL usage, even if it requires editing flex-config.xml On 5/28/10 3:40 AM, "olegsivo...@gmail.com" wrote: Alex. He's using Intelij IDEA, it doesn't have Flash Builder options ;) -- Alex Harui Flex SDK Team Adobe System, Inc. ht

Re: [flexcoders] StyleName property ignored : when precisely and workarround ?

2010-05-28 Thread Alex Harui
egard. PS : config. is "AIR application run on WinXP via Flex Builder 3" -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Flex4 Swf loading real slow because of loading lots of swfs

2010-05-27 Thread Alex Harui
smf_flex.4...swf - framework ... swf - spark swf - sparkskins ...swf - rpc swf If I try to run my swf offline, it doesn't load at all. Is this a bug in Flex4 SDK? Online it does load, eventually, but slow. -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] How to get X, Y position/coordinates of a specific character/letter in a text field

2010-05-27 Thread Alex Harui
their own "highlight" style when you encounter a keyword. What's a nice clean Flex 4 way to highlight words in a text? -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Get URL that user typed in

2010-05-27 Thread Alex Harui
that information in FB? I know I could do this in Apache but I want do something a little more dynamic. If I have multiple URLS pointing to my server I’d like to know what the original URL was to provide the correct content. Thanks! Scott -- Alex Harui Flex SDK Team Adobe S

Re: [flexcoders] How greedy/lazy is the GC?

2010-05-26 Thread Alex Harui
GC is lazy/opportunistic and doesn’t always collect everything. If you have time read the various posts on my blog dealing with memory leaks and memory management. -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui On 5/26/10 4:46 PM, "rinogo2" wrote:

Re: [flexcoders] DataGrid ItemRenderer Problem

2010-05-25 Thread Alex Harui
nge states and then back to the state where the DataGrid is located, the trace returns the container: My_Site.ApplicationSkin2._ApplicationSkin_Group1.contentGroup._My_Site_SkinnableContainer1.mainContainer6 This causes an error, so the question is, how do I call the function regardless.

Re: [flexcoders] Re: Security sandbox violation

2010-05-25 Thread Alex Harui
to check. Since this is all read-only stuff, I would have hoped I could do it with one SWF and no user-intervention, but I imagine there are good reasons for these restrictions. On Tue, May 25, 2010 at 3:26 PM, Alex Harui wrote: I got lost trying to follow this topic. Whether it is

Re: [flexcoders] Re: Security sandbox violation

2010-05-25 Thread Alex Harui
/ errors, checked the logs and it says it's all good... how's that possible / should it be that way? This is an entirely clean install of Windows, and I haven't yet set any trust records... -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] How to show a hand cursor when mouse over a control ?

2010-05-25 Thread Alex Harui
MouseEnabled=true? On 5/25/10 9:54 AM, "itaid1" wrote: Hi I'm using this inside a spark skin class, but the mouse does not change when hovering over the control. Tnx -Itai -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Having trouble justifying Flex to the higher-ups... It only seems to be appropriate for media based sites...

2010-05-25 Thread Alex Harui
d... I love Flex. -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Looping to addChild TextInputs, then removeAllChildren, are they GC'd?

2010-05-25 Thread Alex Harui
be GC'd? I'm trying to tick some boxes in my head about how the inners of Flex works so if by reading this you think I might benefit from reading soemthing, I'd appreciate some links to articles. Thanks guys, Nick -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: Security sandbox violation

2010-05-25 Thread Alex Harui
der when loading SWF with LoaderContext - by default it won't allow crosscripting. Security.allowDomain() doesn't define how classes are loaded into application domain, however, should prevent security errors related to crosscripting. Well, yes, it is complicated... -- Alex Harui

Re: [flexcoders] Re: ItemRenderer factories, on the fly resetting

2010-05-25 Thread Alex Harui
ory, see if the freeItemRenderers table has a free one". factory and renderer objects are valid and non-null. delete freeItemRenderersByFactory[factory][renderer]; thanks! --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > I don&

Re: [flexcoders] Re: Data grid vary column sizes

2010-05-25 Thread Alex Harui
m <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > The column has to be the same size for every row, but each column can have > different widths. It would be rare to set it from the itemrenderer, usually > some other code accesses datagrid.column[i].width. > >

Re: [flexcoders] Re: itemEditor | Nested Objects in dataProvider

2010-05-25 Thread Alex Harui
@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , > Alex Harui wrote: > > > > Standard practice is to call preventDefault on ITEM_EDIT_END and update the > > data yourself. > > > > > > On 5/17/10 1:31 PM, "ilikeflex" wrote: > &

Re: [flexcoders] ItemRenderer factories, on the fly resetting

2010-05-24 Thread Alex Harui
ituation that it would be a bummer if this didn't work – I'd like to understand why. Thanks for the help! [note, I am currently targeting Flash 10.0 and using the 3.2 SDK] -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Issue in Navigation using key up and key down in List Control

2010-05-23 Thread Alex Harui
ntrol.? Is anybody faced the same issue? Let me know if anyone solved the issue. Simple way to reproduce the issue: 1.Create a list control 2.create a item renderer as text input (renderer is editor also) 3.try navigating using up and down key Thanks -- Alex Harui Flex SDK Team Adobe System,

Re: [flexcoders] DataGrid and XML

2010-05-22 Thread Alex Harui
t in the DataGrid. 2- When change the date the new XML are generated to me, but profit not to update the DataGrid. Thanks for the aid that can give me, since I take my first steps with this tool. Associate the file main.mxml and the archives grafico1.xml, grafico2.xml and grafico3.xml Thanks Mauro

Re: [flexcoders] Re: Data grid vary column sizes

2010-05-21 Thread Alex Harui
yahoogroups.com> > > > , > > "method_air" wrote: > > > > > > > > How do you vary the data grid column widths? Setting the width property > > inside the item renderers to different values is not working. > > > > > > > > Thanks, > > > > > > > > Philip > > > > > > > > > > > > > > > > > -- > Brendan Meutzner > http://www.meutzner.com/blog/ > http://www.riajobs.com > -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Is it possible to make multiple labels selectable as one text block like in regular html

2010-05-21 Thread Alex Harui
ot; wrote: I don't mind writing code, any clues on where to start? Perhaps something like a global selection manager that detects mousedown and secretly traverses all the components behind the scenes? On Fri, May 21, 2010 at 11:14 AM, Alex Harui wrote: That’s not a feature of the fr

Re: [flexcoders] how to adjust mouse wheel scrolling for custom itemrender?

2010-05-21 Thread Alex Harui
I’m pretty sure at least one person claimed victory by modifying the delta of the MouseEvent. On 5/21/10 12:56 PM, "dorkiedorkfromdorkt...@gmail.com" wrote: I'm having this issue too. Is there any solution? On Tue, May 18, 2010 at 3:30 PM, Alex Harui wrote: Scrol

Re: [flexcoders] Is it possible to make multiple labels selectable as one text block like in regular html

2010-05-21 Thread Alex Harui
els as one logical block exactly like in html? -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Is it possible to remove the 3d effects on controls like dropdownlist and scroller without extending them?

2010-05-21 Thread Alex Harui
You should be able to do that with skins. On 5/21/10 10:32 AM, "Baz" wrote: is it possible to remove the 3d effects on controls like dropdownlist and scroller without extending them? I just want them to be flat. Thanks, Baz -- Alex Harui Flex SDK Team Adobe System,

Re: [flexcoders] how to adjust mouse wheel scrolling for custom itemrender?

2010-05-21 Thread Alex Harui
That might work. If it doesn’t, try a parent of the scroller. On 5/21/10 10:39 AM, "Baz" wrote: Ah I see, thanks for the info. Where would I listen to the "capture" phase? In the scroller component? On Tue, May 18, 2010 at 1:30 PM, Alex Harui wrote: Scroll

Re: [flexcoders] DataGrid and XML

2010-05-21 Thread Alex Harui
ated to me, but profit not to update the DataGrid. Thanks for the aid that can give me, since I take my first steps with this tool. Associate the file main.mxml and the archives grafico1.xml, grafico2.xml and grafico3.xml Thanks Mauro -- Alex Harui Flex SDK Team Adobe System,

Re: [flexcoders] AIR Bug SDK-11134 fixed or not?

2010-05-20 Thread Alex Harui
plicate of 1509350, but when you search for 1509350 it says no such bug exists. Any got a clue? I need to fix this as it look really lame. -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] creating a magnetic grid

2010-05-20 Thread Alex Harui
ger (http://www.greensock.com/). I've searched the adobe documentation, this group and googled for a while without finding any relevant information. Any advice would be greatly appreciated. If any of you wish, I can add some juicy bits of code. Thanks in advance. -- Alex

Re: [flexcoders] Re: Errors from generated MXML code from module

2010-05-19 Thread Alex Harui
world, and grab a 4.x swc but don't know what version it was compiled with, the compiler won't help me out by telling me it is potentially incompatible. Argg --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > Try a brand

Re: [flexcoders] textInput - Flex 4 vs. Flex 3

2010-05-19 Thread Alex Harui
I haven't been able to do this in Flex 4 -- does anyone know a way to achieve the same result? thanks in advance, Tex -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] init, creationcomplete and other events

2010-05-19 Thread Alex Harui
onent lifecycle so maybe some book or other media has it. On 5/19/10 6:40 AM, "Angelo Anolin" wrote: Thanks Alex and Gordon. Is there some sort of documentation for this? Thanks. ____ From: Alex Harui To: "flexcoders@yahoogroups.com" S

Re: [flexcoders] Issue with truncateToFit behavior of Label while scaling

2010-05-19 Thread Alex Harui
> Problem > > > any idea of how to truncate LABEL text? > > many thanks, > > Tex > > > --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , > Alex Harui wrote: > > > > There are examples in the doc and on FlexExamples.

Re: [flexcoders] Data grid vary column sizes

2010-05-19 Thread Alex Harui
umn widths? Setting the width property inside the item renderers to different values is not working. Thanks, Philip -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: Errors from generated MXML code from module

2010-05-18 Thread Alex Harui
ile stand-alone Modules using FB3 and Maven. I tried hard to get the org.sonatype.flexmojos to compile my code when I inherited from Module, but no luck. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > If you have a library/swc in the li

Re: [flexcoders] init, creationcomplete and other events

2010-05-18 Thread Alex Harui
ner, which event fires up and any other pointers which I have to be aware of. Thanks. Angelo -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: Errors from generated MXML code from module

2010-05-18 Thread Alex Harui
some days. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > Sounds like the compiler is not compatible with the SWCs you are compiling > against. > > > On 5/18/10 12:42 PM, "jmbo...@..." wrote: > > > > &g

Re: [flexcoders] Errors from generated MXML code from module

2010-05-18 Thread Alex Harui
blic class _PharmacySpendApp_mx_core_FlexModuleFactory [ERROR] _PharmacySpendApp_mx_core_FlexModuleFactory.as:[13,14] Interface method allowDomain in names pace mx.core:IFlexModuleFactory not implemented by class _PharmacySpendApp_mx_core_FlexModuleFactory .public class _PharmacySpendApp_mx_core_FlexModuleFactory -- Alex Harui Fle

Re: [flexcoders] how to adjust mouse wheel scrolling for custom itemrender?

2010-05-18 Thread Alex Harui
"set mouseWheel" function. The file also has to be AS, because overriding mx_internals functions doesn't work in mxml . It's a very heavy solution for a relatively simple activity, am I missing something? Cheers, Baz -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Script timeout binding selection in Tree

2010-05-18 Thread Alex Harui
k tomorrow. On Mon, May 17, 2010 at 9:35 PM, Alex Harui wrote: Set a breakpoint on setSelectionDataLoop. See how often it gets called. On 5/17/10 4:49 PM, "Richard Rodseth" http://rrods...@gmail.com> > wrote: Thanks for trying. No, the presentation model has an array

Re: [flexcoders] Script timeout binding selection in Tree

2010-05-17 Thread Alex Harui
ld be able to look into the framework sources. If, for whatever reason it doesn't, copy the Tree and other classes involved into your project and try debugging this way. Best. Oleg -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] itemEditor | Nested Objects in dataProvider

2010-05-17 Thread Alex Harui
com.vzw.mpi.rss.valueobject.client.CompatableFeatureCustomVO and the property refers to compatableInd.id when it tries to data[property] it fails because data[compatableInd] is valid data[compatableInd.id] is not valid so how to overcome this. Any pointer is highly appreciated. Thanks ilikeflex -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] XML List Collection Filter Function

2010-05-17 Thread Alex Harui
gered on each keystroke (via the textinput ! change event). Using the other fields such as FirstName or LastName, the search works well but not on the email field. Any ideas? Thanks. Angelo ____ From: Alex Harui To: "flexcoders@yahoogroups.com" Sent: Fri

Re: [flexcoders] Canceling keyboard activity on controls

2010-05-16 Thread Alex Harui
d that the control key doesn't trigger a keyboard even unless you're on a Mac!) Does anyone have an idea what I can do? I'm getting a bit desperate over here. Cheers, Julian -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] TileList Itemrenderer's TextInput focus problem on keyboard "Tab" key

2010-05-15 Thread Alex Harui
itialize="init()" layout="vertical"> /* myItemRenderer.mxml */ http://www.adobe.com/2006/mxml"; implements="mx.managers.IFocusManagerComponent" width="100%"> -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] XML List Collection Filter Function

2010-05-14 Thread Alex Harui
traced the filter function and it is returning a true or false value depending on the index of the search field but the particular row does not get filtered out. Thanks. Angelo -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: Strange Behavior When Loading Sub Application

2010-05-13 Thread Alex Harui
ot; away from RL. I will just have to pursue another strategy. Thanks for your confirmation Alex! Jim --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > Flex SWFs must be on-stage in order to load. Are you worried about missing > a

Re: [flexcoders] Flex 4 - Datagrid column header and data problem

2010-05-13 Thread Alex Harui
gt; > > > -- > Flexcoders Mailing List > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > Alternative FAQ location: > https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e6207 > 9f6847 >

Re: [flexcoders] Re: Strange Behavior When Loading Sub Application

2010-05-13 Thread Alex Harui
flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > Try adding the SWFLoader to the canvas before you load it. > > > On 5/12/10 12:40 PM, "jmbo...@..." wrote: > > > > > > > Hi, > > I am experiencing

Re: [flexcoders] how to style a ComboBox - Dropdown ?

2010-05-13 Thread Alex Harui
ailable for hte ComboBox itself but one of the properties is called dropdownStyleName. What I'm stumped with now, is where to look in the Adobe Flex docs on what options I'm allowed to use to create a CSS style which I can then assign to CompboBox.dropdownStyleName ? Cheers, Nick -- Alex

Re: [flexcoders] Re: Folder-style dragOver highlight on tree

2010-05-12 Thread Alex Harui
line between items, which is not the desired effect. > > Thanks. > -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] SystemManager and RSL linkage

2010-05-12 Thread Alex Harui
e. Best. Oleg -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Error #2063: Error attempting to execute IME command anyone?

2010-05-11 Thread Alex Harui
t;); } and it tells me that IME is installed but not enabled. If I try to set enabled to true I get another error. Error: Error #2063: Error attempting to execute IME command. at flash.system::IME$/set enabled() on the line that sets enabled to true Any input is appreciated; 10x, C -- Ale

Re: [flexcoders] How to layer popup windows

2010-05-11 Thread Alex Harui
, May 11, 2010 at 12:44 AM, Alex Harui wrote: Are you using the childLIst parameter of PopUpManager? On 5/10/10 11:30 AM, "Greg Hess" http://flexeff...@gmail.com> > wrote: Hi All, My application employs a modular architecture(main applications responsibility is just to

Re: [flexcoders] Use a Popup as itemEditor in Datagrids

2010-05-11 Thread Alex Harui
l not goes to edit mode? Thanks In advance Sachin dev tripathi -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] spark ButtonBar selectedIndex out of view

2010-05-11 Thread Alex Harui
one of the end buttons...its not coming into view. How can I ensure the selectedItem is in view? thanks -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] SystemManager and RSL linkage

2010-05-11 Thread Alex Harui
Any ideas on what classes are included in the RSL? TIA, Fotis -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] How to layer popup windows

2010-05-10 Thread Alex Harui
supported with the parent argument to addPopUp or I am doing something wrong. Does anyone know how I can show popups in different layers per say? Any help much appreciated. Greg -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Does Flex 4 SDK require Flash Player 10.1?

2010-05-10 Thread Alex Harui
ayer version to 10.0.0 in the Flex Compiler project options? On some machines we can load our site and in others it is stalling about a quarter of the way through the second preloader progress bar. On Sun, May 9, 2010 at 11:38 PM, Alex Harui wrote: Are you using the official Flex 4 rele

Re: [flexcoders] Use a Popup as itemEditor in Datagrids

2010-05-10 Thread Alex Harui
what is the solution of the problem. Please let me know Thanks Sachin -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: Loading CFF font swf into Flex 3.3 app

2010-05-10 Thread Alex Harui
per(); } } } -- I've tried both verdana and arial fonts that I've pulled from my C:\Windows\Fonts folder and it always throws the error. Once I get this resolved I should be able to get started with the text flow integration. Aaron --- In flexcoders@ya

Re: [flexcoders] Re: Matrix Transform does not update Container's properties

2010-05-09 Thread Alex Harui
rised some would fall out of synch. In the imaginary world :), where I would have to redesign how it's done in flex, I think I'd go for something more like: So that there would be only one way to manipulate display object transformation. If there are more then one, it is

Re: [flexcoders] Does Flex 4 SDK require Flash Player 10.1?

2010-05-09 Thread Alex Harui
into trouble. On 5/9/10 9:44 AM, "dorkiedorkfromdorkt...@gmail.com" wrote: How would I be able to determine that? Is TLF one of them? On Sun, May 9, 2010 at 2:16 AM, Alex Harui wrote: No, 10.1 is not required, but if you setup your SWF to require 10.1 APIs your SWF may

Re: [flexcoders] Does Flex 4 SDK require Flash Player 10.1?

2010-05-09 Thread Alex Harui
? It loads fine if I use that version. JP -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: using TextArea as ItemRenderer for DataGridColumn

2010-05-09 Thread Alex Harui
PM, "mitek17" wrote: I got the the message, we have to move to Flex4 & Spark. Still, what about Flex 3 & Halo? If it is an abandoned project, just announce it and we will move on. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui

Re: [flexcoders] Re: Matrix Transform does not update Container's properties

2010-05-09 Thread Alex Harui
t goes off the screen. Is it supported there? --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > Fine, that's what I meant by not-supported. If you change the transform > through rotation or z, then x/ywidth/height do not reflect

Re: [flexcoders] SWFLoader.scaleContent FAIL...

2010-05-07 Thread Alex Harui
d it. I tried setting scaleContent=false and then scaling the whole SWFLoader using the width and height I have saved but for some reason that doesn't work at all. The content gets clipped pretty randomly. Any suggestions? Thanks --Kelly -- Alex Harui Flex SDK Team Ado

Re: [flexcoders] DataGrid in a Spark Window Bug

2010-05-07 Thread Alex Harui
;m able to bring the spreadsheet up in my TitleWindow without issues, but when I try to put it in its own window. all hell breaks loose. Jeff -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: Matrix Transform does not update Container's properties

2010-05-06 Thread Alex Harui
ders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > There might be something I'm missing, but Flex 3 does not support most > transform manipulations other than scale. It should work correctly in Flex > 4, especially for Spark components

Re: [flexcoders] Re: Loading CFF font swf into Flex 3.3 app

2010-05-06 Thread Alex Harui
we're in the midst of a large, expensive project. Thanks, Aaron --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > If you're trying to load the font by placing it in an RSL, make sure it is > last in the list of RSLs to load (

Re: [flexcoders] Best practices with modular applications

2010-05-06 Thread Alex Harui
whether to break the modules out into separate flex projects or to include them as subdirectories of the main application's project. I've seen some of the adobe documentation but I'm hoping that someone has some experience/insights as to which is the better approach. Thanks.

Re: [flexcoders] Re: Loading CFF font swf into Flex 3.3 app

2010-05-06 Thread Alex Harui
> > cff="true", > > > advancedAntiAliasing="true", > > > unicodeRange="U+0020-007F, U+00A0-00FF, U+2010-201F, > > > U+2032-2037, U+2039-203A, U+20A0-20B5" > > > )] > > > public static const INDUSTRIAL_ROMAN:Class; > > > > > > [Embed( > > > source="tt1048m_.ttf", > > > fontFamily="Industrial736 BT", > > > fontStyle="italic", > > > cff="true", > > > advancedAntiAliasing="t > > > > > > ... etc. > > > > > > Because we needed to load them up front, on the main app, we just linked > > > that > > > class, > > > > > > import uk.co.razorfish.fonts.EmbeddedFonts; EmbeddedFonts; > > > > > > And that did the job. > > > > > > HTH, > > > Gabriel > > > > > > -- > > > gabriel montagné láscaris comneno > > > http://rojored.com > > > +44 (0) 7500 709 209 > > > > > > -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] automatic dataprovider binding update

2010-05-06 Thread Alex Harui
he example: [Bindable] public var someDate:Date; When a new date is chosen with that control, someDa! te remains unchanged. Why not have perhaps? Or some way of specifying that the binding is 2 way like Seth -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Matrix Transform does not update Container's properties

2010-05-05 Thread Alex Harui
following problem: https://bugs.adobe.com/jira/browse/SDK-26388 If you transform container in Flex, it won't update it's own properties, which means they become invalid after the first transform. It works fine for SWFLoader. Thanks! Cheers, Dmitri. -- Alex Harui Flex SDK Team Ado

Re: [flexcoders] dataGrid ItemRenderer Error

2010-05-05 Thread Alex Harui
Access of underfined property data" Code (in a skin): -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: using TextArea as ItemRenderer for DataGridColumn

2010-05-05 Thread Alex Harui
. Thanks! Cheers, Dmitri. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > Why didn't default renderer do what you want? > > > On 5/5/10 12:58 PM, "mitchgrrt" wrote: > > > > > > > I'm try

Re: [flexcoders] Re: using TextArea as ItemRenderer for DataGridColumn

2010-05-05 Thread Alex Harui
enderer to show all the lines in its data without scrolling. Thanks. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , Alex Harui wrote: > > Why didn't default renderer do what you want? > > -- > Alex Harui > Flex SDK Team > Adobe Sy

Re: [flexcoders] using TextArea as ItemRenderer for DataGridColumn

2010-05-05 Thread Alex Harui
dy offer some advice? Thanks. http://www.adobe.com/2006/mxml"; layout="absolute"> -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: ViewStack historyManagementEnabled fails when nested in spark component

2010-05-04 Thread Alex Harui
is problem: http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"> // Alex Harui, any ideas how to get around this problem? Thanks, Philip ---

Re: [flexcoders] is there a style to prevent a transition in a uicomponent

2010-05-03 Thread Alex Harui
Some can be stopped by setting XXXduration=0 On 5/3/10 7:32 PM, "dorkiedorkfromdorkt...@gmail.com" wrote: i remember reading about a style or property that will prevent animations / transitions from taking place. but i can't find it. jp -- Alex Harui Flex SDK Team Ad

Re: [flexcoders] Printing without the pop-up window...

2010-05-02 Thread Alex Harui
a java-script I could use to disable that pop-up in the browser? Thanks, Laurence MacNeill Mableton, Georgia, USA -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] trace address of a object

2010-05-02 Thread Alex Harui
t. Thanks! -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Re: XMLListCollection DataGrid Performance vs Any Other DataProvider Type

2010-04-30 Thread Alex Harui
you do it often enough it pays off the conversion time, and collection item properties are accessed during scrolling so usually it pays off if folks are going to surf the data. It’s pretty simple. If you got XML like this: Var xml:XML = Alex Harui

Re: [flexcoders] How to do the majic of scrolling?

2010-04-30 Thread Alex Harui
ut despite putting 3 containers that exceed the height of my laptop, the scroller is grayed out. Any examples on how to do this, seemingly, simple thing? Scroller that is wrapped around all the groups in a spark.component.Application skin: .. I have it wrapped around the group of groups. --

Re: [flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-04-30 Thread Alex Harui
a huge project written in Flex 3 and I want to see Flex/Flash alive. But with the current state of developers support and overall approach to the platform I would say that Adobe is not going to make it. Cheers, Dmitri. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com>

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