[flexcoders] Help!! URL Request TimeOUt inconsistencies!

2010-03-28 Thread leds usop
Hi Guys, Can someone verify if the information on the link is accurate for timeouts on AIR 1.5.x for windows and mac? http://forums.adobe.com/thread/578593?decorator=printdisplayFullThread=true Why the inconsistency? 60 mins on legacy 1.5.x in both windows and mac (then 30 secs on although

Re: [flexcoders] My itemrenderer is mercurial!!

2009-07-06 Thread leds usop
how are you setting the selection status of the checkbox? override the setter method for data, then place a default value (an if else perhaps) if the data is null, or is int's default state. --- On Mon, 7/6/09, j2me_soul j2me_s...@163.com wrote: From: j2me_soul j2me_s...@163.com Subject:

Re: [flexcoders] Flex 3 Exam Cert Question

2009-06-28 Thread leds usop
hi, i recentlly got my flex 3 with air cert and i'd say the questions on lcds are more on interacting with lcds, so you should be able to get enough info from livedocs or any good flex book that discusses lcds. As for the local database connection, that would be pertaining to AIR's

Re: [flexcoders] Re: Gradient that is vertical and horizontal!

2008-09-25 Thread leds usop
or 2 displayobjects with gradient on each, one is horizontal and one is vertical but use one as mask of the other. ^^ --- On Wed, 9/24/08, Josh McDonald [EMAIL PROTECTED] wrote: From: Josh McDonald [EMAIL PROTECTED] Subject: Re: [flexcoders] Re: Gradient that is vertical and horizontal! To:

Re: [flexcoders] Re: Data Binding to BitmapData

2008-09-25 Thread leds usop
i'd rather use ely's superimage ^^ or a subclass at that - but that's just me. --- On Thu, 9/25/08, Amy [EMAIL PROTECTED] wrote: From: Amy [EMAIL PROTECTED] Subject: [flexcoders] Re: Data Binding to BitmapData To: flexcoders@yahoogroups.com Date: Thursday, September 25, 2008, 5:00 AM ---

Re: [flexcoders] image snapshot in flex

2008-06-25 Thread leds usop
without remoting, and using string param only, encode the image as jpeg or png (depending on your requirement) . then convert it to base64 string which you can pass to the serlvet via post (or get, whatever) . Then decode at the backend accordingly as a jpeg file or png file which is you can

Re: [flexcoders] Can a 'child' tell when its parents view state changed?

2008-05-24 Thread leds usop
have you tried the added/removed events? usually hiding/showing children in viewstates using the design mode entail adding/removing the corresponding children rather than just hiding or setting the visibilities  unless you explicitly set them to be so in the source view.--- On Sun, 5/25/08, Grant

Re: [flexcoders] Why is this renderer so slow?

2008-05-24 Thread leds usop
im just wondering why you think an ordinary check box wont retain it's selected state when scrolling? can you provide an example code that does that? maybe it will be more beneficial to approach the problem using that approach. Just a thought. --- On Sun, 5/25/08, dbronk lt;[EMAIL

Re: [flexcoders] Adding several NumericSteppers = Total

2008-01-12 Thread leds usop
Here's an updated version of that code that allows you to set the maximum value during runtime and automatically compensates if the current total is greater that the maximum allowable total set. Also, this compensates for instances that a number bigger than than the maximum allowable total is

Re: [flexcoders] Adding several NumericSteppers = Total

2008-01-11 Thread leds usop
you could use repeater component with numericsteppers as children and a text box for the sum instead. But i guess what you need is something more straightforward and simple like this: ?xml version=1.0 encoding=utf-8? mx:Application creationComplete=init() xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] Re: Is there a fliping control in Flex

2007-09-28 Thread leds usop
try alex uhlmann's distortion effects based on sandy: http://weblogs.macromedia.com/auhlmann/archives/2006/11/download_distor.cfm --- hank williams [EMAIL PROTECTED] wrote: Thanks, but if you look at the link I provided you will see that they are somewhat different things. The link you

Re: [flexcoders] logic problem

2007-09-26 Thread leds usop
Having no text doesnt mean the string value is . An Empty string is different from a null or an undefined value. So i suggest throw in a check for undefined/null value as well and if you dont turst that enough, check for the length as well. Moreover, when you say goodsInAdvice.text.indexOf(/)

Re: [flexcoders] Is there a mouseOverIndex? - QUICK SOLUTION

2007-09-26 Thread leds usop
Hi Guillermo, try this: private function handleMouseEvent(e:MouseEvent):void{ trace(nav_bloque1.getChildIndex(e.target as DisplayObject)); } This way, regardless of how many buttons you add or delete and

Re: [flexcoders] DataGrid + Web Service

2007-06-09 Thread leds usop
for our case, we did the sorting at the back end - overriding the default behavior of the datagrid headers when they are clicked and then returning the pagenated data after sorting. It really is - in essence - changing the dataprovider of the datagrid during both page requests and sorting

RE: [flexcoders] Flex Component kit

2007-06-09 Thread leds usop
no. it can be placed in the mxml declaration of the component itself. --- Ronald Kinion [EMAIL PROTECTED] wrote: isn't the namespace suposed to be in the root tag? like: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml

Re: [flexcoders] Re: Flex: Modular Applications

2007-05-17 Thread leds usop
sorry for hijacking this thread but i guess this is a related question. is it possible to store loaded modules as shared objects? and if it is, what are the possible issues to consider? --- Russell Munro [EMAIL PROTECTED] wrote: I have worked a-lot with modules in recent months there is one

Re: [flexcoders] ArrayCollection problem (binding to a Datagrid)

2007-03-25 Thread leds usop
this has been addressed in a previous post. do a type check for objectproxy before assigning here: grilleTerrainsACDP = event.result.terrains.terrain; to have this: if(event.result.terrains.terrain is ObjectProxy){ var t:Array= ArrayUtil.toArray(event.result.terrains.terrain);

RE: [flexcoders] Access PIE CHART Call Outs

2007-03-08 Thread leds usop
Of leds usop Sent: Wednesday, March 07, 2007 9:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Access PIE CHART Call Outs hi all, Anyone got easy solutions to access pie chart call outs? Id like to be able to change the colors, font size etc. Or does this call for subclassing

Re: [flexcoders] ActionScript:: Determining Array Length in Multidemensional Arrays

2007-03-08 Thread leds usop
i dont know if this is really the cause of your problem, but for determining length of arrays, you use .length property .. not .length() method. If that was just typo error, can you elaborate why from the given example you 'know' you have two rows and columns? How are the data related to each

[flexcoders] CubeRotate Distortion effect in Safari

2007-03-08 Thread leds usop
HI all, I have a cube-rotating view stack with 2 views:1- a chart filter which allows data filtering and request from a servlet and, 2- a chart title screen showing additional info about the chart as well as the pagenation controls. Initial view is 2. The filter view is populated using a

[flexcoders] Access PIE CHART Call Outs

2007-03-07 Thread leds usop
hi all, Anyone got easy solutions to access pie chart call outs? Id like to be able to change the colors, font size etc. Or does this call for subclassing or data canvas drawing solution? Sucker-punch spam

Re: [flexcoders] Re: Making itemRenders call a function on the component they're in

2007-03-05 Thread leds usop
when you say 'some data' on the component, do you really mean just bits of data per se? or are there some sort of 'validating' functions in that component? Having your item renderers access data from your wrapping component does not necessarily mean 'bad practice'. It depends on how you allowed

Re: [flexcoders] Re: How does sprite listener work?

2007-03-04 Thread leds usop
the modal alert window causes your problem. When the modal Alert activates, it 'forces' your mouse to leave that sprite and hence making it think that a mouse rollOUT event took place. try this to verify: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] Making itemRenders call a function on the component they're in

2007-03-04 Thread leds usop
brute force solution would be to include a reference to the list component in the data being passed to the item renderer. there are probably other ways to do this. but Id rather have the renderer dispatch a custom event and handle that in the list component... then in the handler, call that

Re: [flexcoders] Re: Making itemRenders call a function on the component they're in

2007-03-04 Thread leds usop
oh no. not really. my bad, what i mean is, have the component containing the list handle that event. So it's just a matter of bubbling that event. and in that handler, you can call that event.. or you can even make that function itself as the event handler. --- João [EMAIL PROTECTED] wrote:

[flexcoders] HitArea of pieChart when adding call out and explode.

2007-03-02 Thread leds usop
HI all, Hi Ely, Anyone know of a way to retain the effective HitArea of a pie series after adding datatip call outs and explode? It seems that after adding perwedgeexplode and callouts, the hitarea for each wedge is dminished. Or will it be better to add the callouts as sort of annotation

Re: [flexcoders] Embedding FusionCharts in a Flex application

2007-03-01 Thread leds usop
is to call a method or two, then LocalConnection might be worth it. regards, Muzak - Original Message - From: leds usop [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, February 28, 2007 6:01 PM Subject: Re: [flexcoders] Embedding FusionCharts in a Flex application

Re: [flexcoders] Re: Result to ArrayCollection - somtimes node is single, sometimes it's an array

2007-02-28 Thread leds usop
If the result format is set to object... or not set at all (default is object), the result will be wrapped by an ObjectProxy if there's a single node. Hence Andrew's solution should do the trick. However, in my case, to ensure that I can indeed use it as an array i do:

RE: [flexcoders] Announcing FlexLib - open source flex component library

2007-02-28 Thread leds usop
Great work as always! --- Merrill, Jason [EMAIL PROTECTED] wrote: Awesome! I hope this grows into something really great. Jason Merrill Bank of America Global Technology Operations Learning Leadership Development eTools Multimedia Team

Re: [flexcoders] Embedding FusionCharts in a Flex application

2007-02-28 Thread leds usop
not directly perhaps. try using flashinterface. --- Muzak [EMAIL PROTECTED] wrote: FusionCharts are AS2. You'll be able to load a FusionChart swf into a Flex app, but you won't be able to control it from Flex though. regards, Muzak - Original Message - From: Jon Rowland

Re: [flexcoders] Re: Dynamically creating a text object

2007-02-26 Thread leds usop
Actually Tim, he already mentioned in a previous post that more than just to add a circle, he wanted to add a circle.. and rotate it to vertical. i have already suggested adding the text child directly to the canvas (main or child.. shouldnt really matter). However, i think what makes the text not

Re: [flexcoders] Re: Dynamically creating a text object

2007-02-26 Thread leds usop
sorry typo :p ...more than just to add a circle, he wanted to add text.. --- leds usop [EMAIL PROTECTED] wrote: Actually Tim, he already mentioned in a previous post that more than just to add a circle, he wanted to add a circle.. and rotate it to vertical. i have already suggested adding

Re: [flexcoders] Re: Can anyone help on getting data from a grid cell .. I know the row/column index

2007-02-26 Thread leds usop
! -leds --- leds usop [EMAIL PROTECTED] wrote: Hi listen for the itemclickevent and then use specifically ListEvent as the event type paramter of the listener then use the rowIndex and columnindex properties like so: private function test(e:ListEvent):void{ trace(e.rowIndex.toString

Re: [flexcoders] Re: Can anyone help on getting data from a grid cell .. I know the row/column index

2007-02-26 Thread leds usop
the properties are to be laid out in the datagrid. It's one of the setbacks for trying to find the item from the visual indeces p --- leds usop [EMAIL PROTECTED] wrote: OMG i just realized I just gave you the reverse of what you are asking for haha. my bad. anyway, try using datagrid's

Re: [flexcoders] Re: Accessing FLEX data from within a SWF??

2007-02-25 Thread leds usop
You cant access avm2(as2 swfs) scripts loaded within avm3 (as3 swfs --flex swfs) and vice versa. Well at least not directly. If you forcibly load an as3 swf in flash 8, certainly you will not be able to see the scripts/ vars within except perhaps the version var. Same thing goes with loading as2

Re: [flexcoders] referencing or travesing display objects from custom class

2007-02-25 Thread leds usop
you may have to override updatedisplaylist andor addchild in your thingy class. here are two ways you can try to access a child of your main app from within another child: 1- call parentDocument.mycanvas from that other class. although that will work only if that other class is an immediate

Re: [flexcoders] referencing or travesing display objects from custom class

2007-02-25 Thread leds usop
you may have to override updatedisplaylist andor addchild in your thingy class. here are two ways you can try to access a child of your main app from within another child: 1- call parentDocument.mycanvas from that other class. although that will work only if that other class is an immediate

Re: [flexcoders] Re: Accessing FLEX data from within a SWF??

2007-02-25 Thread leds usop
that would let me peer inside an AVM3 SWF? Thanks in Advance. Steve --- In flexcoders@yahoogroups.com, leds usop [EMAIL PROTECTED] wrote: You cant access avm2(as2 swfs) scripts loaded within avm3 (as3 swfs --flex swfs) and vice versa. Well at least not directly. If you forcibly

Re: [flexcoders] Dynamically creating a text object

2007-02-25 Thread leds usop
try this if you havent yet: var childCanvas: Canvas = new Canvas(); var t:Text= new Text(); t.text=this is a circle; t.x=220; t.y=140; childCanvas.graphics.lineStyle (1,

Re: [flexcoders] Dynamically creating a text object

2007-02-25 Thread leds usop
as I don't add the text children, but if I do, the canvas ends up empty. Is this something to do with Flex not being happy to vertically flip my text objects? If so, would that be a bug? Thanks for your help. Guy On 26/02/2007, at 6:39 AM, leds usop wrote: var childCanvas

Re: [flexcoders] Re: Accessing FLEX data from within a SWF??

2007-02-25 Thread leds usop
, and whether I need to do anything specific to EXPOSE them in the SWF file. Thanks, Steve --- In flexcoders@yahoogroups.com, leds usop [EMAIL PROTECTED] wrote: have you tried using FABridge or externalinterface instead? that is assuming of course swfkit supports javascript

Re: [flexcoders] CurrencyFormatter applied to LineSeries

2007-02-25 Thread leds usop
a code post will help :) if you dont mind --- marc_rossi [EMAIL PROTECTED] wrote: Hi all - I'm trying to use a LineSeries with stock prices. When I format the yField with the CurrencyFormatter the chart no longer works. It looks as though I need to create my own itemRenderer but have

Re: [flexcoders] init() getting called more than once

2007-02-24 Thread leds usop
which component are you firing the creationcomplete event from? Moreover, have you checked if you didnt call another creationcomplete triggering action within the init() function? In any case, one quick solution would be to declare a boolean tag/var (initially set to false) which you will set to

[flexcoders] ACCESS ITEM RENDERER

2007-02-24 Thread leds usop
To all those who didnt know previously, you can access a listbase (DataGridBase, List, TileBase and subclasses of those) class'/component's item renderer by: componentID.indexToItemRenderer(k).PROP=propertyvalue; where : k is the index of the item in the dataprovider represented by the

Re: [flexcoders] Invoking datagrid column sort programmatically

2007-02-24 Thread leds usop
you could actually, by subclassing the datagrid class and exposing the private method sortByColumn - the method called by header release event handler in the datagrid as class file. However, I am more inclined to sticking with adobe's private implementation of this class and do the sorting

Re: [flexcoders] Charting - create a secondSeries with Actionscript 3.0 ???

2007-02-23 Thread leds usop
a code post will help :) --- mgrayfmr [EMAIL PROTECTED] wrote: Hey Gang - Has anyone had any experience with dynamically adding a second series to a chart using actionscript 3.0 ? Using a LineChart object I have been dynamically creating new LineSeries under the linechart's series

Re: [flexcoders] Flex 2 XML manipulation question

2007-02-17 Thread leds usop
this isnt exactly a clean and optimized code, but it works. just tweak it according to your needs. It accepts both xml and xmllist. heck it will even accept any object so long as there is a length() method in it, however in that case, it will just return the original object. let me know if it

Re: [flexcoders] Flex 2 XML manipulation question

2007-02-17 Thread leds usop
a little revision to my previous post. you can also modify this to delete 'nodes' according to supplied attribute or index. this time it will certainly throw null when parameter is not XMl and XMllist; returns XMLlist if successful. I must warn you, this uses recursion tho. Some developers feel

Re: [flexcoders] AS2 to AS3 - looping over loaded SWF

2007-02-16 Thread leds usop
have you tried alex's distortion effects? there are a lot of great flips you can implement from the samples alone. although im not sure if you will run into performance issues once you deal with several movieclips. Any insight on that guys? --- thibs73 [EMAIL PROTECTED] wrote: Hi there, I am

[flexcoders] DIspatch custom event within a SIngleton's constructor.

2007-02-16 Thread leds usop
will the event fire appropriately? I have tried firing one from the singleton pattern implementation which doesnt use a hidden helper class - just like in ted's JAM: Singleton take 2(?). I was trying to dispatch a custom event right after the first instantiation of a singleton class and have it

Re: [flexcoders] HTTPService with variable number of parameter

2007-01-29 Thread leds usop
try appending your url-encoded value pair-parameters to the url property of your httpservice. or you can use URLvariable and attach it as data. Cheers! --- lruinelli [EMAIL PROTECTED] wrote: Hello, I have to call a servlet and give it a variable number of parameters, example:

Re: [flexcoders] Help with Variable ItemRenderer

2007-01-29 Thread leds usop
better do it in Actionscript. Use either the initialize or the updateComplete events to trigger your itemrenderer change... also consider that you cnt set a string as the itemrenderer like what you 'seemingly' do in mxml. you wil have to use a classfactory to be able to use the class/UIcomponent

Re: [flexcoders] Re: (Added ) Selecting datagrid row on rollover...

2007-01-29 Thread leds usop
hi jamie, try re-assigning the same 'highlight' color in the rightclick event handler. Sanjay, you will have to be specific how you intend to provide an alternative means of selecting multiple rows. If im not mistaken, dragging works - but it wont do with discontinuous selections. Hence we go

RE: [flexcoders] HTTPService with variable number of parameter

2007-01-29 Thread leds usop
Of leds usop Sent: Monday, January 29, 2007 10:12 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] HTTPService with variable number of parameter try appending your url-encoded value pair-parameters to the url property of your httpservice. or you can use URLvariable and attach

Re: [flexcoders] Re: PIVOT TABLE and CHART

2007-01-28 Thread leds usop
hi sanjay, we've started the development. anyway, will let you know once it's done.. or once im stuck hehe. email m if you are interested in a possible collaborative work. cheers! --- sanjaypmg [EMAIL PROTECTED] wrote: I am trying to do this. --- In flexcoders@yahoogroups.com, leds usop

[flexcoders] PIVOT TABLE and CHART

2007-01-24 Thread leds usop
Hi everyone, BEfore we proceed with implementing pivot table (of MS excel -- same functionality although not necessarily with drag and drop support) in Flex, we wanna know if someone else in this group has already done this( or is currently doing this)? Care to share notes, tips, etc? Any help

RE: [flexcoders] PIVOT CHART (table) .

2007-01-14 Thread leds usop
night job... From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of leds usop Sent: Thursday, January 11, 2007 11:21 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] PIVOT CHART (table) . HI All, (Especially hi

Re: [flexcoders] Need advice on which Event I should be using -

2007-01-11 Thread leds usop
you can do away with the conventional [bindable] metatag for binding your dataprovider and use getter-setter instead with a custom flexevent triggered everytime the setter is called. or just use the valuecommit event. just make sure you dont include another value-commit-triggering action (such as

Re: [flexcoders] Filters with DataGrid

2007-01-11 Thread leds usop
In addtion to that, any inputs on how to implement a pivot table feature similar to that in Excel? Sorry for hijacking your post sanjay but I believe solving one may lead to a solution to the other. THnx. --- sanjaypmg [EMAIL PROTECTED] wrote: Hi There, Is there any way to put filters

Re: [flexcoders] Paging with DataGrid??

2007-01-11 Thread leds usop
a workaround is to 'page' your source dataprovider instead taking only N number of elements at a time and passing it as the datagrid's dataprovider. If your source dataprovider is an array, you can use the slice method and set the result as the datagrid's data provider. --- sanjaypmg [EMAIL

[flexcoders] PIVOT CHART (table) .

2007-01-11 Thread leds usop
HI All, (Especially hi to Chartman Ely ahem. :)) We have a current project which requires a datagrid to have filter and pivot table capabilities on top of the sort capability. Using that custom datagrid's pivot table functionality will be based on using MS Excel's pivot table. OUr problem however

Re: [flexcoders] basic architecture question

2007-01-10 Thread leds usop
Amen to that. I had to work with a related issue using repeater. But ours involved a dynamically generated form with images which positions it's children depending on the config xml passed into it. Embed simply cannot work for the reason stated by ralf. So we simply used url's passed in by the

RE: [flexcoders] Getting a Sprite into a Flex Container?

2007-01-05 Thread leds usop
have you tried explicitly setting the height of the hbox (or whatever item renderer you are using) to equal the height of your image? Or, better yet, check out ely's datacanvas drawing component, youll see how a bitmap is used as fill there (sort of tiled but in a more customizable manner if i

Re: [flexcoders] Re: source code of Training from the Source

2007-01-05 Thread leds usop
may be he means the disc is damaged or something :) --- Jerome Clarke a.k.a sinatosk [EMAIL PROTECTED] wrote: that doesn't make sense if you bought the book, it should be on the cd what do you mean by my copy is no more usable ??? On 12/28/06, Shailesh Mangal [EMAIL PROTECTED]

[flexcoders] MERRY XMAS AND A HAPPY NEW YEAR!

2006-12-25 Thread leds usop
HAPPY HOLIDAYS TO ALL FLEXCODERS! May we have a more robust Flex framework next year and hence a more productive year for the flex developers. Amen. :) __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around

Re: [flexcoders] Repeater Control

2006-12-16 Thread leds usop
It looks like i overlooked what you really need. I thought you want elements to APPEND 2 elements (ormore) at a time. My bad. Anyway the code only requires a few changes to achieve that result. Although i really think use of repeater is not necessary unless you want to display say, 30 elements at

Re: [flexcoders] Repeater Control

2006-12-16 Thread leds usop
actually you dont realy need a repeater to do that. you can instantiate a label control everytime your timer dispatches an event instead: create new label control instances, set their text to the current xml items being read. however, you will have to handle the placement (x,y) to avoid having

Re: [flexcoders] 3D Charts for Flex 2

2006-12-16 Thread leds usop
it's a great idea. we are also looking into including 3D charts feature in the current web app we are working; on top of being able to skin them at run time based on some themes. Although it's not a priority. and before you do start, please do checkout 3d charts extension for flex at adobe.com.

RE: [flexcoders] Re: file download doesnt work?

2006-12-13 Thread leds usop
have you tried attaching event listeners to the open and complete events of your urlloader instance then tracing the MIME type of the downloaded data (for the complete event)? This way youll see if a download actually commences (on open) and if the downloaded data is decoded properly (on

Re: [flexcoders] Building workspace - lowering the time

2006-12-06 Thread leds usop
I dunno if this holds true with you guys but I noticed having a lot of application mxml in the same project folder burdens flex a lot. So im guessing when flex is 'building workspace' - one of the memory intensive task it does is checking each application in your project directory and looking for

RE: [flexcoders] Problems with a DateField as an itemRenderer/editor

2006-11-29 Thread leds usop
, it's not focusing into the datagrid as an editor. I'm wondering how I can invoke this manually? Does that make sense? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of leds usop Sent: Tuesday, November 28, 2006 11:50 AM

Re: [flexcoders] Flex Builder Debugger behavior + Firefox

2006-11-28 Thread leds usop
Ever considered using IE tab in Firefox? It's a free extension you can download and gives you the additional capability of changing your renderer (current tab and window) on top of deploying IE within a mozilla tab (showing the same page of course). --- Rick Schmitty [EMAIL PROTECTED] wrote:

Re: [flexcoders] To Adobe - new release improvements??

2006-11-28 Thread leds usop
Im not from Adobe but thanks to Matt CHotin, I have been given the oppportunity to play with the prerelease 2.01 update... They say it's not a major release but for me, the inclusion of the mx:module support/framework is one big help... think of the capability of 'breaking apart' your big apps

Re: [flexcoders] Problems with a DateField as an itemRenderer/editor

2006-11-28 Thread leds usop
Is onItemEnd a custom event listener? or do you mean onItemEditEnd? I dont recall having an 'onItemEnd' associated with Datagrid listener in any way.. please correct me if im wrong. When you use a datefield as item renderer or item editor a list control (or any drop-in item renderer/item

[flexcoders] Datefield maxYear behavior Verification

2006-11-28 Thread leds usop
I have observed (both in Flex version 2 and 2.01 PreRealease) that on a datefield (and probably datechooser control too) with navigateYear set to enabled, if the maxYear was set to the selectedDate's Year, the set maxYear value seems to be nullified. i.e., selected date is January 1, 2006, and

Re: [flexcoders] Capture URL of application Parent

2006-11-23 Thread leds usop
FlexBridge? External Interface? Or can't you just use flashvars and throw-in the necessary parameters there? or if you really want to do the parsing inside flex, pass-in the entire url as a single parameter? --- pdflibpilot [EMAIL PROTECTED] wrote: I have been able to determine the url of the

RE: [flexcoders] Minimizing File Size

2006-11-19 Thread leds usop
in relation to this topic, probably mx:module will help a lot once available. although it has already been posted that the 2.01 update will be available early next year, I cnt wait to get my hands on it. Is there any chance of getting a prerelease copy of 2.01 at this time? we are currently

RE: [flexcoders] Looking to hire a Flash/Flex developer

2006-11-08 Thread leds usop
im in asia. if telecommute is feasible, count me in too :) --- Jeff Hindman [EMAIL PROTECTED] wrote: Are you taking telecommuters ? I'm in Southern California. -- Jeff Hindman _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] encodings problem

2006-11-08 Thread leds usop
strange, i thought you can set the encoding type in the mxml header itself? just in case you havent tried that. --- Luis Eduardo [EMAIL PROTECTED] wrote: hi, my flex app talks to my servlets sending xml with á é õ characters using utf-8 and all is ok. but when i use the capital

Re: [flexcoders] Re: Minimum size of a Flex 2.0 application

2006-11-08 Thread leds usop
Yep, you will want as only for that. To make things easier for you, layout things in flex, then compile while setting the compiler to retain the generated AS files, im sure you will find a thing or two in those files to help you in your AS flash file generator. Goodluck! --- Flex Learner [EMAIL

Re: [flexcoders] Re: Minimum size of a Flex 2.0 application

2006-11-06 Thread leds usop
that is roughly the payload from the flex framework when you use the application tag. if you really want to use flex as flash-file-generator, compile an as3 swf file from flex based on the sprite class only and import only what you need. The way I understand it you mean swf loader when you say

Re: [flexcoders] Slide Show

2006-10-16 Thread leds usop
are you sure you wanna do that in flex? it's a lot lighter (filesize) if you do it in flash instead. just a suggestion. --- KP [EMAIL PROTECTED] wrote: Hi All, I want to make some slide show kind of thing which reads data , I mean source of image file from an XML file and then