[flexcoders] Lens effect

2008-08-27 Thread venkat eswar
have anyone done lens effect.please help me

RE: [flexcoders] flahs.ui.Keyboard bug?!

2008-08-27 Thread Alex Harui
Is this for an AIR project? I don't think it was supposed to work for non-AIR. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nagaofthesea Sent: Wednesday, August 27, 2008 10:10 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] flahs.ui.Keyboard bug?! Howdy-

[flexcoders] download many files at a time

2008-08-27 Thread dialogtmp
hello,all I want to let user to download many files at a time, but I can't use the server side language to implement. I have already searched much information, but still could not find the solution. How should I do? Dose it possible implement in flex? thanks, dialogtmp

RE: [flexcoders] Repeater Component

2008-08-27 Thread Mike Pearce
Had a similar issue. The trick is to use {index of currentItem} and not currentIndex, as currentIdex will fail when used with your secondary data source. Try this (just an example): Assumes your have * "dp1" -> your primary data source (collection) * "dp2" -> your secondary

[flexcoders] flahs.ui.Keyboard bug?!

2008-08-27 Thread nagaofthesea
Howdy- Just installed the latest FlexBuilder 3.0.1.205647 which includes the 3.1 SDK. Went to write a handler for keyboard input using the public static constants of flash.ui.Keyboard class (testing for Keyboard.Y to represent a 'yes' answer and Keyboard.N to represeent a 'no' answer)and lo t

RE: [flexcoders] Re: change direction of the combo box opening

2008-08-27 Thread Alex Harui
I don't see an easy way to change that in ComboBox. It is just a button that shows a List. You could just use a button and then tween the List however you want From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of samata Sent: Wednesday, August 27, 2008 9:39 PM To: flexcoder

RE: [flexcoders] UMap problem

2008-08-27 Thread Alex Harui
Your original post talked about layers, with UMap going underneath stuff. Depending on how you went about doing that, you could have put UMap under the Application or hit some bug where we got confused as to where the Application is in the z-order. Dumping the systemManager.rawChildren might tell

RE: [flexcoders] Need help about generating swf from template flash file

2008-08-27 Thread Alex Harui
You're going to generate a SWF file from within a running Flex app? That's a lot of work. Why not use the SWF from the FLA as a library of assets and dynamically use them in your Flex UI? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yk96290 Sent: Wednesday, August 27

[flexcoders] Re: change direction of the combo box opening

2008-08-27 Thread samata
--- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > PopUpMenuButton? > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of samata > Sent: Wednesday, August 27, 2008 6:55 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] change di

Re: [flexcoders] UMap problem

2008-08-27 Thread Guy Morton
Hi Alex Thanks for replying, though I must confess I don't really understand your answer. Please bear with me. Are you saying that the UMap component is doing something it oughtn't? Or is your reply based on my (perhaps) poorly phrased question? In other words, are you saying that the err

[flexcoders] Need help about generating swf from template flash file

2008-08-27 Thread yk96290
I have a template flash file (.fla) that contains image, text and links. In the flex application, at run time, a swf file will be generated from this template. All place holders will be replaced by the real data. Any suggestions? Young

RE: [flexcoders] UMap problem

2008-08-27 Thread Alex Harui
There is an assumption that the Flex Application is at index 1 in the SystemManager. A mouseShield goes at 0. We don't officially support slipping anything behind the Application. You could try adjusting the mx_internal applicationIndex to be the right number. From: flexcoders@yahoogroups.co

RE: [flexcoders] Digest XML Schema

2008-08-27 Thread Alex Harui
There's an undocumented SOAPDecoder in mx.rpc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ron_mori Sent: Wednesday, August 27, 2008 3:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Digest XML Schema Goal: digest an XML schema and generate set of obje

[flexcoders] Re: AdvancedDataGrid changing background color of Group Headers

2008-08-27 Thread anandvardhan.flex
Hi, But it is not going to solve my issue. The issue is to change color of only that row which has other childs in it. Anand --- In flexcoders@yahoogroups.com, "Amy" <[EMAIL PROTECTED]> wrote: > > --- In flexcoders@yahoogroups.com, "anandvardhan.flex" > wrote: > > > > I need to access the fir

[flexcoders] Repeater Component

2008-08-27 Thread jitendra jain
Hi friends, I have one repeater component that dynamically constructs a Check box and two input boxes using a masterDataProvider(array collection). Now i have another data provider childDataProvider(array collection). How can i assign values of childDataProvider to repeater ?? Please help.

RE: [flexcoders] Re: DataGrid change handler: event.selectedItem == true???? w/ CheckBox renderer

2008-08-27 Thread Tracy Spratt
Huh, great theory, that is definitely something to look at. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tim Hoff Sent: Wednesday, August 27, 2008 9:17 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGrid chan

RE: [flexcoders] DataGrid change handler: event.selectedItem == true???? w/ CheckBox renderer

2008-08-27 Thread Tracy Spratt
LOL! Your analysis makes perfect sense. My workaround is working fine, so no sweat. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Wednesday, August 27, 2008 9:21 PM To: flexcoders@yahoogroups.com Subject: RE

[flexcoders] ADG.indicesToIndex bug?

2008-08-27 Thread reflexactions
This is in relation to the ADG: The function indicesToIndex in AdvancedListBase is supposed to compute the offset into the data provider of a row. It does this: return rowIndex * columnCount + colIndex; Which is producing the wrong answer as it should just be return rowIndex There are two bu

Re: [flexcoders] Scene7.com Webinar on 9/11/08, ask some serious questions, examine answers seriously, see if they're answered with depth

2008-08-27 Thread Jon Bradley
On Aug 27, 2008, at 5:56 PM, Robert Thompson wrote: Will they go too far? Microsoft did. Do you own research on that if you wondered what happened in the 90's. There's plenty of it. The case is posted, Discovery, Judgement. I want some of what you're smoking. :P I don't see how this i

RE: [flexcoders] DataGrid change handler: event.selectedItem == true???? w/ CheckBox renderer

2008-08-27 Thread Alex Harui
I think there are times where the DG will pull the data property from the renderer assuming it is the dataprovider item, which in your case it isn't. Maybe we shouldn't do that, but it doesn't matter since Scene7 is going to take over the world J From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: How can we use message event of mx.data.DataService?

2008-08-27 Thread Shigeru Nakagaki
Thank you. I got it. Shigeru Nakagaki --- In flexcoders@yahoogroups.com, Seth Hodgson <[EMAIL PROTECTED]> wrote: > > This event is dispatched when a DataMessage has been pushed to the client by the server, after it has gone through internal processing by the DataService. Unlike a ResultEvent

[flexcoders] Re: DataGrid change handler: event.selectedItem == true???? w/ CheckBox renderer

2008-08-27 Thread Tim Hoff
Hey Tracy, I wonder if his has anything to do with it. override public function get data():Object { return this.selected; } -TH --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > I have a moderately complex standard DataGrid, using an > XMLListCollection dataP

Re: [flexcoders] Re: 3596: Duplicate variable definition -- not sure why I'm getting it here

2008-08-27 Thread Nate Beck
To Clean & Rebuild in FlexBuilder: 1) Project > Clean... 2) Clean all projects (or selected projects if you see fit) 3) Ok :D On Wed, Aug 27, 2008 at 1:43 PM, Mark <[EMAIL PROTECTED]> wrote: > good point, it works. How do you clean and rebuild a project? Is > that in the documentation somewher

[flexcoders] Large Dojo Application Design

2008-08-27 Thread matthewshirey
I need to design and develop a large RIA and I'd like to use Dojo since I've used it a bit in the past. But I have had trouble finding examples of large application designs using Dojo. I'd like to design this application to load in a single page. In the past I've just added Dojo to many individu

[flexcoders] Ignore Dojo post

2008-08-27 Thread matthewshirey
Sorry guys, I sent this to the wrong list. -- Matthew

[flexcoders] DataGrid change handler: event.selectedItem == true???? w/ CheckBox renderer

2008-08-27 Thread Tracy Spratt
I have a moderately complex standard DataGrid, using an XMLListCollection dataProvider. In the DG change event handler, I assign a reference to the selectedItem(an XML node) to an instance variable. One column of the DG is a CheckBox ItemRenderer. On the first interaction with the DG, if I direc

[flexcoders] UMap problem

2008-08-27 Thread Guy Morton
Has anyone else here got experience with using UMap and know the answer to this problem? http://www.afcomponents.com/components/umap_as3/ I have an existing mapping app that has other layers over the map. If I put a UMap map under these layers and click on pretty much anything that sits ove

[flexcoders] Digest XML Schema

2008-08-27 Thread ron_mori
Goal: digest an XML schema and generate set of objects that conforms to the schema. Sample Schema. http://www.w3.org/2001/XMLSchema";> ; Desired Objects. Beta -betaId -name Alpha -alphaId -name -betaRef (Beta obj) Questions: Any k

RE: [flexcoders] Re: Getting rounded corners on List focus rectangle

2008-08-27 Thread Alex Harui
That is usually altered by subclassing and overriding drawHighlightIndicator From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djepyon Sent: Wednesday, August 27, 2008 3:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Getting rounded corners on List focus re

[flexcoders] Re: Getting rounded corners on List focus rectangle

2008-08-27 Thread djepyon
Ok, I managed to confused myself into thinking the focus rectangle was something else. This does work for the focus rectangle. What I was trying to do is set rounded edges on was the highlight that appears when you roll over items in a list. Sorry for the confusion there. --- In flexcoders@yahoogr

[flexcoders] Scene7.com Webinar on 9/11/08, ask some serious questions, examine answers seriously, see if they're answered with depth

2008-08-27 Thread Robert Thompson
See Scene7.com Webinar on 9/11/08, ask some serious questions, examine answers seriously, see if they're answered with depth I won't discuss Microsoft because of certain circumstances, but I'll tell you there's danger in the upper echelons, things you have no idea of. As far as Adobe, the

[flexcoders] Are the Formatters buggy or is it just me?

2008-08-27 Thread TJ Downes
I've spent a couple days on this issue and I've come to no resolution. I've spent considerable time in the debugger tracing things down and cannot see where the problem is. Here's the use case: I have a phone number field. On fousOut, I validate the field and if it is a valid phone number I apply

RE: [flexcoders] Getting rounded corners on List focus rectangle

2008-08-27 Thread Alex Harui
cornerRadius From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djepyon Sent: Wednesday, August 27, 2008 1:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Getting rounded corners on List focus rectangle I'm setting focusRoundedCorners="tl tr bl br" on a Li

RE: [flexcoders] popup changes title only in IE

2008-08-27 Thread Alex Harui
Sounds like a bug. Make a simple test case and file it. Try turning of historyManagementEnabled if you aren't using it From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of paulbohnenkamp Sent: Wednesday, August 27, 2008 1:24 PM To: flexcoders@yahoogroups.com Subject: [flexc

[flexcoders] Grouped Collection and sorting

2008-08-27 Thread reflexactions
I want to have a grouped collection where the rows at the lowest level are sorted on a particular field. A bit like group by classname then sort on lastname. How can this be done I tried using a sort on the orginal flat collection that was the source of the GC but the GC seems to remove that s

Re: [flexcoders] Need Help and Guidance desperately

2008-08-27 Thread anuj sharma
Dough I forgot to mention that i am not sure if i can force the components into either rows or columns because I am allowing free flow of the image within the container too which means that the user should be able to resize the image and should be able to drag and drop the image too whereever he wa

[flexcoders] Re: Whitepaper and Webinar -- Please read the Scene7.com posts Objectively

2008-08-27 Thread Tim Hoff
Robert, Please do us all a favor and start your own blog. That's really the appropriate place for comentary. I appologize for faning the FLAME, but this thread should have died a long time ago. Thank you, -TH --- In flexcoders@yahoogroups.com, Robert Thompson <[EMAIL PROTECTED]> wrote: > > A

Re: [flexcoders] Re: 3596: Duplicate variable definition -- not sure why I'm getting it here

2008-08-27 Thread Doug McCune
Project->Clean then Project->Build On Wed, Aug 27, 2008 at 1:43 PM, Mark <[EMAIL PROTECTED]> wrote: > good point, it works. How do you clean and rebuild a project? Is > that in the documentation somewhere? > > Thanks again, > > Mark > > --- In flexcoders@yahoogroups.com , "Doug > McCune" <[EMAI

[flexcoders] Re: 3596: Duplicate variable definition -- not sure why I'm getting it here

2008-08-27 Thread Mark
good point, it works. How do you clean and rebuild a project? Is that in the documentation somewhere? Thanks again, Mark --- In flexcoders@yahoogroups.com, "Doug McCune" <[EMAIL PROTECTED]> wrote: > > huh, yeah, that's kinda what I thought, but that's weird. sounds like maybe > the warnings a

Re: [flexcoders] Need Help and Guidance desperately

2008-08-27 Thread anuj sharma
Doug Thanks for the reply. if you find any resources that might help me, please e-mail it to me. I would appreciate any kind of help in achieving this target Anuj On Wed, Aug 27, 2008 at 9:34 AM, Doug McCune <[EMAIL PROTECTED]> wrote: > Oh wow, that's actually a really flexible layout requireme

Re: [flexcoders] Re: 3596: Duplicate variable definition -- not sure why I'm getting it here

2008-08-27 Thread Doug McCune
huh, yeah, that's kinda what I thought, but that's weird. sounds like maybe the warnings are wrong (ie the compiler didn't re-check the files). Try cleaning and rebuilding the project. Or try closing and re-opening FB and see if there's still there. I think you're right in expecting your change to

[flexcoders] Re: 3596: Duplicate variable definition -- not sure why I'm getting it here

2008-08-27 Thread Mark
Sorry, that would have been smart to put that info in there. I'm getting the warning at the else if and else on the for loops on variable i, m, and q. for (i in regArray) { // for (m in originArray){ // for (q in targetArray){ At first I had thes

[flexcoders] popup changes title only in IE

2008-08-27 Thread paulbohnenkamp
I have a lot of popups in my app and in IE I'm seeing the title change when one of the popups is launched. The title changes to something like #app=... Is there a way to fix this? I want the title to always stay the same.

Re: [flexcoders] 3596: Duplicate variable definition -- not sure why I'm getting it here

2008-08-27 Thread Doug McCune
what line is giving you the warning? which variable is the compiler saying is the duplicate? On Wed, Aug 27, 2008 at 1:18 PM, Mark <[EMAIL PROTECTED]> wrote: > Can someone lend their eyes on this and why I'm getting that warning. > > Thanks > Mark > > public function doSLFilter(item:Object):Boo

[flexcoders] Getting rounded corners on List focus rectangle

2008-08-27 Thread djepyon
I'm setting focusRoundedCorners="tl tr bl br" on a List component but the focus rectangle doesn't have round corners. What else is involved in doing this? Thanks all.

Re: [flexcoders] Will Scene 7 turn Adobe into a competitor of it's ISVs like Microsoft ???

2008-08-27 Thread Howard Fore
At the risk of fanning the flames (and flamers), what exactly do you think has happened in the MS developer world? It seems to me that there are plenty of jobs using MS-centric technologies. On Wed, Aug 27, 2008 at 11:02 AM, Robert Thompson <[EMAIL PROTECTED]>wrote: > Developers young and experi

Re: [flexcoders] Whitepaper and Webinar -- Please read the Scene7.com posts Objectively

2008-08-27 Thread Robert Thompson
As Adam Sandler would say, and I'll just quote him to be kind, "Ha, ha, ha, ha, ha..Shut up". :-) That Arm may atrophy for all we know; develop some kind of, h (sorry my mouth got stuck from your gum), cancer or disease? Thought I'd return a joke with a joke (but take the other par

[flexcoders] 3596: Duplicate variable definition -- not sure why I'm getting it here

2008-08-27 Thread Mark
Can someone lend their eyes on this and why I'm getting that warning. Thanks Mark public function doSLFilter(item:Object):Boolean { // var i:String; var m:String; var q:String; //trace("target ALL --> " + item.title + "\r" + item.targetAll + "\r");

Re: [flexcoders] Whitepaper and Webinar -- Please read the Scene7.com posts Objectively

2008-08-27 Thread Douglas Knudsen
At least it appears you are not chewing gum whilst, ummm, typing now. Someone care to tell Robert that Adobe has a consulting arm? Oddly enough its called Adobe Consulting and its not really a spring pup either. ..exit stage left! DK On Wed, Aug 27, 2008 at 2:38 PM, Doug McCune <[EMAIL PRO

Re: [flexcoders] September 11th WEBINAR by SCENE7.com on solutions like LAND's END STORE

2008-08-27 Thread Robert Thompson
I'm not interested in any such thing but that is a nice joke (your mentioning of a "class action lawsuit" but I will be looking out for the community for no interest other than the younger up and coming developers). I'm too interested in my Musicology research to get into that kind of busi

[flexcoders] Re: How do I remove the arrow for a node in the Tree

2008-08-27 Thread randalma2120
Thanks that worked ... now back to PeterD's Blog to get the code to open by clicking the row. --- In flexcoders@yahoogroups.com, "Doug McCune" <[EMAIL PROTECTED]> wrote: > > that's controlled by two different styles: disclosureClosedIcon and > disclosureOpenIcon > > Doug > > On Wed, Aug 27, 2008

Re: [flexcoders] Whitepaper and Webinar -- Please read the Scene7.com posts Objectively

2008-08-27 Thread Robert Thompson
Leave it alone for this group for the time being yes. Leave it alone for the coming months and years, no. Just look at the LAND's END example at www.Scene7.com when you try out the Trial. This is Adobe competing against the developers it sells to. This is not about me, it's about Ear-Markin

Re: [flexcoders] Flex 3 Architecture Help

2008-08-27 Thread Michael Schmalle
Hi, you need to look in the defaults.css in the sdk folder. This is what determines the skins. It is baked into a normal flex compile. You can look at the default flex config that gets loaded, it sets default theme and css. Mike On Wed, Aug 27, 2008 at 2:14 PM, nathanpdaniel <[EMAIL PROTECTED]>

Re: [flexcoders] playerProductInstall doesn't show up in tiny window. Can I change that?

2008-08-27 Thread Nate Beck
I ran into the same issue while writing a Record by microphone application. The security popup to allow access to the user's microphone conforms to the same width height requirements. It would not show up unless the swf was large enough to display it. Since we controlled the containing HTML page

Re: [flexcoders] RAITest, Selenium, QuickTest, Silk?

2008-08-27 Thread Nate Beck
Hey Douglas, We just did the exact same thing you're doing. We tried RIATest, Selenium & QTP. Quick Test Pro ended up being our choice. We have a very complex application with custom components, and around 35 Modules. QTP blew the others out of the water, well worth the price. Hope this helps,

Re: [flexcoders] How do I remove the arrow for a node in the Tree

2008-08-27 Thread Doug McCune
that's controlled by two different styles: disclosureClosedIcon and disclosureOpenIcon Doug On Wed, Aug 27, 2008 at 12:16 PM, randalma2120 <[EMAIL PROTECTED]>wrote: > I created a Tree with new icons for folderOpen and folderClosed but I > still have the arrow. Can someone show or point me to h

Re: [flexcoders] How do I remove the arrow for a node in the Tree

2008-08-27 Thread ivo
You might also need to set disclosureClosedIcon disclosureOpenIcon -Ivo - Original Message From: randalma2120 <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, August 27, 2008 12:16:45 PM Subject: [flexcoders] How do I remove the arrow for a node in the Tree I cr

[flexcoders] How do I remove the arrow for a node in the Tree

2008-08-27 Thread randalma2120
I created a Tree with new icons for folderOpen and folderClosed but I still have the arrow. Can someone show or point me to how to remove this. Used this is the CSS Tree { defaultLeafIcon: Embed("icons/application.png"); folderOpenIcon: Embed("icons/minus.png"); folderClos

[flexcoders] Re: Help FLEX 3 and jasperReports

2008-08-27 Thread ansury2001
Hey there - how did you implement security doing this? I've got this done and working, but obviously whenever someone copy/pastes the report's url - there's the report! Doh! Well, we can't allow that, so we'll have to do some kind of security check. We don't have a session, so nothing to send..

Re: [flexcoders] playerProductInstall doesn't show up in tiny window. Can I change that?

2008-08-27 Thread ivo
You might need to use SWFObject (http://code.google.com/p/swfobject/wiki/documentation) or create your own. - Ivo - Original Message From: whatabrain <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, August 27, 2008 11:49:54 AM Subject: [flexcoders] playerProductInsta

Re: [flexcoders] Re: Fireworks / Photoshop Skinning

2008-08-27 Thread Nancy Gill
ed). any ideas here? > > Thanks in advance! :D > __ Information from ESET NOD32 Antivirus, version of virus signature database 3393 (20080827) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com

RE: [flexcoders] Re: Does anyone know how to save the content from a datagrid

2008-08-27 Thread Tracy Spratt
Sure, this is pretty standard. We need to see what you are trying before we can suggest what might be the problem. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tyrown parks Sent: Wednesday, August 27, 2008 2:47 PM To: flexc

[flexcoders] playerProductInstall doesn't show up in tiny window. Can I change that?

2008-08-27 Thread whatabrain
I've created a flex app that's 154x150. If the user doesn't have the right version of Flash, playerProductInstall.swf gets loaded. The problem is, if the "Adobe Flash Player Update" popup doesn't fit in the client area, it isn't drawn at all. You just get a blank area. I've determined that the

RE: [flexcoders] Re: Does anyone know how to save the content from a datagrid

2008-08-27 Thread tyrown parks
Ok currently I have a source coming from the database into a list.  I am able to drag elements from that source into this empty list (array).  I want to be able to send that new list back to the server.  However all methods I have attempted to send it back, have not worked.  I will give more det

RE: [flexcoders] generate size report in flex?

2008-08-27 Thread Yochikoh Haruomi
In flash IDE,  we can get the size report  from File->Publish settings->Options-> generate size report. The size report gives the list of what the total file size comprises of Eg. the text bytes, actionscript bytes, font bytes etc. Yes, link-report is what i'm looking for. Thanks for your help!

Re: [flexcoders] Whitepaper and Webinar -- Please read the Scene7.com posts Objectively

2008-08-27 Thread Doug McCune
Well, as long as we've got public defenders like yourself who will contact the Department of Justice, I feel safe. Let's do a class action lawsuit for buzzword and photoshop express while we're at it. [sorry, sometimes I just can't help poking threads that I know I should just let die] Doug On W

[flexcoders] Re: Fireworks / Photoshop Skinning

2008-08-27 Thread nathanpdaniel
Anybody? :D --- In flexcoders@yahoogroups.com, "nathanpdaniel" <[EMAIL PROTECTED]> wrote: > > I have downloaded the Fireworks MXP to create Flex Skins and installed > it. According to the "read me" and documentation - There should be > a "Command->Create Flex Skin" (or something along those li

[flexcoders] RAITest, Selenium, QuickTest, Silk?

2008-08-27 Thread Douglas McCarroll
Hi All, My company is thinking of implementing automated functional testing for our Flex-based application. Do any of you have experience with these products that you'd care to share? Or, if not, do you know of any insightful online articles, etc? Thanks in advance! Douglas

[flexcoders] Flex 3 Architecture Help

2008-08-27 Thread nathanpdaniel
I'm trying to understand how it works - I'm looking in the Source at the CheckBox component. I don't understand how the CheckBox.as component and the CheckBoxIcon.as skins come together - if that makes any sense.. ? What determines when I do , it actually LOOKS like a checkbox - rather than a

RE: [flexcoders] Re: Does anyone know how to save the content from a datagrid

2008-08-27 Thread Tracy Spratt
The drop target has a dataProvider too, and it will contain what you dropped into it. Still guess I do not understand the question. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tyrownp Sent: Wednesday, August 27, 2008 1:04

Re: [flexcoders] Module unloading

2008-08-27 Thread Simon Bailey
This all stems down to Flash Player 9's garbage collection routine. Its a known issue and is apparently resolved in Flash Player 10. I also had similar results and actually managed to make significant progress as I have detailed here: http://www.nutrixinteractive.com/blog/?p=132 Have a l

RE: [flexcoders] How do I enter 2 arrays into one arraycollection

2008-08-27 Thread Tracy Spratt
Yeah, simple splice or concat probably wont work for your case after all. You will need to build your AC manually as Scott and ivo suggest. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Terry Allen Sent: Wednesday, August 27, 2

[flexcoders] Module unloading

2008-08-27 Thread cuttenv
There seems to be an issue with modules unloading in an application. I have a very simple application that just loads a module. The module is a repeating animation that is processor intensive. I unload the module by calling unloadModule() method on the moduleLoader and setting the url = null

Re: [flexcoders] Changing itemEditors of a DataGrid a row basis

2008-08-27 Thread Weyert de Boer
Setting the properties property of the ClassFactory also worked: properties.dataProvider = new Array( 1, 2, 3, 4, 5 ); > Subclass ComboBox and preset its dataprovider > > > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] > *On Behalf Of *Weyert de Boer > *Sent:*

RE: [flexcoders] Whitepaper and Webinar -- Please read the Scene7.com posts Objectively

2008-08-27 Thread Battershall, Jeff
If Adobe had not acquired Macromedia, Flex would not be what it is today, becuase if you haven't noticed, a whole bunch of money got thrown at it to evolve the framework, not to mention the Flash Player itself. I think there's more than enough opportunity to create solutions that may compete with a

Re: [flexcoders] How do I enter 2 arrays into one arraycollection

2008-08-27 Thread ivo
I think the arrays will need to be converted to some sort of simple objects, the parent will need a children field that consists of myChildrenArray: var _kid:Object = {type: myChildrenArray[0], name: myChildrenArray[1]}; var __mom:Object = {type: myParentArray[0], name: myParentArray[1], children

[flexcoders] Re: treeview advanced datagrid

2008-08-27 Thread natjai
Thanks in advance for any advice at all... --- In flexcoders@yahoogroups.com, "natjai" <[EMAIL PROTECTED]> wrote: > > I am looking to filter on tree view of an advanced datagrid. (Assuming > there are two columns item-name, misc-info. item-name object contains > the children objects, each having a

[flexcoders] Re: Does anyone know how to save the content from a datagrid

2008-08-27 Thread tyrownp
Ok let me clarify the datagrid is the result of a drop target, so the original dataprovider is actually an empty arraycollection. --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Sure, just send the entire dataProvider. > > Tracy > > > > __

Re: [flexcoders] Whitepaper and Webinar -- Please read the Scene7.com posts Objectively

2008-08-27 Thread Robert Thompson
Looks like my thoughts have been confirmed, by someone. Selling development tools and having a developer community is one of the best kept secrets in the "Evangelist" style of Marketing. The first time a FLEX developer bids on a project and the client tells them they are using Adobe Scene7,

Re: [flexcoders] How do I enter 2 arrays into one arraycollection

2008-08-27 Thread Terry Allen
Thank you both for your replies. Tracy, if I were to concat() the two arrays, how would I be able to slip in the children field in the first array that represents the data from the second array. Basically, I am attempting to populate a advancedDatagrid using the combination of two amfphp array

[flexcoders] Re: Library project that includes another SWC - Classes in included SWC not found

2008-08-27 Thread bick
Just in case anyone else stumbles across this post - I've discovered the solution: The child swc must be included as part of the compiler options. You can't expect the child swc to have all its classes compiled in just by adding it to the libary path in the Flex Library Build Path under the Flex L

RE: [flexcoders] Loading an ActiveX Control

2008-08-27 Thread Tracy Spratt
No. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Zuberul Islam Sent: Wednesday, August 27, 2008 2:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Loading an ActiveX Control Hello All, is there any way to load an

RE: [flexcoders] How do I enter 2 arrays into one arraycollection

2008-08-27 Thread Tracy Spratt
Also, you could splice() or concat() the source arrays, then wrap the result in ArrayCollection. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Melby Sent: Wednesday, August 27, 2008 12:08 PM To: flexcoders@yahoogroups.com

[flexcoders] Re: AdvancedDataGrid changing background color of Group Headers

2008-08-27 Thread Amy
--- In flexcoders@yahoogroups.com, "anandvardhan.flex" <[EMAIL PROTECTED]> wrote: > > I need to access the first row of each group in AdvancedDataGrid, and > change its background color. is there any way to do it. I found one > way accessing the column using GroupItemRenderer but it only controls

RE: [flexcoders] Does anyone know how to save the content from a datagrid

2008-08-27 Thread Tracy Spratt
Sure, just send the entire dataProvider. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tyrownp Sent: Wednesday, August 27, 2008 11:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Does anyone know how to save the conte

Re: [flexcoders] Need Help and Guidance desperately

2008-08-27 Thread Doug McCune
Oh wow, that's actually a really flexible layout requirement that I don't think you can achieve with any of the components out there right now (ie TileList, Tile, combination of HBox and VBox, or even FlowBox). I think you may have to lose of of the desired functionality and allow the content to be

Re: [flexcoders] How do I enter 2 arrays into one arraycollection

2008-08-27 Thread Scott Melby
Brute force approach (not sure if it'll compile, but it'll get you close): var combinedArray:Array = new Array(); for each(var obj:Object in array1) { combinedArray.push(obj); } for each(obj in array2) { combinedArray.push(obj); } myArrayCollection.source = combinedArray; hth Scott --

[flexcoders] Re: I'm trying to get a value from 1 array based off the ID in another.

2008-08-27 Thread jason_graves2003
That Worked! Thank You!! --- In flexcoders@yahoogroups.com, "actionscript_czar" <[EMAIL PROTECTED]> wrote: > > Assuming that rankgradeID is the index of another array it would be > easy > rankGrade = model.rankArray > [model.student.RANKGRADEID].RANKABBRIVIATION; > > Otherwise you might look

RE: [flexcoders] Changing itemEditors of a DataGrid a row basis

2008-08-27 Thread Alex Harui
Subclass ComboBox and preset its dataprovider From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: Wednesday, August 27, 2008 5:54 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Changing itemEditors of a DataGrid a row basis Hello Alex,

[flexcoders] Does anyone know how to save the content from a datagrid

2008-08-27 Thread tyrownp
to the database without selecting and item.

RE: [flexcoders] Re: help binding to combo box selectedItem

2008-08-27 Thread Alex Harui
Sorry, can't help you if you aren't using Flex code From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rss181919 Sent: Wednesday, August 27, 2008 6:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: help binding to combo box selectedItem NtpClass is just a N

RE: [flexcoders] change direction of the combo box opening

2008-08-27 Thread Alex Harui
PopUpMenuButton? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of samata Sent: Wednesday, August 27, 2008 6:55 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] change direction of the combo box opening Hi, I wanted to know how to change direction of the combo

[flexcoders] Re: I'm trying to get a value from 1 array based off the ID in another.

2008-08-27 Thread actionscript_czar
Assuming that rankgradeID is the index of another array it would be easy rankGrade = model.rankArray [model.student.RANKGRADEID].RANKABBRIVIATION; Otherwise you might look into using a dictionary rather than a simple array. Then, the code above would work as long as model.rankTable used RANKGR

[flexcoders] Re: Help, Random module load issues.

2008-08-27 Thread Gus
You could also try disabling the historyManagement to see if its the only problem, but you could encounter the shared code problem later... --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > The stack trace indicates the shared code problem described on my blog > in the

[flexcoders] Re: Library project that includes another SWC - Classes in included SWC not found

2008-08-27 Thread bick
The problem is that the parent swc only includes those classes in the library swc that the parent swc statically links through it's included classes. This means you can't include two swcs in a parent swc without also including classes referencing the included swc classes. Is there a compiler argu

[flexcoders] I'm trying to get a value from 1 array based off the ID in another.

2008-08-27 Thread jason_graves2003
Something like this. rankGrade = model.rankArray.RANKABBRIVIATION where model.rankArray.RANKGRADEID = model.student.RANKGRADEID I'm sure this is simple, but I'm at a loss.

RE: [flexcoders] Whitepaper and Webinar -- Please read the Scene7.com posts Objectively

2008-08-27 Thread Battershall, Jeff
At this point, Adobe is not likely to abandon Scene7 due to developer concerns. The way I see it, Adobe has been taking on consulting engagements for some time, just like IBM does, and I think having an offering of best of breed off-the-shelf solutions fits in well with that stategy. I don't thin

[flexcoders] Re: any good way to make the pie take up the whole chart bounds?

2008-08-27 Thread lynxoid7
Jason, I have run into the same problem, but haven't come up with a solution. Have you resolved it in some way? --- In flexcoders@yahoogroups.com, "Pan Troglodytes" <[EMAIL PROTECTED]> wrote: > > I'm trying to get a pie that takes up the full height and width of the given > PieChart element. Unfo

[flexcoders] Re: Whitepaper and Webinar -- Please read the Scene7.com posts Objectively

2008-08-27 Thread Tim Hoff
Look pretty cool. Thanks for the link. -TH --- In flexcoders@yahoogroups.com, Robert Thompson <[EMAIL PROTECTED]> wrote: > > There is no harm meant in my postings. > > I'm posting so we are all aware of what may be going on with > Scene7.com and it's implications to the FLEX and Flash CS3 d

[flexcoders] Whitepaper and Webinar -- Please read the Scene7.com posts Objectively

2008-08-27 Thread Robert Thompson
There is no harm meant in my postings. I'm posting so we are all aware of what may be going on with Scene7.com and it's implications to the FLEX and Flash CS3 development community. I'm a freelance developer, not with a large corporation. The Whitepaper is available on www.Scene7.com and I

  1   2   >