[flexcoders] Migration Issues from Flex 2 into Flex 3 Beta 2

2008-01-22 Thread Romeo Obane
Greetings! Yesterday, I integrated my flex application from Flex 2 to Flex 3 Beta 2, I've seen some strange changes, here are the following: * My Flex Application size before is around 500k, but now 986k. * In my library which uses Cairngorm: It finds the CairngormMessages.properties, I've

Re: [flexcoders] Migration Issues from Flex 2 into Flex 3 Beta 2

2008-01-22 Thread Carlos Rovira
For app size use Export Release Version 2008/1/22, Romeo Obane [EMAIL PROTECTED]: Greetings! Yesterday, I integrated my flex application from Flex 2 to Flex 3 Beta 2, I've seen some strange changes, here are the following: * My Flex Application size before is around 500k, but now 986k.

Re: [flexcoders] Migration Issues from Flex 2 into Flex 3 Beta 2

2008-01-22 Thread Romeo Obane
Oh, I've found it already. I do understand why my application file size is bigger now in flex 3 bet 2. Here is the article http://www.buntel.com/blog/index.cfm/2007/10/15/The-Export-Release-Wizard. Thank you Carlos for your hint. On 1/22/08, Romeo Obane [EMAIL PROTECTED] wrote: Thank you for

Re: [flexcoders] Migration Issues from Flex 2 into Flex 3 Beta 2

2008-01-22 Thread Romeo Obane
Thank you for your fast reply! I've tried that one as well, but it doesn't returns to my original application size when I'm in Flex 2. I've read some articles about Flex 3 migration, but I haven't found an explanation on what are the things that adds up to my application that gives me a big file

[flexcoders] Flex 3 and Cairngorm2.2.1 Issue

2008-01-22 Thread Romeo Obane
Hi to all! I added to my Flex 3 library path the Cairngorm 2.2.1 swc and it is finding the CairngormMessages.properties unlike with Flex 2. I've found a temporary Solution in http://labs.adobe.com/wiki/index.php/Talk:Cairngorm - I added in the source folder of library

Re: [flexcoders] Re: errors in livedocs

2008-01-22 Thread Tom Chiverton
On Monday 21 Jan 2008, jrunrandy wrote: * Funky search. I see an error in an SSI, but it probably manifests itself differently on different products/versions. I just used Google directly... -- Tom Chiverton Helping to completely e-enable principle-centered systems on:

[flexcoders] Flex Binding Issues

2008-01-22 Thread polestar11
Hi there I've run into binding issues with Flex 3B3. I have the following setup: - TitleWindow with a singleton TitleWindowController that gets initilaized in TitleWindow.onInitialize() - DetailsWindow which sits inside TitleWindow and has a getter / setter of 'controller' for

Re: [flexcoders] Help With Log Out

2008-01-22 Thread Tom Chiverton
On Monday 21 Jan 2008, Gregor Kiddie wrote: navigateToURL( new URLRequest( javascript:window.location.reload( false );) , _self ); We do the same thing, but using URLRequest(/) - doesn't rely on JavaScript being on then. You could use Application.application to find the full path if you

[flexcoders] Re: Flex Binding Issues

2008-01-22 Thread polestar11
... one more note ... If I explicitly bind the properties using BindingUtils in the DetailsWindow.onCreationComplete event like: private function onCreationComplete():void { BindingUtils.bindProperty(this, controller, TitleWindowController.instance.view,

[flexcoders] How to hide the Vertical Axis in a BarChart

2008-01-22 Thread reflexactions
I want to hide the vertical axis, how? tks

RE: [flexcoders] Re: Flex Binding Issues

2008-01-22 Thread Sebastian Zarzycki
You might want to check this - https://bugs.adobe.com/jira/browse/SDK-14315. Seems like it's same issue. Sebastian -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of polestar11 Sent: Tuesday, January 22, 2008 11:06 AM To:

[flexcoders] LinearGradientStroke

2008-01-22 Thread reflexactions
Has anbody got the angle property to work on a LinearGradientStroke, it seems to me that whatever angle I set it is always rendered left to right which is the default. tks

Re: [flexcoders] Migration Issues from Flex 2 into Flex 3 Beta 2

2008-01-22 Thread Tom Chiverton
On Tuesday 22 Jan 2008, Romeo Obane wrote: I've tried that one as well, but it doesn't returns to my original application size when I'm in Flex 2. Strip out any libraries Builder is adding that you don't need, and/or switch to RSL for the core libraries. -- Tom Chiverton Helping to

[flexcoders] Contest menu text doesn't change if i set the caption property

2008-01-22 Thread srikanth_reddy_007
Code snippet: var statusBarItem:ContextMenuItem = new ContextMenuItem(show me, false, true, true); showMeItem.addEventListener( ContextMenuEvent.MENU_ITEM_SELECT, showMeListener ); cm.customItems.push(showMeItem); public function showMeListener(event:ContextMenuEvent):void {

Re: [flexcoders] No support for move refactoring in Flex Builder 3

2008-01-22 Thread Brent Dearth
Extensive refactoring capability is one of the biggest expectations I have of an IDE these days ... especially when that IDE costs several hundred dollars. *cough* On Jan 21, 2008 6:48 PM, ansury2001 [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,

[flexcoders] Re: Help With Log Out

2008-01-22 Thread tinylion1968
Yes, thats what I ended up doing last night. As you say, it works but just seems a little 'rough' Just seems a shame, that while using MVCS, and being able to reinitialize the model I have to go to such extremes to remove unwanted display objects and components. I can see why of course, but I

[flexcoders] Export Release Version

2008-01-22 Thread tinylion1968
Are there any compiler constants that the app can use to do a conditional compile when 'Export Release Version' is selected. I know you can set compiler var's to do this, just wanted to know what compiler options were being used for 'ERV'. would be very handy if just by selecting this option I

[flexcoders] Text shift during printing

2008-01-22 Thread Muhammad Ahmed Ullah
Hi, On a canvas derived class, I have few controls. Before taking this canvas object's print, If move the scrollbars of the browser window, then all the text, displayed over controls, appears shifted in the print, but appears fine in the view. Any comments? Regards, Ahmed

[flexcoders] IUIComponent Cross-IDE Component Development

2008-01-22 Thread Mike Krotscheck
I'm currently writing a couple of DisplayObject based components whose optimal implementation would allow their use both via MXML, AS3, or within the Flash IDE, without forcing the end-user to have either of the two component libraries. Since this means I can't use either of the UIComponent

[flexcoders] Editable DataGrid and keyboard navigation

2008-01-22 Thread markgoldin_2000
If a DataGrid is editable then when I click on a cell I cannot navigate out of the cell using up and down keys. Is that correct? Is there a way to have navigation working in the editable grid just like it works in a readonly one? Thanks

Re: [flexcoders] Re: Help With Log Out

2008-01-22 Thread Tom Chiverton
On Tuesday 22 Jan 2008, tinylion1968 wrote: As you say, it works but just seems a little 'rough' Well, you can reinitialise your Model (maybe by saving an 'empty' copy at the end of the constructor), but that doesn't give you the same absolute guaranty. -- Tom Chiverton Helping to

Re: [flexcoders] About Adobe Air

2008-01-22 Thread Tom Chiverton
On Monday 21 Jan 2008, rhnkyr wrote: Hi folks, How can I embed the air runtime in an air application? Is thre any possibility to do this? thnx. You mean, distrubuted your app, and your app plus the runtime ? Look at the 'badge' install methods. -- Tom Chiverton Helping to globally coordinate

Re: [flexcoders] Editable DataGrid and keyboard navigation

2008-01-22 Thread yigit
write your own item editor; (possibliy extend text) in it; listen key events;and when the user presses up or down keys; dispatch parent.key event... i'm not sure but it should work... (i hope) markgoldin_2000 wrote On 01/22/2008 04:27 PM: If a DataGrid is editable then when I click on a cell I

[flexcoders] Google Spell Checker Component Error

2008-01-22 Thread subeesh a
Hello , I am using google Spell checker component in one of my text Areas , the spell checking is working correctly when i run the code from my local machine , when i upload the swf to the server i am getting an error like this dataLoader security error[SecurityErrorEvent type=securityError

Re: [flexcoders] Re: Detect AIR Application?

2008-01-22 Thread Tom Chiverton
On Tuesday 22 Jan 2008, Jim Hayes wrote: I did expect something a bit more general rather than something that appears to be so closely tied to the security settings though. Put your core logic in a shared .SWC, and have an AIR and Flex project that import it. -- Tom Chiverton Helping to

[flexcoders] Flex 3Beta3 and Button width

2008-01-22 Thread polestar11
After upgrading to Flex3Beta3 I'm finding that Button labels get truncated in the over state. I have changed the padding left right properties, but this seems to have no effect. After reading this post:

Re: [flexcoders] No support for move refactoring in Flex Builder 3

2008-01-22 Thread Tom Chiverton
On Monday 21 Jan 2008, ansury2001 wrote: So if FB3 is supposed to support refactoring - it's either broken, or it doesn't do moves at all. The 2nd. It does some other sorts of refactor, but not that one. You can always do most of the grunt work for a change in package name using

Re: [flexcoders] Photo print service

2008-01-22 Thread Tom Chiverton
On Tuesday 22 Jan 2008, Greg Hess wrote: from my understanding I can print images but they must be loaded (drawn) in flex prior, is this true? If by 'drawn to screen so the user sees them', I'm not sure you have to. You could use ActionScript to create the FlexPrintJob children on the fly.

Re: [flexcoders] Google Spell Checker Component Error

2008-01-22 Thread Tom Chiverton
On Tuesday 22 Jan 2008, subeesh a wrote: http://dev.meshenergy.com/Modules/MeshAudit/bin/ComponentQuestion.swf cannot load data from https://www.google.com/tbproxy/spell?lang=en.;] i have placed a crossdomain.xml file in the root folder of the site In the root of www.google.com ? I'm not sure

[flexcoders] text does not appear bold in mx:Text

2008-01-22 Thread ilikeflex
Hi All I am using mx:Text to display the messages but the message does not appear bold. mx:Text xmlns:mx=http://www.adobe.com/2006/mxml; width=125 height=50 htmlText={data['event-type']} lt;brgt; lt;Bgt;Clientlt;/Bgt; {data['client-contact']} lt;brgt;

RE: [flexcoders] Delaying effect start

2008-01-22 Thread Merrill, Jason
Use the Timer class in Actionscript to wait 5, then when you get to 5, trigger the effect with Actionscript. Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community

[flexcoders] Photo print service

2008-01-22 Thread Greg Hess
Hi All, I have a requirement to build a photo print service in Flex. The EU will view a gallery of image thumbnails (TileList) and have the option to print one photo or the entire contents of the gallery. Photo print options would be fit to page, 5x7, 8x10 ect... Searching the web, viewing

RE: [flexcoders] Re: Detect AIR Application?

2008-01-22 Thread Jim Hayes
Yes, that's what I've been doing for some time! Thus it's academic for me at the moment, however I can see it is something that I might possibly use in future (depending on the context). -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom

[flexcoders] Re: How to hide the Vertical Axis in a BarChart

2008-01-22 Thread jensen.axel
--- In flexcoders@yahoogroups.com, reflexactions [EMAIL PROTECTED] wrote: I want to hide the vertical axis, how? tks more info needed... the labels? the line? try the following i guess... mx:Style .vAxis { showLine:false;

[flexcoders] Re: How to hide the Vertical Axis in a BarChart

2008-01-22 Thread jensen.axel
I meant: .vAxis { showLine:false; showLabels:false; verticalTickAligned:true; } --- In flexcoders@yahoogroups.com, jensen.axel [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, reflexactions reflexactions@ wrote: I want to hide the vertical axis, how? tks more info

RE: [flexcoders] Photo print service

2008-01-22 Thread Mike Krotscheck
Sortof? When developing HP Print Studio (http://www.hp.com/printstudio) we ran into this very same issue, but instead of photos we had multiple high resolution template assets that were only loaded when a printjob was requested. Given our use cases (most users don't have duplex printers) we didn't

Re: [flexcoders] IUIComponent Cross-IDE Component Development

2008-01-22 Thread Jeffry Houser
With regards to number 2, the Flex 3 framework will be released under the Mozilla Public License. I believe, under the terms of that license, it would be acceptable to circulate that code along with your custom code. I'm not sure about the Flex 2 license, though. Mike Krotscheck wrote:

RE: [flexcoders] Flex 2 and Vista

2008-01-22 Thread Merrill, Jason
Good to know, thanks Kerry! And why did the heavens allow Vista to be unleashed upon the world? Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community

[flexcoders] Re: Editable DataGrid and keyboard navigation

2008-01-22 Thread markgoldin_2000
Here is code I am trying in item editor: addEventListener(KeyboardEvent.KEY_DOWN, KeyDown); public function KeyDown(eventObj:KeyboardEvent):void { this.parent.dispatchEvent(eventObj); } but nothing happens when I press DOWN key. --- In flexcoders@yahoogroups.com, yigit [EMAIL PROTECTED]

RE: [flexcoders] Flex 2 and Vista

2008-01-22 Thread Kerry Thompson
After a week of incantations, I have found the magic procedure that makes Flex run on Vista. You can't just click on the shortcut to run Flex, at least the first time. You have to right-click and Run as Administrator (you have to be an administrator first, of course). Otherwise, Flex crashes

RE: [flexcoders] Flex and SCORM

2008-01-22 Thread Merrill, Jason
Hi there, Has anybody achieved or got any advice on SCORM'ing a Flex package? What'ing ? SCORM = Shareable Content Object Model: http://www.adlnet.gov/scorm/ It's a standard adopted by the U.S. government and several private sector businesses for distributing electronic learning solutions

[flexcoders] Flex3 MenuBar selects on rollover

2008-01-22 Thread Nils Millahn
Hi everybody, I'm using a mx:MenuBar component in Flex 3 without any submenus - just top-level menu entries. The problem is that once you've selected a menu item (by clicking on it), the selection changes even when you only rollover with the mouse. eg: Item AItem BItem C - click

Re: [flexcoders] checkbox- create a bindable value property

2008-01-22 Thread Sherif Abdou
Doesnt he need ti dispatch an Event so it works? So dispatch the event then have it [Binable(event=eventName)] - Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, January 22, 2008 12:56:05 AM Subject: Re: [flexcoders] checkbox-

Re: [flexcoders] Re: best way to manage a toolbar

2008-01-22 Thread Pan Troglodytes
Thanks for the reply. Kind of suprising that this hasn't already been coded. Maybe it's just a matter of finding it. Wish there was a really popular central repository for Flex components. Just FYI, the problem wasn't particularly screen resolutions so much as resizing the application's main

[flexcoders] Re: best way to manage a toolbar

2008-01-22 Thread scalenine
Maybe one of these custom flow container's would work: http://www.munkiihouse.com/?p=60 http://flexlib.googlecode.com/svn/trunk/docs/flexlib/containers/FlowBox.html http://blog.3r1c.net/?p=88 Juan scalenine.com : degrafa.com --- In flexcoders@yahoogroups.com, Pan Troglodytes [EMAIL

Re: [flexcoders] Flex 2 underline in datagrid

2008-01-22 Thread Dominique Bessette - Halsema
so in the datagridcolumn i do headerRenderer={header.getStyle('textDecoration')} On 1/19/08, Alex Harui [EMAIL PROTECTED] wrote: I put together a test case and found that it is a known bug in 2.x. I would workaround it with a custom header renderer. Here's the one I used. package {

Re: [flexcoders] Flex 2 underline in datagrid

2008-01-22 Thread Dominique Bessette - Halsema
nevermind i got it, for everyone else it's just mx:DataGridColumn id=cff headerText=CFF UID headerRenderer=MyHeaderRenderer textDecoration=underline dataField=cffUid width=100 / On 1/22/08, Dominique Bessette - Halsema [EMAIL PROTECTED] wrote: so in the datagridcolumn i do

RE: [flexcoders] No support for move refactoring in Flex Builder 3

2008-01-22 Thread Matt Chotin
Voting for deferred bugs will be available soon. Tom's right that bugs like this aren't getting reconsidered for Flex 3 but we know we need more refactoring support in Flex 4. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton

[flexcoders] Re: checkbox- create a bindable value property

2008-01-22 Thread rueter007
When i try to bind a data model to the value property, it doesn't update the model when the value changes. However, when I do: click=Alert. show(value) , it returns 0 or 1 as expected. So it seems that the internals are changing the value correctly, but the bind isn't working? The

[flexcoders] Re: checkbox- create a bindable value property

2008-01-22 Thread rueter007
or as Sherif pointed out, you can check for the selected property change and fire a custom event and mark the bindable tag for the 'value' property with that custom event. --- In flexcoders@yahoogroups.com, rueter007 [EMAIL PROTECTED] wrote: When i try to bind a data model to the value

[flexcoders] Preserving whitespace in XML nodes

2008-01-22 Thread Dave Glasser
I've tried using the static XML.ignoreWhitespace property to solve this problem. Not only does it not work, but I don't want the setting applied globally. When I run this code: var x:XML = myXML/; x.a =a; x.b =b; x.c =c; trace(x= + x.toXMLString()); The

Re: [flexcoders] Preserving whitespace in XML nodes

2008-01-22 Thread Nils Millahn
Have you tried using a CDATA around them? - Nils. Dave Glasser wrote: I've tried using the static XML.ignoreWhitespace property to solve this problem. Not only does it not work, but I don't want the setting applied globally. When I run this code: var x:XML = myXML/; x.a =a;

RE: [flexcoders] Re: Tree and ITreeDataDescriptor

2008-01-22 Thread Tracy Spratt
I am not speaking of the tree, but of the xml. It has a root or it is not xml. I guess you just have showRoot=false on the tree? When accessing tree nodes, you almost always use the use the underlying dataProvider, which will be the e4x api. What do you want to do with the first-level

RE: [flexcoders] Text shift during printing

2008-01-22 Thread Alex Harui
You might need to call validateNow() before adding the page From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Muhammad Ahmed Ullah Sent: Tuesday, January 22, 2008 6:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Text shift

RE: [flexcoders] Re: Editable DataGrid and keyboard navigation

2008-01-22 Thread Alex Harui
When the editor is up, the DG is no longer listening for arrows keys, so passing them to the DG won't help. You can get the editedItemPosition, and set a new editedItemPosition instead From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] text does not appear bold in mx:Text

2008-01-22 Thread Alex Harui
Try lower case 'b' From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ilikeflex Sent: Tuesday, January 22, 2008 7:36 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] text does not appear bold in mx:Text Hi All I am using

Re: [flexcoders] Preserving whitespace in XML nodes

2008-01-22 Thread Dave Glasser
That doesn't seem to work either. Perhaps I'm not doing it right, but the output is identical with this code: var x:XML = myXML/; x.a = new XML( ![CDATA[a]]); x.b =b; x.c =c; trace(x= + x.toXMLString()); It doesn't show the CDATA section in the output, nor

[flexcoders] variable column width for items in HorizontalList

2008-01-22 Thread Jerry DuVal
Is it possible to have items, displayed in a HorizontalList, with variable column widths. For example I have a HorizontalList of two items FOO FOO BAR I want the column width to change based on the size of the item value. The intent is to have the columnWidth be variable per item so

Re: [flexcoders] Preserving whitespace in XML nodes

2008-01-22 Thread Dave Glasser
P.S., in the CDATA section below, the a character has four spaces on either side, but it might not appear that way in HTML-based mail readers. --- Dave Glasser [EMAIL PROTECTED] wrote: That doesn't seem to work either. Perhaps I'm not doing it right, but the output is identical with this

[flexcoders] Re: Update ArrayCollection from PopUp TitleWindow

2008-01-22 Thread jmfillman
Alex, Thank you for the reply. I found part of the problem by tracing what was getting passed to the PopUp, but I believe that I still have a syntax issue from the PopUp. I'm using the code below. I don't get any errors, and it does trigger a CollectionChange event on the AC, but it isn't

[flexcoders] How to fetch files from Flex Builder 2?

2008-01-22 Thread markflex2007
Hi, I just build a new project and want to fetch files from CVS Server,Do you know how to do this in Flex Builder 2? I try many time and always get error message.why? I check all the Adobe Flex documentation,I can not see much information about CVS. Thanks Mark

[flexcoders] How to fetch files from Flex Builder 2 from CVS Server?

2008-01-22 Thread markflex2007
Hi, I just build a new project and want to fetch files from CVS Server,Do you know how to do this in Flex Builder 2? I try many time and always get error message.why? I check all the Adobe Flex documentation,I can not see much information about CVS. Thanks Mark ** Sorry I just delete the

[flexcoders] Re: Update ArrayCollection from PopUp TitleWindow

2008-01-22 Thread jmfillman
CORRECTION: mainApp.myAC.itemUpdated(mainApp.myAC [itemIndex],mainApp.myAC.getItemAt (itemIndex).subject,'',itemSubject.text); Typo on my part. Trying to abbreviate the post; typo not in source code. --- In flexcoders@yahoogroups.com, jmfillman [EMAIL PROTECTED] wrote: Alex, Thank you for

[flexcoders] Debugger Session lost after reload

2008-01-22 Thread ndkamp
I'm using FB 3b3 as eclipse plugin. When i start debugging an app, the app gets loaded in firefox and FB connects to the flash debugger. The debugger halts at breakpoints - everything works as expected. Then i do a change in the source, build it and reload the swf (the html-wrapper tbs.). The

Re: [flexcoders] Re: checkbox- create a bindable value property

2008-01-22 Thread Sherif Abdou
here is an example straight from the Panel, hopfully no rules borken but that is how you do it. [Bindable(layoutChanged)] public function get layout():String { return _layout; } /** * @private */ public function set layout(value:String):void { if (_layout != value) { _layout = value; if

RE: [flexcoders] Re: checkbox- create a bindable value property

2008-01-22 Thread Tim Ashworth
OK, I'm interested in this - how does it work binding to an event? Could someone post some code as an example? t _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rueter007 Sent: 22 January 2008 17:57 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

[flexcoders] addChild vs. addRawChild and performance

2008-01-22 Thread Steve Mathews
Someone posted recently describing that addRawChild adds DisplayObject in a way that they are not included in the size and layout of the container (if I understood correctly). Does anyone know if this would be better or worse for the overall performance of a Flex app? So if you did not need layout

RE: RE: [flexcoders] Photo print service

2008-01-22 Thread Greg Hess
Thanks, much appreciated! -Greg From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Krotscheck Sent: Tuesday, January 22, 2008 10:27 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Photo print service Sortof? When developing HP Print Studio

[flexcoders] Re: How to fetch files from Flex Builder 2 from CVS Server?

2008-01-22 Thread simonjpalmer
CVS integration has nothing to do with Flex Builder, both of them run within the Eclipse framework. It's Eclipse you should be looking to for that... http://www.eclipse.org/eclipse/platform-cvs/ --- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: Hi, I just build a new

[flexcoders] Styling List ItemRenderers

2008-01-22 Thread scott.royston
How can I style my itemrenderers in a List via CSS? Right now they seem to be inheriting everything from the List component (via the ListContentHolder), which is definitely not what I want. Thanks

RE: [flexcoders] Re: Hibernate..

2008-01-22 Thread Seth Hodgson
The Data Management Service makes lazy loading, paging and associations between types much easier to work with on the client, and it ties into the client-side SDK components very nicely. In many cases, the client code becomes nearly declarative, where you use a DataService to fill the root of

RE: [flexcoders] addChild vs. addRawChild and performance

2008-01-22 Thread Alex Harui
It would be best to not use containers and just use UIComponent or ScrollControlBase From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Mathews Sent: Tuesday, January 22, 2008 12:52 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Tree and ITreeDataDescriptor

2008-01-22 Thread hmmmbeer3
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: I am not speaking of the tree, but of the xml. It has a root or it is not xml. I guess you just have showRoot=false on the tree? When accessing tree nodes, you almost always use the use the underlying

[flexcoders] SolidColor can have bindabale color and GradientEntry can not ?

2008-01-22 Thread alex
I have a ColumnChart with couple of CoulumnSeries I'm making one ColumnSeries with bindable SolidColor and it works fine the second one with LinearGradient won't read the same bindable values How come ? mx:ColumnSeries mx:fill mx:SolidColor

[flexcoders] Re: Border Thickness On ComboBox?

2008-01-22 Thread rueter007
This is a completely stripped down version. --- ComboTest.mxml --- ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Style .comboStyle {

[flexcoders] Re: PopupManager causes RangeError: Error #2006: adding a popup window

2008-01-22 Thread wpbarto
Alex -- I just saw that you had responded to my older post -- I haven't been monitoring it since I found my own work-around. Yes, you have correctly identified the situation that the itemEditEnd is called twice (for two different cells). You asked the question what's the user task goal and what

RE: [flexcoders] Playing standard MPEG4 Bitstreams via socket

2008-01-22 Thread Samuel R. Neff
The only streaming video supported by Flash Player is via RTMP. It should support RTSP but doesn't. Make a request for RTSP support here: http://adobe.com/go/wish Sam --- We're Hiring! Seeking a passionate developer to join our team building Flex

RE: [flexcoders] Re: Detect AIR Application?

2008-01-22 Thread Dale Fraser
Wow, That sounds like a good solution. Now I just need to find out what a SWC is and how to import it. Can you tell I'm a newbie :) Regards Dale Fraser http://learncf.com -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent:

[flexcoders] Re: checkbox- create a bindable value property

2008-01-22 Thread bmilesp
yes, this info is much appreciated! Thank you all. -bmiles

[flexcoders] magnifying glass component

2008-01-22 Thread Ben Marchbanks
Anybody know if there is a flex magnifier/zoom component available ? I am looking to produce a magnifying glass effect similar to this flash version http://www.usflashmap.com/component/flash_magnifying_glass.htm

[flexcoders] Problems with IE and refreshing data

2008-01-22 Thread markcavins
Hello, I have this app that was refreshing data in development but now once I deploy it to my server I am not getting the data to refresh in IE(6/7). In FF every thing updates and resends to the server just fine. Here is the code that makes it work. the httpservice Code: mx:HTTPService

[flexcoders] Re: text does not appear bold in mx:Text

2008-01-22 Thread ilikeflex
Hi I tried lower case 'b'also but it doesn't work. How to solve this??? Thanks Rajan --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Try lower case 'b' From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Re: Detect AIR Application?

2008-01-22 Thread Jim Hayes
The concept is to put all the code common both flex/AIR apps in one source folder/project/swc, and then have 2 projects (1 AIR, 1 flex) that reference the common code. Any code specific to AIR goes in the AIR project, any to flex to the flex project. I'm sure you'd already got that worked out!

[flexcoders] Re: Problems with IE and refreshing data

2008-01-22 Thread markcavins
I have played with the cache and headers --- the weird thing is when I click the refresh button I don't see a request being made to the server. --- In flexcoders@yahoogroups.com, markcavins [EMAIL PROTECTED] wrote: Hello, I have this app that was refreshing data in development but now once

RE: [flexcoders] Re: Tree and ITreeDataDescriptor

2008-01-22 Thread Tracy Spratt
Wait, wait. Do you have a very good reason for using that obsolete class? E4x is much, much more functional. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hmmmbeer3 Sent: Tuesday, January 22, 2008 4:55 PM To:

RE: [flexcoders] Re: Detect AIR Application?

2008-01-22 Thread Dale Fraser
Thanks, I tried goggling this, but probably didn't phrase it correctly and didn't get far. But what is a SWC, my guess would be a complied SWF? Regards Dale Fraser http://learncf.com -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jim Hayes

RE: [flexcoders] Re: text does not appear bold in mx:Text

2008-01-22 Thread Alex Harui
Try removing the binding expression, or do the assignment in actionscript From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ilikeflex Sent: Tuesday, January 22, 2008 3:09 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: text

RE: [flexcoders] Styling List ItemRenderers

2008-01-22 Thread Alex Harui
Create a type-selector for your renderer class From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of scott.royston Sent: Tuesday, January 22, 2008 1:21 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Styling List ItemRenderers How

[flexcoders] Re: Access TWAIN scanners from Air

2008-01-22 Thread Javier de la Torre
Hi, Do you know if distributing an AIR app with artemis and handful of java classes is a complicate thing? I mean if the users will have lot od issues installing an application like that. I would love to do the UI with Flex but I need to access the scanner somehow... I wouldnt like to have to do

Re: [flexcoders] magnifying glass component

2008-01-22 Thread Sherif Abdou
i think all you need to do is use the Matrix Class and play around with the scaling option - Original Message From: Ben Marchbanks [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, January 22, 2008 4:25:48 PM Subject: [flexcoders] magnifying glass component Anybody know

Re: [flexcoders] Preserving whitespace in XML nodes

2008-01-22 Thread Dave Glasser
FTR, I found that setting XML.prettyPrinting = false fixes this, but this is not a workaround I can use. I'm pretty sure this behavior does not comply with ECMA-357, so I logged a bug: http://bugs.adobe.com/jira/secure/IssueNavigator.jspa?mode=hiderequestId=10201 --- Dave Glasser [EMAIL

Re: [flexcoders] Problems with IE and refreshing data

2008-01-22 Thread Sherif Abdou
is that a test server or online since IE has some restrictions if it is local - Original Message From: markcavins [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, January 22, 2008 4:56:04 PM Subject: [flexcoders] Problems with IE and refreshing data Hello, I have this

[flexcoders] Re: Hibernate..

2008-01-22 Thread simonjpalmer
My interpretation of FDS/LCDS is that it is not so much about performance and scalability (although its characteristics are not bad) but more about making your code simpler and thereby more robust/manageable/bug free. If you have a good dev team and a good design for the data architecture of your

RE: [flexcoders] Re: text does not appear bold in mx:Text

2008-01-22 Thread Tracy Spratt
Are you sure your markup is correct? That declarative style is hard to debug. Hard code the string first, make sure it works. I would use a function to build the htmlText, so I could see what was happening. I can definitely bold text in htmlText. Tracy

RE: [flexcoders] Re: text does not appear bold in mx:Text

2008-01-22 Thread Gordon Smith
I can't reproduce the problem. The following app renders properly for me. - Gordon ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script [Bindable] private var foo:String = Foo; /mx:Script mx:Text width=125 height=50

RE: [flexcoders] Re: Tree and ITreeDataDescriptor

2008-01-22 Thread Tracy Spratt
No, you don't, I see you are converting it to e4x XML. First, skip that step. Set resultFormat=e4x on the WebService tag. Change your test snippet: treeData:XML = Rows ... /Rows Then: //skip this var treeData:XML = new XML(ROWS.toString()); //skip this myData = new

[flexcoders] Re: Problems with IE and refreshing data

2008-01-22 Thread markcavins
It is a test server. The request makes request to the live server but it is a test server. what would the restrictions be? --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: is that a test server or online since IE has some restrictions if it is local - Original

Re: [flexcoders] Re: Problems with IE and refreshing data

2008-01-22 Thread Sherif Abdou
Ya I think, I remb reading that somewhere that IE has some weird restrictions like that if it is a test server. I would wait on someone who knows more than me - Original Message From: markcavins [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, January 22, 2008 6:59:32 PM

Re: [flexcoders] Re: Problems with IE and refreshing data

2008-01-22 Thread Sherif Abdou
off the top of my head, i know that History Managment doesn't work if it is tested locally on IE, and some other restrictions like that. It was in the Flex book where they recommended firefox so you can get results. - Original Message From: markcavins [EMAIL PROTECTED] To:

RE: [flexcoders] Re: Problems with IE and refreshing data

2008-01-22 Thread Matt Chotin
The issue is if you have a test certificate for https, not necessarily a test server. It may be that IE simply isn't attempting to hit the server. Can you try adding an additional dummy query parameter so the url changes? Also check your server to see if you can adjust the cache

  1   2   >