Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread Angelo Anolin
Hi Tracy, Apologies but I am quite new with Flex. Here are my codes: ?xml version=1.0 encoding=utf-8? layout=vertical backgroundGradientColors=[#FFCC00, #993300] horizontalAlign=left mx:Script ![CDATA[ import mx.controls.Alert; import

Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread Angelo Anolin
Hi Mark, I cannot seem to get your code working for me.. I am getting this error: Access of Undefined Property ObjectUtil.. I am trying to simply copy the function which you have posted. Any further advise? From: markgoldin_2000 markgoldin_2...@yahoo.com

RE: [flexcoders] Re: Embedding fonts dynamically...

2009-05-22 Thread Alex Harui
You shouldn't need to unregister. We use weak references. I'm guessing that something else is preventing the module from unloading. Try using the profiler and see what is holding onto the module Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog:

[flexcoders] Re: one to one chat

2009-05-22 Thread arieljake
http://labs.adobe.com/technologies/stratus/ --- In flexcoders@yahoogroups.com, Pedro Sena sena.pe...@... wrote: On the other hand I would recommend you GraniteDS IMHO its easier than BlazeDS Make your try On Thu, May 21, 2009 at 4:20 PM, valdhor valdhorli...@...wrote:

[flexcoders] Re: Flash to JPG

2009-05-22 Thread halfbaked11704
Hi! thank you for your tip. I'll try this one. --- In flexcoders@yahoogroups.com, filipevirginio filipetor...@... wrote: Hi, you can use ImageSnapshot class: http://livedocs.adobe.com/flex/3/langref/mx/graphics/ImageSnapshot.html --- In flexcoders@yahoogroups.com, halfbaked11704

[flexcoders] Getting data out of a DataGrid...

2009-05-22 Thread laurence5905
Ok, given the following: mx:DataGrid id=membersListDG dataProvider={membersList} itemClick=membersListDGItemClickHandler(event); mx:columns mx:DataGridColumn headerText=Last Name dataField=last_name width=80/ mx:DataGridColumn headerText=First Name dataField=first_name

[flexcoders] Formatting my messages on this list...

2009-05-22 Thread laurence5905
Why is it, every single time I post a message with some code in it, the formatting is always removed? All those tabs and spaces I have in there to make my code look halfway decent are all gone when the message is posted. Anyone know how to stop the formatting from being removed like that?

[flexcoders] Problem converting Flex app to AIR

2009-05-22 Thread reflexactions
Ok the original web based application uses a lot of RSL/modules launched from a central 'desktop'. We converted this to AIR and can launch the application and display the 'desktop'. Our problem is when we try to pop up a window. These are TitleWindow's that originally were loaded via

[flexcoders] Re: Formatting my messages on this list...

2009-05-22 Thread Cato Paus
Hi, this is not a solution for your question,but if you replay from the forum with the Rich-Text Editor that still are in beta, works almost. --- In flexcoders@yahoogroups.com, laurence5905 lmacne...@... wrote: Why is it, every single time I post a message with some code in it, the

[flexcoders] localized parseFloat

2009-05-22 Thread thomas parquier
Hi, Couldn't parseFloat() use the SharedResources properties to parse localized strings ? thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056

[flexcoders] Re: Problem converting Flex app to AIR

2009-05-22 Thread reflexactions
Never mind, I figured it out. I was just being dumb and blind... --- In flexcoders@yahoogroups.com, reflexactions reflexacti...@... wrote: Ok the original web based application uses a lot of RSL/modules launched from a central 'desktop'. We converted this to AIR and can launch the

Re: [flexcoders] Pb With Falsh Player 10

2009-05-22 Thread Stephane Guyot
Christophe, maybe user-initiated action read that : http://www.adobe.com/devnet/flashplayer/articles/ fplayer10_uia_requirements.html HTH, Stephane Le 20 mai 09 à 10:54, christophe_jacquelin a écrit : Hello, I have an upload component that running well with Flash Player 9 and

[flexcoders] Remote Service fails with IE8 - NetConnection.Call.Failed: HTTP: Status 200

2009-05-22 Thread t_varada
Hi Flex experts, Once our clients upgrade to IE8 from IE7 the Flex remote service fails with the following exception, The weird thing is HTTP status 200 stands for successful request then why should it fail? Also tried adding add-no-cache-headers in services-config.xml still no use. I really

Re: [flexcoders] Flex Obfuscation -- WITH MODULES

2009-05-22 Thread Marvin Froeder
Hey, http://nitrolm.com/nitro-lm-lite http://nitrolm.com/nitro-lm-liteIt is not exactly obfuscation, is encryption VELO On Thu, May 21, 2009 at 8:52 PM, Raheen M Shabbazz raheen_m_shabb...@yahoo.com wrote: Hello All, Has anyone found an obfuscation application that works well with a

[flexcoders] Re: Ctrl click in combobox

2009-05-22 Thread arnab.s...@rocketmail.com
Listen to MouseEvent, there you'l find property MouseEvent .controlKey to know ctrl is press or not!! --- In flexcoders@yahoogroups.com, lampei lam...@... wrote: Until recently, I did not know that you could reset the combobox back to the prompt value by ctrl-clicking the value in the

[flexcoders] Re: Scrolling a text in text input when textalign is set to right

2009-05-22 Thread valdhor
You are probably going to have to use the Text Layout Framework in Gumbo. This thread may help: http://forums.adobe.com/thread/232706 Or you could try this: http://www.arabicode.com/en/flaraby/as3/flex/ HTH Steve --- In flexcoders@yahoogroups.com, Rohit Sharma rohit.sharma1...@...

[flexcoders] Re: Getting data out of a DataGrid...

2009-05-22 Thread valdhor
Actually, you do know the name of the field. Try this... event.currentTarget.selectedItem[_regCodeVO.validation_field] HTH Steve --- In flexcoders@yahoogroups.com, laurence5905 lmacne...@... wrote: Ok, given the following: mx:DataGrid id=membersListDG dataProvider={membersList}

[flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread markgoldin_2000
How about import.utils.ObjectUtil; --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Hi Mark, I cannot seem to get your code working for me.. I am getting this error: Access of Undefined Property ObjectUtil.. I am trying to simply copy the function which you

[flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread markgoldin_2000
Of cource I meant: import mx.utils.ObjectUtil; --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... wrote: How about import.utils.ObjectUtil; --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_anolin@ wrote: Hi Mark, I cannot seem to get your code working for

[flexcoders] Re: Still more problems with DataGrid

2009-05-22 Thread Amy
--- In flexcoders@yahoogroups.com, Laurence MacNeill lmacne...@... wrote: As I add and delete items from my DataGrid's dataProvider (an ArrayCollection), my custom ItemRenderer starts messing things up. It remembers values from previous data that was there, but got deleted. But the weird

[flexcoders] SWFLoader showing images originally off the 'canvas'

2009-05-22 Thread twcrone70
In Flex I am trying to show examples of SWFs that run on portable devices in FlashLite. I am able to open them in a Flex control (HBox, TitleWindow etc.) and pass necessariy parameters but some images that are normally off the 'canvas' or 'stage' for the flash SWFs are showing up outside the

Re: [flexcoders] SWFLoader showing images originally off the 'canvas'

2009-05-22 Thread Clint Tredway
Use a canvas as a mask on the swf loader and that should work. On Fri, May 22, 2009 at 9:20 AM, twcrone70 twcron...@yahoo.com wrote: In Flex I am trying to show examples of SWFs that run on portable devices in FlashLite. I am able to open them in a Flex control (HBox, TitleWindow etc.) and

Re: [flexcoders] Re: simple array?

2009-05-22 Thread Charles Parcell
Why even have the Array aspect in the second example? It stands as a pointless container for what we are seeing it used for. Unless there will be some additional items added to it that we have not seen yet. I just feel the need to point that out. :) Charles P. On Thu, May 21, 2009 at 3:49 PM,

Re: [flexcoders] Re: simple array?

2009-05-22 Thread Charles Parcell
Additionally, utilizing a loop to locate an item can eat up cycles if the list of codes gets to be large. Granted that in the case of this example looping 3 or even 10 items is likely not going to be an issue in anyway. Something to think about if the application of this example is used

Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread Angelo Anolin
Hi Mark, Thanks for your patience. I did write the import code for the ObjectUtil class. But I still cannot get things properly. In your code, you have this.. return ObjectUtil.numericC ompare(itemA[ TrackTotal. col], itemB[TrackTotal. col]); my dataGrid's ID is MydataGrid what does the

[flexcoders] Re: How to optimise SWC to its minimal size?

2009-05-22 Thread lytvynyuk
Any ideas? Hey, Flex gurus I know you are here! :)

[flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread markgoldin_2000
I use col as a reference to the clicked column's dataField retrieved via column collection. Just use same as mine code. --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Hi Mark, Thanks for your patience. I did write the import code for the ObjectUtil class. But

Re: [flexcoders] Re: How to optimise SWC to its minimal size?

2009-05-22 Thread Alan Klement
Well, you mention that classes that are used directly or indirectly are Œgarbage¹, but it¹s being used so they aren¹t garbage If they were pulled in, then it¹s more than likely that what ever you are trying to extract, depends on those Œgarbage¹ classes. On 5/22/09 11:13 AM, lytvynyuk

[flexcoders] Re: LineChart Magic

2009-05-22 Thread jdizowat
So I whipped out my wand and wrote a custom LineSegmentRenderer which extends ShadowLineRenderer. I used updateDisplayList to loop through the lineSeriesItems to draw my custom line. What I'm charting is surgical cases by day in a given month. What I wanted to show was a linechart that had

Re: [flexcoders] Re: How to optimise SWC to its minimal size?

2009-05-22 Thread Ian Thomas
You can use the 'externs' command-line option to the Flex compiler to tell Flex to exclude specific classes - as long as you're sure that your code _will_ have access to them at runtime. Documentation here: http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_14.html HTH, Ian

RE: [flexcoders] Re: LineChart Magic

2009-05-22 Thread Jake Churchill
Nice. I don't see a lot of charting examples but this is nice because I'm about to start a project plotting multiple items dealing with commodities and futures and I'm sure I'll need to customize it quite a bit. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154

RE: [flexcoders] localized parseFloat

2009-05-22 Thread Alex Harui
parseFloat is a player API. I think it will localize with the OS language. There might be third-party localizable parseFloat equivalents somewhere. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

[flexcoders] Local compile issue on Flex Builder 3 on OSX Leopard

2009-05-22 Thread Ryan
I am trying to help my boss set up a Flex project which works fine for me. He is on Mac, I am on PC. He can't compile in our properties files, even though he has them on his computer. I access these files via a compiler variable pointing to an absolute path on my machine, ie:

[flexcoders] Multi-column drop-in checkbox renderer

2009-05-22 Thread Richard Rodseth
I am creating a CheckBox item renderer (redacted code at the end of this post). Using the static methods that return a ClassFactory lets me tell the renderer which column it applies to, as follows: itemRenderer={PermissionCheckBox.factory('columnName')} The renderer dispatches a bubbling event,

[flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread valdhor
This is how I would do it.. mx:DataGrid id=MydataGrid creationComplete=getGridData(); width=100% height=100% visible=false dataProvider={_xmlData.*} itemClick=getDataItems(); mx:columns mx:DataGridColumn headerText=ID dataField=SupplierID width=30 sortCompareFunction=IDCompare/

RE: [flexcoders] Multi-column drop-in checkbox renderer

2009-05-22 Thread Alex Harui
Sounds like a lot of work and I'm not sure I quite follow, but CheckBox already implements IDropInListItemRenderer and will set its check mark based on the Boolean value of the dataField in the data item Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog:

Re: [flexcoders] absolute paths for mx:script source

2009-05-22 Thread Manish Jethani
On Fri, May 22, 2009 at 5:32 AM, coder3 rrhu...@hotmail.com wrote: I wonder if there is a way to add absolute path to mx:script for example, my file is under src/app1/app1.mxml. and the as file is src/common/asfile.as [...] i tried to use        mx:Script source=/common/asfile.as / but

[flexcoders] NEED more than 15 menu item in Context Menu ????

2009-05-22 Thread Dharmendra Chauhan
Hi, I really need to have more than 15 menu item displayed on Context Menu. I desperately need some workaround or ideas to achieve this My client has invested thousands of dollar in Flex Project, he definitely need more than 15 menu item.If this project failed , client will NEVER think to

[flexcoders] session.getAttribute(somekey) returning NULL in SessionDestroyed

2009-05-22 Thread Dharmendra Chauhan
Hi all, session.getAttribute(somekey) is returning null in SessionDestroyed() method of flex listener. Below are the steps I am following 1) I am adding flexLister in contextInitialized method of ServletContextListener FlexSession.addSessionCreateListener(myListener) 2) In

Re: [flexcoders] Ctrl click in combobox

2009-05-22 Thread Manish Jethani
On Fri, May 22, 2009 at 5:47 AM, lampei lam...@gmail.com wrote: Until recently, I did not know that you could reset the combobox back to the prompt value by ctrl-clicking the value in the combobox dropdown.  However, as most people don't know that this is a possiblity with the combobox, I'm

RE: [flexcoders] NEED more than 15 menu item in Context Menu ????

2009-05-22 Thread Yves Riel
What about intercepting the right-click at the browser level and displaying your own contextual menu? However, you might have some browser incompatibility to look at. http://blog.another-d-mention.ro/programming/right-click-and-custom-cont ext-menu-in-flash-flex/

[flexcoders] Access FormItem child

2009-05-22 Thread markgoldin_2000
If I have a FormItem like this: ?xml version=1.0 encoding=utf-8? mx:FormItem xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=100% direction=horizontal mx:TextInput id=username/ mx:Button width=22 icon=@Embed(source='../assets/find.png') id=find

[flexcoders] Waiting for Flash Player to connect to the debugger

2009-05-22 Thread luvfotography
I can't run the debugger today I'm getting: Launching: Waiting for Flash Player to connect to the debugger yesterday all was working fine, never seen this error before, Run mode takes forever now, the following 5 line flex file takes 16 seconds to show up in the browser. Yesterday, less

Re: [flexcoders] localized parseFloat

2009-05-22 Thread Manish Jethani
On Fri, May 22, 2009 at 2:14 PM, thomas parquier mailingli...@web-attitude.fr wrote: Couldn't parseFloat() use the SharedResources properties to parse localized strings ? If you intend to parse a string like 1.234,56, I think you'll have to run it through a NumberFormatter first (1234.56)

[flexcoders] Re: Waiting for Flash Player to connect to the debugger

2009-05-22 Thread a.scavarelli
Hmm, I often get problems like this when, for some reason, another instance of the debugger/player is running. Try making sure you are always closing each instance properly after running your program. Also check out your task manager to see if there are any running in the background. Hopefully

Re: [flexcoders] Re: Waiting for Flash Player to connect to the debugger

2009-05-22 Thread Nate Beck
Did you install the Debug version of Flash Player? http://www.adobe.com/support/flashplayer/downloads.html Under this section: Adobe Flash Player 10 — Debugger Versions (aka debug players or content debuggers) On Fri, May 22, 2009 at 1:46 PM, a.scavarelli a.scavare...@yahoo.comwrote: Hmm, I

[flexcoders] BindingUtils question.

2009-05-22 Thread markflex2007
I read a demo BindingUtils.bindProperty(dogNameText, text, myDog, name) dogNameText is textInput and myDog is a object how to I bind dogNameText's Texr property to one variable like myString BindingUtils.bindProperty(dogNameText, text, myString) give me error. Please give me a idea how to do

Re: [flexcoders] Re: Waiting for Flash Player to connect to the debugger

2009-05-22 Thread Manish Jethani
On Sat, May 23, 2009 at 2:16 AM, a.scavarelli a.scavare...@yahoo.com wrote: Hmm, I often get problems like this when, for some reason, another instance of the debugger/player is running. Try making sure you are always closing each instance properly after running your program. Also check out

Re: [flexcoders] localized parseFloat

2009-05-22 Thread thomas parquier
Manish, NumberFormatter input is a number, whereas parsing should occur on strings already localized (1 234,56=1234.56). thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822

Re: [flexcoders] Multi-column drop-in checkbox renderer

2009-05-22 Thread Richard Rodseth
In that case, I would expect my subclass of CheckBox to do the same. I've added a super call as follows: override public function set data(value:Object):void { super.data = value; _row = value as MyRow; } and set the dataField on the column.

Re: [flexcoders] BindingUtils question.

2009-05-22 Thread Rajan Jain
Try using BindingUtils.bindSetter and create function. From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Friday, May 22, 2009 5:07:21 PM Subject: [flexcoders] BindingUtils question. I read a demo BindingUtils. bindProperty(

Re: [flexcoders] localized parseFloat

2009-05-22 Thread Manish Jethani
On Sat, May 23, 2009 at 2:52 AM, thomas parquier mailingli...@web-attitude.fr wrote: NumberFormatter input is a number, whereas parsing should occur on strings already localized (1 234,56=1234.56). That's not true. You can pass a string to NumberFormatter. See this example: var

[flexcoders] Re: BindingUtils question.

2009-05-22 Thread Marius-Remus Mate
Have a look here -- http://blogu.lu/mrm/2009/01/data-binding-and-actionscript-3/ --- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: I read a demo BindingUtils.bindProperty(dogNameText, text, myDog, name) dogNameText is textInput and myDog is a object how to I bind

Re: [flexcoders] localized parseFloat

2009-05-22 Thread thomas parquier
Thanks you Manish. thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056 2009/5/22 Manish Jethani manish.jeth...@gmail.com On Sat, May 23, 2009 at 2:52 AM, thomas

Re: [flexcoders] absolute paths for mx:script source

2009-05-22 Thread coder3
is there a way or a key to go to the project root directory relatively? thanks C Manish Jethani wrote: On Fri, May 22, 2009 at 5:32 AM, coder3 rrhu...@hotmail.com wrote: I wonder if there is a way to add absolute path to mx:script for example, my file is under src/app1/app1.mxml.

Re: [flexcoders] absolute paths for mx:script source

2009-05-22 Thread Manish Jethani
On Sat, May 23, 2009 at 3:45 AM, coder3 rrhu...@hotmail.com wrote: is there a way or a key to go to the project root directory relatively? The Flex compiler (mxmlc) doesn't know about projects. If Flex Builder has any special variables like ${PROJECT_ROOT} or such settings, I'm not aware of

[flexcoders] Re: simple array?

2009-05-22 Thread Eric Cooper
Two good points. I used an Array, as I wrote, to try to show how Jason might have done what he had initially intended using arrays. I didn't mean to suggest that that's how it would be best done. Sorry for confusion. I guess I just like the similarity of arrays and objects - something that is

[flexcoders] Problem importing classes with D.eval

2009-05-22 Thread Alexandre Demeure
Hi, I write you again because I haven't manage to use D.importClass(Label); However, by using personnal classes, I was able to indirectly create labels, here is the code: I have try to create a personal class which inerit of Label class or which have a Label property. The two working examples

[flexcoders] Re: simple array?

2009-05-22 Thread Eric Cooper
Two good points. I used an Array, as I wrote, to try to show how Jason might have done what he had initially intended using arrays. I didn't mean to suggest that that's how it would be best done. Sorry for confusion. I guess I just like the similarity of arrays and objects - something that is not

Re: [flexcoders] Access FormItem child

2009-05-22 Thread Bob Wohl
Actionscript. On Fri, May 22, 2009 at 1:01 PM, markgoldin_2000 markgoldin_2...@yahoo.com wrote: If I have a FormItem like this: ?xml version=1.0 encoding=utf-8? mx:FormItem xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=100% direction=horizontal mx:TextInput id=username/

[flexcoders] AdvancedDataGrid Server Side Sorting

2009-05-22 Thread mutyonok
Hi. I have AdvancedDataGrid with server side pagination and sorting. The thing I cannot implement is showing sort triangles in datagrid headers. The only way i've found is manually listen SORT event and set collection.sort property of my dataProvider - but then when I change collection.source

[flexcoders] Dynamic Org Chart - Needed

2009-05-22 Thread caliventures
Hi. New to flexcoders. Not a developer. Talking to a guy from Adobe who said I should post here. I'm trying to figure out how to create an Org Chart/Tree Chart app similar to academia.edu/geni.com. Cristophe said that flex/actionscript would be the way to go, and said I might find

[flexcoders] Re: Multiple filters on datagrid

2009-05-22 Thread kaushal.shah05
I'm also trying something similar, but with various components: http://s256908546.onlinehome.us/datagrid/am_post.html I can't get the filtering to work correctly. --- In flexcoders@yahoogroups.com, alinmircea_s alinmirce...@... wrote: From what I understand, is this what you're looking for?

[flexcoders] Filtering multiple conditions in an arraycollection

2009-05-22 Thread kaushal.shah05
I want to filter a datagrid by multiple criteria. I would like to have several types of components (checkbox, slider, textfield, etc) to filter, each one set to filter a particular datafield (asset_status, serial, tagsee data structure) in the arraycollection. The filterfunction

[flexcoders] Vector issues when using child application domains

2009-05-22 Thread Gordon Hirsch
If I use a SWFLoader to load two sub-applications in child application domains (loadForCompatibility=false), and if each sub-application defines a type of the same name, Thing, then it doesn't seem possible to use the type Vector.Thing in both sub-applications. (The Thing type is *not* known

[flexcoders] Flash Skins Vs Css Vs Programatic Skin?? (All about performance)

2009-05-22 Thread Gus
Hi all!! each of the techniques has its differences, but which one of these is more efficient in performance when styling an application?? GUS

[flexcoders] Tile and 100% width

2009-05-22 Thread Maciek Sakrejda
If I create a Tile element with a percent-based width (and leave the height unset), it uses some weird method to determine the height, and it's typically two to three times as tall as it needs to be. Any suggestions for how to work around this? I'd like the tile to be 100% the width of its parent

Re: [flexcoders] Re: simple array?

2009-05-22 Thread Charles Parcell
Not that I think it is the best way, but the way I had originally suggested (which seemed to get over looked) was as follows. var records:Object = { AC: Remember to reset the station address., RN: Remember to reset the station expiration date., CP: Remember to contact contractor to

[flexcoders] Re: Ctrl click in combobox

2009-05-22 Thread lampei
Argh! I was looking in the wrong component :) I should've been checking out the dropdown (I tried setting some listeners on this, but was unsuccessful), but I was looking in the ComboBox. Thanks for the pointer and the code. Looks like it will do the job. --- In flexcoders@yahoogroups.com,

[flexcoders] Gumbo - new namespaces - mx:Script error

2009-05-22 Thread Mic
Assuming that the latest namespace changes point to this standard: ?xml version=1.0 encoding=utf-8? s:Application name=GumboApp xmlns:fx=http://ns.adobe.com/mxml/2009; xmlns:s=library://ns.adobe.com/flex/spark xmlns:mx=library://ns.adobe.com/flex/halo mx:Script

[flexcoders] FlexBuilder design-mode wierdness...

2009-05-22 Thread Laurence MacNeill
Ok, all of the sudden one of my components can't be rendered in Design Mode anymore... I have no clue why... Is there some sort of size-restriction? Like, the length of the file can't be longer than a certain length or Design Mode won't work? That's the only thing I can think of. It's just

[flexcoders] Form validation in Flex?

2009-05-22 Thread markflex2007
Hi, I have many forms that need do form validation. Do you think if I can have a common Flex component to do all the form validation. Thanks for your help. Mark

[flexcoders] Re: NEED more than 15 menu item in Context Menu ????

2009-05-22 Thread Dharmendra Chauhan
Thanks Lot for the Reply. My FLex Application is not running inside browser , It is running inside DOt Net container as a Active X control. the idea you suggested required default context menu to be hidden ..is it possible to hide it ? If yes then I Can open some custom window on right click

[flexcoders] Re: session.getAttribute(somekey) returning NULL in SessionDestroyed

2009-05-22 Thread Dharmendra Chauhan
Hi Flexcoders, I request you to have a look in to it as I could not figure out why it is happening. --- In flexcoders@yahoogroups.com, Dharmendra Chauhan chauhan_i...@... wrote: Hi all, session.getAttribute(somekey) is returning null in SessionDestroyed() method of flex

RE: [flexcoders] Form validation in Flex?

2009-05-22 Thread Jake Churchill
It would probably be better to have all forms extend a base component and handle validation there. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

[flexcoders] Working with files

2009-05-22 Thread Cordova Aaron
I am trying to download a response from my server and then write that response out to a local file. But the local file is never complete. The amount of data I'm grabbing from the server can vary between a few K up to a couple megs. I am using a HTTPService call to request my data and then