[flexcoders] Re: Change Flex Editor Font Size

2008-02-18 Thread mydarkspoon
--- In flexcoders@yahoogroups.com, Shaq [EMAIL PROTECTED] wrote: Does anyone know how to change the Flex editors font size. When I'm looking at the code I would like the font to be a little smaller so I can get more code on the screen. Any ideas? Go to

[flexcoders] Complex chart application - general performance issues.

2008-02-18 Thread imjackson84
Hi, For the past few months I have been working on a fairly complex stock charting application in Flex 2, with a great deal of class extension to expand upon functionality. These features include disabling any specified time range, Google Finance-esque panning with an overview chart, zooming,

Re: [flexcoders] Re: resizing children of hdividedbox

2008-02-18 Thread Lee
hi again.. i seem to be getting deferred validation because when i call validateNow(), the components get the previous dimensions rather than the current. and short of using callLater or a timer, is there something i'm missing here? thanks again! May God bless! Kiwotsukete ^^x Lee --

[flexcoders] Re: [flexcomponents] simple renderer please help..........please review it

2008-02-18 Thread learner
yes got that ! Thanks ! On Feb 18, 2008 12:31 PM, Alex Harui [EMAIL PROTECTED] wrote: Sorry, don't have time to look it up right now, but you're probabl missing implements IListItemRenderer -- *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On

RE: [flexcoders] Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-18 Thread Mansour Raad
try mx:TraceTarget/ :-) Mansour :-) -Original Message- From: flexcoders@yahoogroups.com on behalf of Josh McDonald Sent: Sun 2/17/2008 7:13 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda

Re: [flexcoders] Re: Why upgrade to FB3?

2008-02-18 Thread Tom Chiverton
On Friday 15 Feb 2008, simonjpalmer wrote: And if you take into consideration the cost of migration of your entire codebase from one version to the next Our existing Flex 2 project worked out the box with the new SDK. In a few cases we needed to upgrade imported 4rd party libraries like

Re: [flexcoders] flex + webservices

2008-02-18 Thread Peeyush Tuli
My code is consuming dot net web services for a long time without using the file you mentioned. As far as I know you would only require the webservice endpoint url and some security policy file configuration to consume webservices. On Feb 18, 2008 10:39 AM, cool buddy [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Milestone 4 - beta - color code and formatting for code

2008-02-18 Thread Tom Chiverton
On Friday 15 Feb 2008, djhatrick wrote: Tho, i am on a mac, thanks Patrick In which case it'll be '-clean', iirc. -- Tom Chiverton Helping to augmentatively maximize eye-catching e-commerce on: http://thefalken.livejournal.com This email

Re: [flexcoders] Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-18 Thread Josh McDonald
Went with Charles, worked a treat :) BTW where can I find some actual useful info about mx:TraceTarget? On Feb 18, 2008 7:34 PM, Mansour Raad [EMAIL PROTECTED] wrote: try mx:TraceTarget/ :-) Mansour :-) -Original Message- From: flexcoders@yahoogroups.com

[flexcoders] Re: Tools to monitor flex network traffic for debugging SOAP calls

2008-02-18 Thread anupam_111181
Hello, Addition to the list : Charles Web debugging proxy http://www.xk72.com/charles/ It has a shareware license and available for free. Can also understand AMF. Regards, Anupam --- In flexcoders@yahoogroups.com, Glenn Williams [EMAIL PROTECTED] wrote: Service Capture.

Re: [flexcoders] Re: Tree nodes expansion

2008-02-18 Thread Tom Preet
Hi, Thanks for ur reply.. I am having some doubt where can I have to call Try TreeForm.updateList(); whethere click function for Tree node or some where else.. can you lnform me .. Thanks, Tomt On 2/18/08, Rafael Faria [EMAIL PROTECTED] wrote: Try TreeForm.updateList(); Raf --- In

Re: [flexcoders] Implementing Office 2007 menus

2008-02-18 Thread Tom Chiverton
On Friday 15 Feb 2008, Samuel Neff wrote: you were not aware, you need to license the UI from MS before implementing it yourself. They're kidding right ? A licence to use a tab navigator containing a TileList of Button ? Yeah, right... -- Tom Chiverton Helping to widespreadedly grow seamless

[flexcoders] Container scaling and child icons

2008-02-18 Thread polestar11
Hi there I have a set of linkbuttons within a container. These linkbuttons have icon images that I want to maintain their size when the container scales. Is there any way to easily do this? Cheers Tracy

[flexcoders] link asdoc documentation for classes in swc to have F1 help in FlexBuilder

2008-02-18 Thread cubrip
Hi, Is it possible to link somehow the classes of an own library with their documentation in an swc to be able to open help for this classes with F1 in flexbuilder? cheers, Christoph

Re: [flexcoders] Editable DataGrid - is there such as thing?

2008-02-18 Thread Tom Chiverton
On Saturday 16 Feb 2008, gongxian wrote: Very interesting if Adobe only intended the DataGrid for display, I doubt that's true, otherwise why give it all the editing support bits'n'bobs ? -- Tom Chiverton Helping to vitalistically industrialize global mindshares on:

Re: [flexcoders] Stop Imports from disappearing

2008-02-18 Thread Tom Chiverton
On Saturday 16 Feb 2008, Sherif Abdou wrote: How do i stop flex from organizing my imports. I have an include file and it uses CSSStyleDecleration and StyleManager and everytime I compile the main file just removes the imports for these two even though they are needed. THanks Builder 2 ? Have

Re: [flexcoders] Re: Extending DateField...

2008-02-18 Thread Sherif Abdou
i would just use getters/setters i think that is the only way public function set myProperty(value:Object):void{ textInput.someProperty=value; } - Original Message From: aceoohay [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 18, 2008 5:18:42 PM Subject:

[flexcoders] Re: design view is empty

2008-02-18 Thread jack_freud
No, that wasn't it. After a bunch of reducing, I figured out that if the source property of an image control was a full URL (http://localhost...etc) it freaked out Flex Builder to the point that it would display nothing in Design View and not show any errors either. As soon as I took out the

Re: [flexcoders] Re: Extending Tree component

2008-02-18 Thread Sherif Abdou
off the flex documentation * pBecause of the way data to a Tree control is structured, * the Tree control handles drag and drop differently from the other list-based controls. * For the Tree control, the event handler for the codedragDrop/code event * only performs an action when you move or

[flexcoders] Re: Extending Tree component

2008-02-18 Thread Rafael Faria
I read that too but the thing is i need to perform an action after i drop the element, not ondrop. This text suggest that if i'm draging from one tree control to another i should use dragcomplete but extending the tree component, i add the following line to the constructor

[flexcoders] on validateNow() and previous values

2008-02-18 Thread callistachan
hi, since the last post i made on my previous thread was not answered, i'll post the last issue i got :) given roughly (in my mxml file): hdividedbox dividerRelease=some_function() panel id=panel1 width=65% height=100% canvas id=canvas1 panel id=child_1 / ... panel id=child_n / /canvas /panel

Re: [flexcoders] on validateNow() and previous values

2008-02-18 Thread Sherif Abdou
why are we calling validate now? and if you dont want scroll in the canvas just turn them off and the panel should handle them - Original Message From: callistachan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 18, 2008 11:03:20 PM Subject: [flexcoders] on

[flexcoders] Re: Tree Branch???

2008-02-18 Thread xmwang1982
Thanks Raf, However, what I need is something called isBranchFunction, in which we can set isBranch property base on e.g. node name. Thanks. --- In flexcoders@yahoogroups.com, Rafael Faria [EMAIL PROTECTED] wrote: actually you can define a function to labelFunction. Check

[flexcoders] Menu direction: layout submenus to the left instead of right ?

2008-02-18 Thread Arpit Mathur
I have a popup button on the right extreme of an AIR application. Its menu is a 2/3 submenu level deep. So right now when I rollover a menuitem, its submenu opens on top of it since there is no flash player canvas to the right of the menu. Is there a way to get the submenus to open to the left

Re: [flexcoders] on validateNow() and previous values

2008-02-18 Thread Lee
it's not that... when the hdividedbox's divider gets dragged, the child component should follow and resize but since i'm not using percentage for width and height in the child component (due to computation needs), it doesn't follow suit and i have to force the component's dimension to refresh

[flexcoders] Required property not toggling off in form item.

2008-02-18 Thread luvfotography
I toggle the 'required='true' property on a text form item, and the red asterisk disappears, yet the field is highlighted in RED and acts as though required=true is still applied. Here is my code (click on 'Forget your pw? to recreate the error.) I'm using Flex V3. thanks, ?xml version=1.0

[flexcoders] Re: Extending Tree component

2008-02-18 Thread Rafael Faria
How can i get the Tree control i'm dropping at the DragComplete? raf --- In flexcoders@yahoogroups.com, Rafael Faria [EMAIL PROTECTED] wrote: I read that too but the thing is i need to perform an action after i drop the element, not ondrop. This text suggest that if i'm draging from one tree

RE: [flexcoders] Alternate row color of DataGridColumn

2008-02-18 Thread Alex Harui
Do you have a picture of what you want? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Danish Tehseen Sent: Monday, February 18, 2008 6:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Alternate row color of DataGridColumn

RE: [flexcoders] trouble passing events between modules

2008-02-18 Thread Alex Harui
Probably not. That sounds like the shared code issue described in the modules preso on my blog (blogs.adobe.com/aharui) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ninja_gerbils Sent: Monday, February 18, 2008 9:25 AM To:

[flexcoders] Grouping Data - need some help

2008-02-18 Thread reflexactions
I have a flat data array with the field key and parentKey I am using a GroupedCollection in a ADG. I have set the GC groupingField to be parentKey This group everything by parenKey in a simple fashion but there doesnt seem to be a way to connect parentKey and key together so that it nests the

Re: [flexcoders] on validateNow() and previous values (w/ image links)

2008-02-18 Thread Lee
i just noticed, i'm sorry . image1 - http://img91.imageshack.us/img91/9453/99384705qi7.png image2 - http://img156.imageshack.us/img156/9550/14060237he7.png image3 - http://img406.imageshack.us/img406/1728/46939852se7.png thanks sherif... May God bless! Kiwotsukete ^^x Lee -- Y!M :

Re: [flexcoders] on validateNow() and previous values (w/ image links)

2008-02-18 Thread Lee
i've uploaded some images (which i will have to take down later on...) to demonstrate what i mean... really hoping for help... thanks! image1 (please click here) -- this is the initial state image2 (please click here) -- first drag. you will notice that the panel inside has not resized...

Re: [flexcoders] on validateNow() and previous values (w/ image links)

2008-02-18 Thread Sherif Abdou
where is the link? - Original Message From: Lee [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 18, 2008 11:54:17 PM Subject: Re: [flexcoders] on validateNow() and previous values (w/ image links) i've uploaded some images (which i will have to take down later

RE: [flexcoders] Swfloader event

2008-02-18 Thread Alex Harui
If you publish for Player 9, you can just send and event. Otherwise you have to use localconnection From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of a. Sent: Friday, February 15, 2008 6:53 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] why is measureHeight in ApplicationBackground 8?

2008-02-18 Thread Sherif Abdou
in import mx.skins.halo.ApplicationBackground; /** * @private */ override public function get measuredHeight():Number { return 8; } why 8? or where did that number come from. Thanks Be a better

Re: [flexcoders] Re: passing variables between two consecutive flex applications

2008-02-18 Thread yiğit boyar
i tried shared objects but i could not make it work between two applications, any example ? extre thing to do ? On Feb 18, 2008 5:28 PM, Ralf Bokelberg [EMAIL PROTECTED] wrote: Those are your only options. Beside SharedObjects, which is the easiest option i guess. -- Ralf Bokelberg

[flexcoders] Re: Tools to monitor flex network traffic for debugging SOAP calls and responses

2008-02-18 Thread Mykola
Hi Josh, Have you tried using tcpdump? It is an open source tool that is easy to use to capture IP traffic on a network. It works on Mac. I've been using it for debugging my SOAP Web services. Here is a quick info that might be helpful:

[flexcoders] Fixed Price Contract in Flex with a DataGrid - I never would!

2008-02-18 Thread mr_j_harris
You may have seen some of my postings here, concerning my troubles with mx:DataGrid They've changed up somewhat, now I can produce an RTE in my application: infinite-type UI loops 'and the like' by, say, merely clicking on an empty row below the row that I added via drag-drop. It's like, I

[flexcoders] mouse api - displayobject

2008-02-18 Thread dsds99
Without explicitly writing an eventListener for my visual objects .Is there a function that outputs what display objects are under the mouse? I thought I read that somewhere...

[flexcoders] how do I get displayobjects under mouse

2008-02-18 Thread dsds99
Was wondering if there is a function available in as3 Like Mouse.getObjects or something that will return a list of displayobjects that is currently under the mouse..hmmm

Re: [flexcoders] Complex chart application - general performance issues.

2008-02-18 Thread Jim Cheng
Hi Iain, I've been working a project quite similar to yours for a while now have encountered the same issues, particularly when handling large data sets (e.g. 1000+ items) with the Adobe Flex charting components, even if only a small subset is being displayed. The core performance issue that

[flexcoders] Multiple popups in flex application

2008-02-18 Thread Danish Tehseen
Is it possible to open multiple popups from different modules, without bluring the background? i.e. non-modal popups. Danish Looking for last minute shopping deals? Find them fast with Yahoo! Search.

[flexcoders] Re: Alternate row color of DataGridColumn

2008-02-18 Thread danish909
Alex Thanks for your response. You can find the image at the following link. http://i266.photobucket.com/albums/ii270/m_javed/example.jpg Danish --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Do you have a picture of what you want?

[flexcoders] Flex Camp

2008-02-18 Thread alpks65
Adobe and Metro Technology Centers will host an Adobe Flex camp in Oklahoma City on March 13. I need presenters for the camp sessions. Ryan Stewart from Adobe will be on hand but could use other Flex developers to present their projects built using Flex and AIR. If you would be interested in

[flexcoders] Re: Alternate row color of DataGridColumn

2008-02-18 Thread danish909
Alex Thanks for your response. You can find the image at the following url. http://i266.photobucket.com/albums/ii270/m_javed/example.jpg Danish --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Do you have a picture of what you want?

Re: [flexcoders] Multiple popups in flex application

2008-02-18 Thread Peeyush Tuli
Yes that is possible. I assume by modules you mean visual components in an application. Use PopUpManager.addPopUp for that. ~Peeyush On Feb 19, 2008 3:23 AM, Danish Tehseen [EMAIL PROTECTED] wrote: Is it possible to open multiple popups from different modules, without bluring the

RE: [flexcoders] mouse api - displayobject

2008-02-18 Thread Gordon Smith
DisplayObjectContainer has a getObjectsUnderPoint() method. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dsds99 Sent: Monday, February 18, 2008 9:46 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Container scaling and child icons

2008-02-18 Thread polestar11
--- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: set the width and height property on them I do already set the width height of the linkbuttons, but they would still automatically scale when being included in a parent container that scales. There seems to be no icon

[flexcoders] Localized library

2008-02-18 Thread M.Javed
Hi, First of all thanks for the replies on CSS post which were really helpful. Iam currently developing a library which i want to be localized and based on the localChain property of main application it should display the localized string accordingly. The problem is that it works fine in case