[flexcoders] Recording and saving sound to local file system

2008-07-28 Thread venkat eswar
i need to finish a task which is very urgent. Am trying to record the video and Audio from LOCAL WEBCAM and MIC using FLASH MEDIA SERVER. its working perfectly.. i can record everything and i can save it. but all recorded FLV files am generating r stored in server directory... i want those files

[flexcoders] flex 2/3 charting questions

2008-07-28 Thread Maciek
We need to build a Flex 2 project that uses Flex Charting. Is it possible to download Flex Charting 2? All Adobe Flex Charting 2 links seem to point to FlexBuilder 3. I know that FlexBuilder 3 includes the Flex 2 SDK: with the pro version (that includes Flex 3 Charting), is it possible to build a p

[flexcoders] FilterFunction is throwing an error #1069

2008-07-28 Thread jitendra jain
Hi friends, My code is as follows public function setVisitor():void{ if(frm_visitType.selectedItem == "E"){ visitorList= ObjectUtil.copy(model.visitorList) as ICollectionView; vi

[flexcoders] FilterFunction is throwing an error #1069

2008-07-28 Thread jitendra jain
Hi friends, My code is as follows public function setVisitor():void{ if(frm_visitType.selectedItem == "E"){ visitorList= ObjectUtil.copy(model.visitorList) as ICollectionView; vi

Re: [flexcoders] modelLocator.testVO.test[i] indirection for modelLocator.testVO.test1?

2008-07-28 Thread Josh McDonald
Close :) You want: modelLocator.testVO.["test" + i] -Josh On Tue, Jul 29, 2008 at 4:06 PM, chigwell23 <[EMAIL PROTECTED]> wrote: > modelLocator.testVO.test1 = "some string"; > > var i:int = 1; > > modelLocator.testVO.test[i]= "some string"; // gives error undefined > > property - how does one

[flexcoders] modelLocator.testVO.test[i] indirection for modelLocator.testVO.test1?

2008-07-28 Thread chigwell23
modelLocator.testVO.test1 = "some string"; var i:int = 1; modelLocator.testVO.test[i]= "some string"; // gives error undefined property - how does one code this kind of indirection in Flex? TIA, Mic.

[flexcoders] Re: Setting "default" selectedIndex

2008-07-28 Thread calisza
Hi Alex, Thanks for the tip. The problem for me though - is that I'm trying to learn how the Mate Framework functions and I have no idea how to access the TileList's selectedIndex from the class handling the RO event response. Or any other UI component for that matter. Hell, I'm not even making s

[flexcoders] Rich Text Editor CSS Styles

2008-07-28 Thread owenjwest
Hi all, I am trying to override a default style that is being picked up on the Alignment buttons in a Rich Text Editor in Flex 3. We have a style defined for a TogglebuttonBar which is being used by the AlignButtons togglebuttonbar in the RTE. However the default TogglebuttonBar style is difficul

RE: [flexcoders] Re: Measurement and template component

2008-07-28 Thread Alex Harui
You'll have to walk through the measure() methods on each container to see what it is computing and why. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Monday, July 28, 2008 2:19 PM To: [EMAIL PROTECTED]; flexcoder

RE: [flexcoders] Re: Flex 3 Preloader broken when using deep linking ?

2008-07-28 Thread Alex Harui
Yeah, worthy of a bug. I was using IE, has anyone tried it with FF? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Winscot Sent: Monday, July 28, 2008 3:10 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Flex 3 Pr

RE: [flexcoders] TextArea popup editor in DataGrid

2008-07-28 Thread Alex Harui
Walk through the focusOutHandler on DataGrid. In theory, if the object getting focus is owned by the itemeditor, it shouldn't try to end the edit session. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glenn Jones Sent: Monday, July 28

[flexcoders] Re: setting the value of axis label in line chart which is populated dynamically!

2008-07-28 Thread samata
--- In flexcoders@yahoogroups.com, "Amy" <[EMAIL PROTECTED]> wrote: > > --- In flexcoders@yahoogroups.com, "samata" wrote: > > > > Hi, > > > > I have line chart..The line charts has values that are populated > > dynamically. > > > > The values could be anything...ranging from 100 to 10 o

RE: [flexcoders] SWFloader and css woes

2008-07-28 Thread Alex Harui
In 3.1 this will be possible. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Faisal Abid Sent: Monday, July 28, 2008 5:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] SWFloader and css woes I made an application which loa

Re: [flexcoders] Checking if an object exists

2008-07-28 Thread Josh McDonald
Also, you can check: if (1 in archive[record_id]) { //do stuff } -Josh On Tue, Jul 29, 2008 at 2:32 PM, Josh McDonald <[EMAIL PROTECTED]> wrote: > If it's an array, then you want: > > if(archive[record_id].length > 1) > { > //do stuff > } > > -Josh > > > On Tue, Jul 29, 2008 at 2:05 PM,

Re: [flexcoders] Checking if an object exists

2008-07-28 Thread Josh McDonald
If it's an array, then you want: if(archive[record_id].length > 1) { //do stuff } -Josh On Tue, Jul 29, 2008 at 2:05 PM, Rafael Faria <[EMAIL PROTECTED]>wrote: > Hello all, > > I'm here for one of my questions again :P > > I need to make a comparison like this > > if (archive[record_id][1

[flexcoders] How long to build a Flex app....

2008-07-28 Thread Alan
I know this is a pretty broad question... I'm new to Flex, and having fun with it, but I'd like to get an idea how long these things take to make. Instead of me trying to pitch a hypothetical situation, maybe anyone interested in answering could describe an app they made and how long it to

[flexcoders] Migrating Flex 2 to 3 Issues

2008-07-28 Thread Indra Prastha
Hi, I've recently imported a flex project created in Flex Builder 2 to Flex Builder 3. This project i'm importing is a modular application is has modules registered correctly in the Project Properties > Project Modules. When I add new modules in FB3, it works fine and is registered in the Project

[flexcoders] Checking if an object exists

2008-07-28 Thread Rafael Faria
Hello all, I'm here for one of my questions again :P I need to make a comparison like this if (archive[record_id][1].deleted_id == deleted_id) { } My problem is that [1].deleted_id might not exist at this point. I know that archive[record_id] exists so how can i make this comparison above?

[flexcoders] Form Processing in Flex

2008-07-28 Thread brucewhealton
Hello all, I see some very useful and elegant tools for creating form elements using Flex. When designing in xhtml, using Dreamweaver, I call the form processor from the opening form tag, which calls a php file - that's I have been using, mainly for form processing. It returns the values entered

RE: [flexcoders] LCDS - Data Management Service Problem

2008-07-28 Thread Jeff Vroom
Hi Bart, Thanks for sending those logs. I believe this is a bug fixed in LC DS 2.6 which is now available on the adobe site. We also have a hotfix for it on 2.5.1 - contact me off list if you need a copy of that. Jeff From: Bart Ronsyn [mailto:[EMAIL PROTECTED] Sent: Monday, July 28, 2008 1

[flexcoders] Re: Mouse DOUBLE_CLICK not fired in Browser but in AIR

2008-07-28 Thread Vijay Ganesan
I need to handle MOUSE_DOWN because I'm enabling drag and drop. Again the weird thing is that the AIR version works fine. --- In flexcoders@yahoogroups.com, "valdhor" <[EMAIL PROTECTED]> wrote: > > Don't quote me on this but it is probably because the > MouseEvent.MOUSE_DOWN event is captured be

RE: {Disarmed} [flexcoders] RemoteObject madness

2008-07-28 Thread Scott
What is your backend? - - what are you connecting to? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [p e r c e p t i c o n] Sent: Monday, July 28, 2008 4:43 PM To: flexcoders@yahoogroups.com Subject: {Disarmed} [flexcoders] RemoteObjec

Re: [flexcoders] Flex Inspiration and ideas

2008-07-28 Thread yigit
thinking is good, here are the implementations of the ideas you mentioned. interactive calendar: adobe has a component for this http://labs.adobe.com/wiki/index.php/Flex_Scheduling_Framework audio/video player: richflv (actually focused on flv, but pretty good) RSS feed reader: so many on the web.

[flexcoders] SWFloader and css woes

2008-07-28 Thread Faisal Abid
I made an application which loads an external flex app using swf loader. However the problem is that the flex app im loading the css styles get overridden by the parent application. How can i prevent this?

Re: [flexcoders] Re: Who is using FlexReport?

2008-07-28 Thread Anatole Tartakovsky
Paul,If you are doing client side PDF generation, you need to use Flex as rendering engine to measure layout - hence preview - either hidden or visible is the must - no server involved. We are doing it for our report writer - works kind of slow - 2 pages per second, but theoretically can be

[flexcoders] Re: Flex Inspiration and ideas

2008-07-28 Thread Michael VanDaniker
For full applications, the showcase on Flex.org is worth a look. On a lower level, the custom components in the flexbox could serve for some inspiration as well. Happy coding, -Michael --- In flexcoders@ya

Re: [flexcoders] TextArea popup editor in DataGrid

2008-07-28 Thread Glenn Jones
I've tried using a popup TextArea but I'm having real problems trying to get it to work as an item editor within a datagrid. My business requirements are - someone can click in the DG cell to start editing. If the cell uses a TextArea control, they should get popup-like TA that extends across row

Re: [flexcoders] Re: HttpService Fault Response Body Decoding

2008-07-28 Thread Josh McDonald
IIRC: The way it works in BlazeDS is not that it acts as an actual "http proxy" where you make fully qualified requests over http, but you send requests down a flash-remoting socket connection, and it makes requests and pipes back the result. The end result is that the browser doesn't get to interc

Re: [flexcoders] Tracking tab changes in TabNavigator ?!

2008-07-28 Thread Rich Rodecker
you listen for the IndexChangedEvent.CHANGE event on the TabNavigator. The event will have a relatedObject property which will contain a reference to the newly selected tab. On Mon, Jul 28, 2008 at 2:18 PM, lytvynyuk <[EMAIL PROTECTED]> wrote: > I need to somehow trace that another tab selecte

[flexcoders] Flex Inspiration and ideas

2008-07-28 Thread brucewhealton
Hello all, I was going through some tutorials on Flex 3 just recently, that I found on Flex that were available on the Flex start screen when you start the application. The tutorial on creating a Flickr application was pretty interesting and rather simple to do. That is described here: http://learn

Re: [flexcoders] Re: Flex 3 Preloader broken when using deep linking ?

2008-07-28 Thread Rick Winscot
Interesting... Just ran this through a whole bunch of angles. Running the example locally works just fine against debug or release builds. Deploy it to a web server on the cloud and it asplodes. Rick Winscot On 7/28/08 11:38 AM, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > > > When I hit t

[flexcoders] RemoteObject madness

2008-07-28 Thread [p e r c e p t i c o n]
Hello Good People... My application has one RemoteObject that i use to connect to different services...in other words i keep the connection open and just switch the destination and source in order to reuse it. I'm having an issue that i'm not sure is related to using it this way...here's how i'm u

[flexcoders] Re: Measurement and template component

2008-07-28 Thread Richard Rodseth
Oops. Meant for flexcoders. On Mon, Jul 28, 2008 at 2:18 PM, Richard Rodseth <[EMAIL PROTECTED]> wrote: > Turns out to be unrelated to the fact that ReportChrome is a template > component (the same thing happens if it's a plain Canvas). > Removing width="100%" height="100%" on ReportChrome results

[flexcoders] Tracking tab changes in TabNavigator ?!

2008-07-28 Thread lytvynyuk
I need to somehow trace that another tab selected to do some action based on it. Cannot find proper event which can be generated when I click on tabs or switch tabs.

RE: [flexcoders] mxml components

2008-07-28 Thread Gordon Smith
> all classes are created when the application is started AS3 classes get initialized -- meaning that their static variables get set and their static methods get executed -- in a lazy fashion, as they are used. If you have bytecode for a class in your SWF and that class doesn't get used by othe

[flexcoders] Re: Mouse DOUBLE_CLICK not fired in Browser but in AIR

2008-07-28 Thread valdhor
Don't quote me on this but it is probably because the MouseEvent.MOUSE_DOWN event is captured before a double click. If you change the event listener from MouseEvent.MOUSE_DOWN to MouseEvent.CLICK then it works as expected. --- In flexcoders@yahoogroups.com, "Vijay Ganesan" <[EMAIL PROTECTED]> wr

[flexcoders] Re: RSS Feeds

2008-07-28 Thread George
--- In flexcoders@yahoogroups.com, "nathanpdaniel" <[EMAIL PROTECTED]> wrote: > > > In my experience, Flex Builder "Debug" swfs have the same are > subject > > to the same crossdomain access restrictions that production swfs > have. > > > > I'm a bit suspicious of the claim that this is not

[flexcoders] How to control positioning of Dynamic Control in a panel?

2008-07-28 Thread pbrendanc
I have a panel that will contain a dynamically created custom grid component(the size is determined at run time). The grid is added to the panel via the panel.AddChild() method and is placed at the bottom of the form by default. I need to place a control bar (and other controls) below the grid. Cu

[flexcoders] AdvancedDataGrid: Making certain rows unselectable

2008-07-28 Thread whatabrain
I would like to make an AdvancedDataGrid where the rows with a depth of 0 (or a particular RendererProvider, if you prefer), have no select color. That is, you can click on them and activate click events, but they never turn blue. How do I do this? Thanks

[flexcoders] Flex 3 MovieClip Move Effect

2008-07-28 Thread Shaq
I have a movie clip wrapped in UIComponent. What I would like to do is move the move from one side of the form to the other using the Move effect. I can't seem to get this working. Some code excerpts are below. Any help would be greatly appreciated. bpMovie = new MovieClip(); bpUic = new UIComp

[flexcoders] Re: LCDS data synchronisation problem

2008-07-28 Thread danpsc
Hi, I have experienced the same behavior and output. Here it happens exactly when the cache directory is empty or missing, and the server is offline. Any remote or cache related method call on the dataService object ends with this error (ds.getCacheDescriptors(..), etc). Initial ds properties are

Re: [flexcoders] Programmaticaly move Panel (HELP!)

2008-07-28 Thread Sherif Abdou
I think if you do includeInLayout=false on panel then maybe. - Original Message From: _estatica_ <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, July 28, 2008 12:49:30 PM Subject: [flexcoders] Programmaticaly move Panel (HELP!) Hi all, I have 2 canvases places in the

Re: [flexcoders] Measurement and template component

2008-07-28 Thread Richard Rodseth
Oh, I totally understand, and had no such expectation. I just didn't understand your suggestion, given the hierarchy I included in the question. I wanted to make sure there wasn't a property on Canvas or something I was unaware of. On Mon, Jul 28, 2008 at 11:11 AM, Alex Harui <[EMAIL PROTECTED]> w

RE: [flexcoders] Measurement and template component

2008-07-28 Thread Alex Harui
Richard, It isn't possible for me to remember how you'lve implemented things, or go back and find your code cuz I'm usually in a hurry. If you're based on Navigators, you can use resizeToContent. Containers may need to use autoLayout. UIComponent should get its measure method called alway

Re: [flexcoders] Measurement and template component

2008-07-28 Thread Richard Rodseth
On what? I see there's such a property on Accordion and a few other standard components, but all we have here is my custom TiledCanvas (latest version of the one I sent you a while back) and a few other custom and MXML components. Thanks. On Mon, Jul 28, 2008 at 10:53 AM, Alex Harui <[EMAIL PROTEC

[flexcoders] Re: RSS Feeds

2008-07-28 Thread nathanpdaniel
> In my experience, Flex Builder "Debug" swfs have the same are subject > to the same crossdomain access restrictions that production swfs have. > > I'm a bit suspicious of the claim that this is not the case. I think what is being said (if I'm understanding correctly) - running FB3 to l

[flexcoders] Re: HttpService Fault Response Body Decoding

2008-07-28 Thread ron_mori
Josh, Thanks for the reply - the mystery is how to access the server response body content for a faultEvent. My proxy server does a great job of forwarding requests and responses but my client still can not access the response xml body content for an 'error' (status 500) server response. I'm gues

RE: [flexcoders] Measurement and template component

2008-07-28 Thread Alex Harui
resizeToContent? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Monday, July 28, 2008 10:31 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Measurement and template component My application has a struct

[flexcoders] Programmaticaly move Panel (HELP!)

2008-07-28 Thread _estatica_
Hi all, I have 2 canvases places in the HBox. There is a Panel in Canvas A. I'd like to programmaticaly and smoothly move a Panel from one canvas to the another (not using addChild/removeChild). Is this possible?

RE: [flexcoders] Re: Flex 3 Preloader broken when using deep linking ?

2008-07-28 Thread Shearer, Scott
For what it's worth, I hit the html wrapper and it took "forever" to load (sorry I didn't time it, just let it load while I did other tasks), but I did see the preloader updating. I did not see the preloader when hitting the SWF, but it was very quick at that point. I closed IE7 and retried. Bo

[flexcoders] Re: Load a PDF?

2008-07-28 Thread tchredeemed
got it! dropshadowfilters (maybe filters in general), kill the pdf. any idea why? --- In flexcoders@yahoogroups.com, "tchredeemed" <[EMAIL PROTECTED]> wrote: > > another update, its not the popupmanager, its when I add children to > the parent application as well. > > If the code that adds the

[flexcoders] Measurement and template component

2008-07-28 Thread Richard Rodseth
My application has a structure like this, portions of which are created dynamically: TiledCanvas PodChrome(instance 1) ReportModuleA ReportChrome(instance 1) ReportA Grid PodChrome(instance 2) ReportModuleB ReportChrome(instance 2) ReportB Chart et

RE: [flexcoders] Interview questions

2008-07-28 Thread Eric Fickes
This might help for Flex2 http://www.adobe.com/devnet/flex/articles/flex_certification.html EF From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Preet Sent: Wednesday, July 23, 2008 11:25 AM To: flexcoders@yahoogroups.com Subject: [fl

[flexcoders] Re: Load a PDF?

2008-07-28 Thread tchredeemed
another update, its not the popupmanager, its when I add children to the parent application as well. If the code that adds the envelope is in the parent application, and I dont have to add any children, it works, other than that, death. --- In flexcoders@yahoogroups.com, "tchredeemed" <[EMAIL PR

[flexcoders] Re: Load a PDF?

2008-07-28 Thread tchredeemed
the code seems to work fine, when not used with the popupmanager, any ideas? --- In flexcoders@yahoogroups.com, "tchredeemed" <[EMAIL PROTECTED]> wrote: > > Ok, working with AIR (newest release) in flex builder (newest release). > > Just downloaded adobe reader (newest release, see a trend? =])

RE: [flexcoders] DataGridColumn issue: Passing an array.

2008-07-28 Thread Alex Harui
If your customRenderer implements IDropInListItemRenderer, the listData will have the columnIndex which you can use to look up the array entry and update it later. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manu Dhanda Sent: Monday,

[flexcoders] Figuring out which item within a column was clicked in AdvancedDataGrid

2008-07-28 Thread whatabrain
Let's say I have a single column which contains an image and some text. Then I get a click event from the AdvancedDataGrid. How do I tell whether the image was clicked, rather than the text?

[flexcoders] DataGridColumn issue: Passing an array.

2008-07-28 Thread Manu Dhanda
Hii Guyz, The problem is: I am passing an array of weekdays as datafield for a DataGridColumn as follows: days is an array. It has values true,false,false,true.. like that for all 7 days. Now in my customRenderer, I want to toggle the particular cells based on the [true/false] passed in

[flexcoders] Load a PDF?

2008-07-28 Thread tchredeemed
Ok, working with AIR (newest release) in flex builder (newest release). Just downloaded adobe reader (newest release, see a trend? =]) I have a popup, that im using with the popupmanager, that loads a pdf: private function loadEnvelope():void { if( HTMLLoader.pdfCapability == HTMLPDFCapability.

[flexcoders] Error #2032: Stream Error. URL: datavisualization_3.0.0.477.swz

2008-07-28 Thread Vijay Ganesan
Get this error trying to use the datavisualization library as an RSL: Error #2032: Stream Error. URL: datavisualization_3.0.0.477.swz Using the framework library as an RSL (framework_3.0.0.477.swz) seems to work fine. Flex Builder seems to put the datavisualization_3.0.0.477.swz in the right pla

Re: [flexcoders] Re: Zoom Tile Container

2008-07-28 Thread Jon Bradley
http://demo.quietlyscheming.com/fisheye/TileExplorer.html On Jul 25, 2008, at 4:00 PM, Nate Pearson wrote: Bump. Any ideas?

[flexcoders] How to best implement this barcode generator...

2008-07-28 Thread bredwards358
Recently I got this barcode generation component from this place: http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1179012 Right now I'm trying to figure out how to implement Barcode generation in my AIR app since two of the reports I need this to be able to p

RE: [flexcoders] Re: Flex embed problem!

2008-07-28 Thread Alex Harui
See the modules presentation on my blog From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shaileshiitb Sent: Monday, July 28, 2008 8:29 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex embed problem! also the error that

RE: [flexcoders] Re: Flex 3 Preloader broken when using deep linking ?

2008-07-28 Thread Alex Harui
When I hit the SWF directly, with or without #, it doesn't stream in (not sure why), the status bar (in IE) shows downloading progress. When it hit the html wrapper with the # I don't see the "loading..." screen. Makes me think that it isn't streaming the SWF if there's a #. That may be a known

[flexcoders] Re: Flex embed problem!

2008-07-28 Thread shaileshiitb
also the error that i am getting is : TypeError: Error #1034: Type Coercion failed: cannot convert com.aa.cairngorm.event::[EMAIL PROTECTED] to com.aa.cairngorm.event.MonitorWorkFlowEvent. It is the same class - hwy should i typecast it here? TypeError: Error #1009: Cannot access a property or m

[flexcoders] cairngorm sevice locator performance?

2008-07-28 Thread markflex2007
Hi, The most cairngorm application has a service locater file (services.xml)and define all service locators there . and many delegates use one instance of a service locater in many case. Do you think if it affect the performance because no garbage collection for each delegate? Thanks for your

Re: [flexcoders] Re: RSS Feeds

2008-07-28 Thread Jeffry Houser
In my experience, Flex Builder "Debug" swfs have the same are subject to the same crossdomain access restrictions that production swfs have. I'm a bit suspicious of the claim that this is not the case. Without seeing code, I wouldn't be able to judge if there was something else going on, or

[flexcoders] Flex embed problem!

2008-07-28 Thread shaileshiitb
Hi All, I am facing a Flex 3 SWFloading problem The situation is: We have Application 1 (built on cairngorm) which loads Application 2 (again built on cairngorm) using the loader, urlrequest mechanism or SWFLoader. Application 2 itself loads 5 other modules using ModuleLoader. Application 2 and

RE: [flexcoders] Value of AS variable dissapearing

2008-07-28 Thread Alex Harui
Server calls are always asynchronous, so normally you make the call and put your if statement in the result handler. The UI will not update until the server responds. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Monday, J

[flexcoders] Re: Zoom Tile Container

2008-07-28 Thread Nate Pearson
Oh wow! That is awesome! I like the 2nd one more too. I'm going to dig into the code and see how you did that. If I make any improvements I'll repost it. wow, thanks again. This is really awesome. This might deserve a spot in the flex lib. I'll work on making it more modular so someone can

RE: [flexcoders] Setting "default" selectedIndex

2008-07-28 Thread Alex Harui
Normally, I'd just set it whenthe result event from the RO is dispatched. If you have everything wired up via binding, you could try CollectionChangeEventKind.RESET From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of calisza Sent: Monday, J

Re: [flexcoders] Re: Zoom Tile Container

2008-07-28 Thread [EMAIL PROTECTED]
http://reenie.org/test/zoomComponent/zoomtest.html This is a new example which is the same as the one below (zoom with effects) but it uses a mxml component based on the tile container, and AS classes for the effects. It still doesn't zoom to 100% because I don't know how to get an effect to do

[flexcoders] Error #1034 - HashMap convert to ActionScript?

2008-07-28 Thread cyrill.zadra
Hi, Well I'm have some troubles using a HashMap on the server-side. I use a java remote custom object, which contains a hashmap as one of its attributes. The custom object should be converted to the ActionScript object MyValue when it's getting transfered to the client. But on the client-side I

[flexcoders] Re:AIR Initial WIndow Position Problem

2008-07-28 Thread todd_geist
--- In flexcoders@yahoogroups.com, Jon Oxtoby <[EMAIL PROTECTED]> wrote: > > According to the code you posted you need to uncomment the and > settings. Oh Boy what a total knuckle head I am. Thanks for seeing what I could not. Todd

Re: [flexcoders] "on the fly" form validation

2008-07-28 Thread Scott
Perfect! Thanks to both of the responses. Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Gravener Sent: Monday, July 28, 2008 9:12 AM To: flexcoders@yahoogroups.com Subject: {Disarmed} Re: [flexcoders] "on the fly" form v

[flexcoders] Re: setting the value of axis label in line chart which is populated dynamically!

2008-07-28 Thread Amy
--- In flexcoders@yahoogroups.com, "samata" <[EMAIL PROTECTED]> wrote: > > Hi, > > I have line chart..The line charts has values that are populated > dynamically. > > The values could be anything...ranging from 100 to 10 or more. > > i wanted 2 know if there is some way one could identify

Re: [flexcoders] Re: Flex Builder Speed-ups?

2008-07-28 Thread Michael Schmalle
Hi, How many projects do you have open at one time in your workspace? If you close them all and open one, do you still get performance issues? Mike -- Teoti Graphix, LLC http://www.teotigraphix.com Teoti Graphix Blog http://www.blog.teotigraphix.com You can find more by solving the problem

[flexcoders] Re:AIR Initial WIndow Position Problem

2008-07-28 Thread Jon Oxtoby
According to the code you posted you need to uncomment the and settings. Also remember that the values start at zero at the top of the screen and go up as you move down the screen. Cheers, Jon -- Jon Oxtoby Software Architect [EMAIL PROTECTED] Digital-Tutors | PL Studios, Inc. 501 N. Walke

Re: [flexcoders] "on the fly" form validation

2008-07-28 Thread Ryan Gravener
Here is how I do form validation in flex: http://ryangravener.com/wordpress/?p=6 On Mon, Jul 28, 2008 at 9:47 AM, Fidel Viegas <[EMAIL PROTECTED]>wrote: > On Mon, Jul 28, 2008 at 2:26 PM, Scott <[EMAIL > PROTECTED]> > wrote: > > In thinking about forms and flex events, how hard is it to valid

[flexcoders] Re: RSS Feeds

2008-07-28 Thread George
--- In flexcoders@yahoogroups.com, "Anirudh Sasikumar" <[EMAIL PROTECTED]> wrote: > > Hi, > > During development, Flex Builder automatically gets the flash player > to trust your swf so that you won't encounter this issue. > > Yahoo's crossdomain.xml allows access to content if the app is hosted

Re: [flexcoders] File Manager

2008-07-28 Thread Tom Chiverton
On Monday 28 Jul 2008, Dan Vega wrote: > That was my next option, I was just wondering if I should do it on the > server or after the grid was completed. I like my view layer (i.e. the Flex client) to be as dumb as possible, so would opt for doing this on the server. You could have your results

[flexcoders] Re: Flex localization

2008-07-28 Thread Michael VanDaniker
You can use Capabilities.language to get the local language. You don't have to bundle your resources directly into the application. You can use resource modules to externalize the bundles into separate swfs and load the required one at runtime based on the user's language. The documentation on re

[flexcoders] Re: Flex Builder Speed-ups?

2008-07-28 Thread Amy
--- In flexcoders@yahoogroups.com, "tudsy" <[EMAIL PROTECTED]> wrote: > > My Flex Builder can run extremely slow, almost every keypress sends > javaw.exe CPU usage over 50% and this causes an unacceptable lag for > even simple editing. Any tips? > > I'm running Vista SP1 on an AMD X2 3600 (1.8 Gh

Re: [flexcoders] File Manager

2008-07-28 Thread Dan Vega
That was my next option, I was just wondering if I should do it on the server or after the grid was completed. Thank You Dan Vega [EMAIL PROTECTED] http://www.danvega.org On Mon, Jul 28, 2008 at 10:02 AM, Tom Chiverton < [EMAIL PROTECTED]> wrote: > On Monday 28 Jul 2008, Dan Vega wrote: > > I

Re: [flexcoders] Re: Who is using FlexReport?

2008-07-28 Thread Tom Chiverton
> The real problem is page headers and footers, plus conditional pagination. > Last time I checked I couldn't get CSS to give me pagination like that. > Pity. Hmm, I've only ever done fairly basic print style sheets myself... -- Tom Chiverton

Re: [flexcoders] File Manager

2008-07-28 Thread Tom Chiverton
On Monday 28 Jul 2008, Dan Vega wrote: > I understand how to create a cell renderer but I have a query that pulls > all the directory information, how do i insert a row after that query comes > back from the server. Just have whatever your server code does add a row at the start of the results. W

Re: [flexcoders] File Manager

2008-07-28 Thread Dan Vega
I understand how to create a cell renderer but I have a query that pulls all the directory information, how do i insert a row after that query comes back from the server. Thank You Dan Vega [EMAIL PROTECTED] http://www.danvega.org On Mon, Jul 28, 2008 at 9:50 AM, Tom Chiverton <[EMAIL PROTECTED]

Re: [flexcoders] Re: Who is using FlexReport?

2008-07-28 Thread Paul Andrews
- Original Message - From: "Tom Chiverton" <[EMAIL PROTECTED]> To: Sent: Monday, July 28, 2008 2:41 PM Subject: Re: [flexcoders] Re: Who is using FlexReport? > On Monday 28 Jul 2008, Paul Andrews wrote: >> The closest solution I can see right now is to generate a html page >> locally >

Re: [flexcoders] File Manager

2008-07-28 Thread Tom Chiverton
On Monday 28 Jul 2008, Dan Vega wrote: > next. I want to insert a blank row where the first column would have this > up arrow image and on click would call my upNav method. Does anyone know of > a way to dynamically insert this? I would think this needs to be done after How about a custom cell ren

Re: [flexcoders] "on the fly" form validation

2008-07-28 Thread Fidel Viegas
On Mon, Jul 28, 2008 at 2:26 PM, Scott <[EMAIL PROTECTED]> wrote: > In thinking about forms and flex events, how hard is it to validate a form > as a user tabs through it? Without creating a ton of event handlers, is > there an easy way to accomplish this? Hi Scott, Have a look at validators. Ch

[flexcoders] File Manager

2008-07-28 Thread Dan Vega
I am not quite sure how to put this so I will try and explain the problem best I can. I built a small file manager utility that allows you to dbl click on folders and drill down through them. Once you are nested there is a toolbar icon that allows you to go back up. Most file managers have the up f

RE: [flexcoders] mxml components

2008-07-28 Thread Scott
I was afraid of that... Ok, let's see if I can do it better. I understand that I'm not "calling" a class, but functions within the instance. So if I understand the other message from Gordon correctly then all classes are created when the application is started. However, it doesn't look

Re: [flexcoders] Re: Who is using FlexReport?

2008-07-28 Thread Tom Chiverton
On Monday 28 Jul 2008, Paul Andrews wrote: > The closest solution I can see right now is to generate a html page locally > and print that (huge pagination issues), Even with the right CSS hints ? -- Tom Chiverton This email is sent for and o

Re: [flexcoders] Re: Who is using FlexReport?

2008-07-28 Thread Paul Andrews
- Original Message - From: "Tom Chiverton" <[EMAIL PROTECTED]> To: Sent: Monday, July 28, 2008 1:47 PM Subject: Re: [flexcoders] Re: Who is using FlexReport? > On Monday 28 Jul 2008, Paul Andrews wrote: >> Well, that's fine unless your customer is waiting for a printout. and >> you're o

[flexcoders] "on the fly" form validation

2008-07-28 Thread Scott
In thinking about forms and flex events, how hard is it to validate a form as a user tabs through it? Without creating a ton of event handlers, is there an easy way to accomplish this?

[flexcoders] Re: How to Reset ProgressBar?

2008-07-28 Thread valdhor
According to the manual, the polled mode requires the source property must specify an object that exposes bytesLoaded and bytesTotal properties. The ProgressBar control calls these methods to update its status. Are you changing the source property for each image? --- In flexcoders@yahoogroups.co

Re: [flexcoders] Re: Who is using FlexReport?

2008-07-28 Thread Tom Chiverton
On Monday 28 Jul 2008, Paul Andrews wrote: > Well, that's fine unless your customer is waiting for a printout. and > you're on the road with a laptop. I can see data entry reqs, for instance, where you might want to let a user print a report or order summary out off line... -- Tom Chiverton **

[flexcoders] setting the value of axis label in line chart which is populated dynamically!

2008-07-28 Thread samata
Hi, I have line chart..The line charts has values that are populated dynamically. The values could be anything...ranging from 100 to 10 or more. i wanted 2 know if there is some way one could identify the maximum value plotted and set it to value higher than that at runtime...to avoid t

[flexcoders] Flex localization

2008-07-28 Thread vipinck
We have a flex app which is going to be distributed around the globe. We are looking for a localization solution, in which flash can detect the language (any method) and send the language code to server, and server will return back the display text. I know I can use the Flex's localization API, in

[flexcoders] Re: LCDS data synchronisation problem

2008-07-28 Thread fkolberg
Hi Jeff, thanks for the tip on compiler option; it does now work but... I have added the -services compiler option to Flex Builder and have -locale en_US -services C:\lcds\tomcat\webapps\lcds-samples\WEB-INF\flex\services-config.xml -context-root=/ on debugging, the destination for insync is not

  1   2   >