[flexcoders] Re: Source not found error when debugging

2007-01-18 Thread Yan Bilik
--- In flexcoders@yahoogroups.com, rumpleminzeflickr [EMAIL PROTECTED] wrote: Hi there, When I run a project in debug mode I get an error, source not found error. Any ideas of what may be causing this? Many thanks, Brett Maybe this is related to MX components or classes for which

Re: [flexcoders] Re: Source not found error when debugging

2007-01-18 Thread Angus Johnson
I use to see this occasionally in FB 2.0. What you can do is add the missing source to your build path in your project properties. Error seems to go away. On 18/01/07, Yan Bilik [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, rumpleminzeflickr [EMAIL

Re: [flexcoders] Re: QTP plug in requires FDS?! That's crazy

2007-01-18 Thread Rich Tretola
Will it not run against FDS lite single cpu (Free)? Rich On 1/18/07, Matt Chotin [EMAIL PROTECTED] wrote: Hi all, Given QTP's cost without any Adobe involvement it struck us that most customers who wanted to use the QTP plugin would probably be enterprises who would also be interested

[flexcoders] Re: Setting the backgroundcolor of a canvas with a function - Newbie alert

2007-01-18 Thread Cato Paus
Hi here is a working Code :) as you see the input to the public function is as you did; String. but we return a uint, as you see the whole public function is in {} this is for binding the public function to the backgound. Cato ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: Module Interface Problems

2007-01-18 Thread kristian_wright2002
Tried strong typing, but no luck! Thanks though! K. --- In flexcoders@yahoogroups.com, Roger Gonzalez [EMAIL PROTECTED] wrote: For what its worth, it appears at first glance that your code should work. Have you tried strong typing rather than using *? var results:IResults=

RE: [flexcoders] Re: QTP plug in requires FDS?! That's crazy

2007-01-18 Thread João Fernandes
Noup, You’ll need a FDS serial number (Dep or Ent). There is also the other side which Matt didn’t mention, those who afforded a FDS license but don’t have a QTP one. I could convince (not easy) my company to acquire the FDS upgrade but asking now a QTP license… João Fernandes From:

[flexcoders] Re: Module Interface Problems

2007-01-18 Thread kristian_wright2002
I tried the following: private function readyModule(evt:Event):void { modResult = new Object; modResult = modMyModule2.child as IResults; if (modResult.searchResults==null){trace(NULL!);} else{trace(NOT NULL!);} modResult.searchResults = arrSearchResults; } but it crashes at the

Re: [flexcoders] Re: Total used memory

2007-01-18 Thread Tom Chiverton
On Wednesday 17 January 2007 17:19, fliabrussa wrote: http://www.managernet.com.ar/MemoryNav/MemoryNavigator.html You can see it your. Click on the button COMPONENT WITHNAVIGATOR and see that the memory grows much and never it lowers. If beams click in SIMPLE COMPONENT you see that one

Re: [flexcoders] HDivideBox

2007-01-18 Thread Pablo
Probably nobody occures this task :( among you and me. I guess that need to write fully custom layout for this. On 1/15/07, Lieven Cardoen [EMAIL PROTECTED] wrote: Hi guys, Is there a way to have a HdivideBox, but where the right part can be opened and closed. I need a property kind of

Re: [flexcoders] Re: Code behind- do you use it?

2007-01-18 Thread Roman Protsiuk
Hi, everybody. Interesting thing that just recently we had discussion at our team about code-behind and why should we use it or use not. The point we are at the moment is: we've used code-behind more like legacy related thing from Flex 1.5 (FlexBuilder) and now we've got a lot of classes which

[flexcoders] Re: Updating a DataService fill

2007-01-18 Thread spirit_ryder2k
Here's the output from the moment that I create a new thread. I don't see any update message for the destination CategoryDS. -- [Flex] Ignoring set property uid for type nl.hro.gmt.workshop.remote.Thread as a setter could not be

[flexcoders] Re: Updating a DataService fill

2007-01-18 Thread spirit_ryder2k
Whoops, seems like I missed a part [Flex] Started transaction using jndi name: java:comp/UserTransaction [Flex] Queuing refresh fill till commit for CategoryDS with parameters: null [Flex] Committed transaction [Flex] Committed transaction [Flex] Refresh fill: destination=CategoryDS

Re: [flexcoders] Application without FDS?

2007-01-18 Thread Tom Chiverton
On Thursday 18 January 2007 05:38, sanjaypmg wrote: If yes, How can I call my java's remote object? Yes, as a web service. -- Tom Chiverton Helping to evangelistically seize eligible m-commerce This email is sent for and on behalf of

Re: [flexcoders] Launching FlexBuilder from multiple User accounts

2007-01-18 Thread Tom Chiverton
On Wednesday 17 January 2007 03:07, wardmruth wrote: Anyone else run into this? Is this some sort of licensing check? I though about trying to launch FB providing the -data flag -- how would I supply I would guess Eclipse can't read some file because it is owned by the original user. -- Tom

Re: [flexcoders] It shouldn't be this hard.

2007-01-18 Thread Roman Protsiuk
The first thought is: mx:Canvas width=100% height=100% mx:Image source={yourSource} horizontalCenter=0 verticalCenter=0 / /mx:Canvas To scale, dunno, but maybe something like: mx:Canvas id=imageContainer width=100% height=100% mx:Image id=image source={yourSource}

Re: [flexcoders] Slightly OT - The Limitations of CFMX 7.02

2007-01-18 Thread Tom Chiverton
On Wednesday 17 January 2007 20:53, João Fernandes wrote: Try to set a break point in your remote call result event and see what is returned. Raise the log level to debug in the bottom part of your services-config.xml too - this will dump the contents of all the objects as they go past. --

Re: [flexcoders] Re: QTP plug in requires FDS?! That's crazy

2007-01-18 Thread Tom Chiverton
On Wednesday 17 January 2007 19:20, Tariq Ahmed wrote: I know FDS being required wasn't done for the hell of it, but architecturally it should have been an option that provides extra benefits, You'd have thought so. those who know me, I'm Flex's biggest fan. It feels like the Flex

RE: [flexcoders] Re: title window on app first run

2007-01-18 Thread Stephen Gilson
There are several examples in the doc starting here: http://livedocs.macromedia.com/flex/201/html/layouts_065_43.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jonalexander370 Sent: Wednesday, January 17, 2007 3:57 PM To:

RE: [flexcoders] Re: title window on app first run

2007-01-18 Thread Tracy Spratt
Not so fast Doug! Here is a full example: Tracy ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=* layout=vertical creationComplete=initApp() mx:Script![CDATA[ //import mx.rpc.events.ResultEvent; import

[flexcoders] How to embed FlashType font?

2007-01-18 Thread zedan_gu
Hi, I have a trouble about FlashType font. I created a swf file follow Creating Flash 8 files with embedded FlashType fonts in Adobe Flex2 Help(Flex2 Developer's Guide), and then want to embed it in flex with code that: @font-face { src:url(/Font/test2.swf); fontFamily:

RE: [flexcoders] Re: title window on app first run

2007-01-18 Thread Tracy Spratt
Sorry if this goes twice, we were having network problems. From: Tracy Spratt Sent: Wednesday, January 17, 2007 4:40 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Re: title window on app first run Not so fast Doug! Here is a full example:

[flexcoders] QTP doesn't recognize me!

2007-01-18 Thread KOMON Kazuya
Hi all, Have you used Automation testing? It's very exciting tool! So, I trid to use it. BTW, QTP doesn't recognize my app's operation. I checked to make sure the following steps is done. - prepare the physical environments (e.g. FlashPlayer/IE/QTP9.1 etc) - install the QTP_Plugin_Installer -

[flexcoders] css's speed

2007-01-18 Thread Aedis
css.css and css in mxml which one is faster?

Re: [flexcoders] Slightly OT - The Limitations of CFMX 7.02

2007-01-18 Thread Adam Dorritie
On 1/17/07, Battershall, Jeff [EMAIL PROTECTED] wrote: I've been using CFMX 7.02's ability translate CFCs to AS objects but have noticed the following limitation: If I have an array of objects (like CFCs) in my CFC/AS class def - these will not translate over the wire and I'm forced to

[flexcoders] css.css and css in .mxml, which one is faster?

2007-01-18 Thread aedisju
hello! css.css and css in .mxml, which one is faster?

[flexcoders] Context menu Submenu

2007-01-18 Thread alok512522
Is it possible to have a context menu item which has a child sub-menu. Currently I have a COntext menu item and when i click it I open another regular Flex Menu where it is possible to create a sub-menu. But when you right click and the Adobe COntext menu pops up there i am unable to add a

[flexcoders] Repeater and RadioButtonGroup; Can it be done?

2007-01-18 Thread wlbagent
I'm trying to use Repeaters to create multiple RadioButtonGroups. I get the following compiler error Unable to generate initialization code within Repeater, due to id or data binding on a component that is not a visual child. RadioButtonGroup is non-visual so short of creating my own class how

RE: [flexcoders] HDivideBox

2007-01-18 Thread Jason Hawryluk
I have something you'll be interested in, If your still looking? If nothing else it'll give you a really good start toward a solution *nice*. Post back here, and I’ll take the time to post it on my blog in the next hour or so. Jason -Message d'origine- De :

Re: [flexcoders] Is this a bug about FocusEvents and popupmanager?

2007-01-18 Thread Roman Protsiuk
It is more likely Firefox bug. Are you using this browser? Because the described behavior is reproducible in Firefox but not in IE. Try to search older posts in list seems to me that I saw this problem being discussed here. R. On 1/17/07, eren bali [EMAIL PROTECTED] wrote: Hi to all, I

RE: [flexcoders] Re: Application without FDS?

2007-01-18 Thread Dimitrios Gianninas
Advantages: - you can create great RIAs - use HTTP or WebServices to connect to server-side stuff Disadvantges: - you cannot call Java/CFC directly - you wont have the data sync management feature - you wont be able to connect to JMS queues/topics Remeber you can always use FDS express for

RE: [flexcoders] QTP doesn't recognize me!

2007-01-18 Thread Dimitrios Gianninas
Ok I just installed QTP a couple days ago, here are things to make sure it is working: - make sure you have QTP 9.1 - when compiling the app, make sure u include the following libraries:

[flexcoders] Probably dead simple but......

2007-01-18 Thread sanyobn2
HI, Been thrashing about all morning with this. I cant get two variables that I have passed in as 'flashVars' to act as mx:request options for accessing a web service, I can use them as on everything else (text etc) but when i call the webservice nothing is passed. Sure it must be easy but

[flexcoders] Re: if statement in my datagrid wacky return

2007-01-18 Thread mazarflex
ahhh!! thanks so much, this is exactly what i wanted. thanks!!!

RE: [flexcoders] Re: Do you trust auto-update?

2007-01-18 Thread João Fernandes
Ben, I would love to give my opinion but I’m in the ‘corporate’ side so this doesn’t apply to us. João Fernandes From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: 18 January 2007 13:59 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

RE: [flexcoders] It shouldn't be this hard.

2007-01-18 Thread Matt Horn
I hate the flex documentation... Also, if there are specific problems with the documentation, please let the doc team know by either posting to this list, adding a comment to livedocs, or filing a bug at http://www.adobe.com/go/wish. Thanks, matt horn flex docs -Original

[flexcoders] error when including a swc ?

2007-01-18 Thread arpan srivastava
Hi All, I have a SWC file, but when i try to load it in any project it gives error: Error: unable to load xyz.swc : multiple points and one thing more, how do you compile a Flex Library Project.

Re: [flexcoders] error when including a swc ?

2007-01-18 Thread Darron J. Schall
To compile a Flex Library project, you have to edit the project properties and select the classes that you want to be included in the library. Upon doing so, the .swc file will be built. For some more instruction, you might want to check out a wiki article I made for the AS 3.0 libraries on

[flexcoders] How can I do to add a background color for datagrid header?

2007-01-18 Thread zedan_gu
I¡¯m attempting to add a background color for datagrid header when user clicks the header to sort the data, to indicate which column was sorted, how can I achieve this? I want to get the header which user click, and then set it¡¯s background color style, but I can¡¯t get the header, getChildAt()

[flexcoders] IFocusManagerComponent and removePopUp

2007-01-18 Thread Roman Protsiuk
Hi, everyone. As I understand in order to properly handle focusOut event for my component it should implement IFocusManagerComponent. The component I develop is a pop-up window. Then strange and very unpleasant bug appear. After I set focus to one of my components child and after I click a button

[flexcoders] i love flex.

2007-01-18 Thread kasey.mccurdy
i just wanted to say that. i really think adobe (well, the macromedia team) has done an amazing job in creating an amazing framework... and no, im not a macromedia employee. that is all ... i hope all my fellow flex-coders have an awesome day...

[flexcoders] Re: title window on app first run

2007-01-18 Thread jonalexander370
Hi Tracy, Yesterday, Doug McCune completed a working layout and also included a CSS Style. Thank you for everyone's many suggestions and thoughtful assistance. I shall use the code provided by Doug McCune as well as all the code and references shared with me, so that I may further my knowledge

[flexcoders] Transactions with DataManagementService

2007-01-18 Thread fabio_sebastiano
Hi all, I've got a question about transactions with FDS and DataManagement Service Assemblers. I would like to know if that's possible to handle multiple changes on dataBase records within the same transaction. Usually FDS handle single actions when the user commit the changes, performing the

RE: [flexcoders] AMFPHP Security

2007-01-18 Thread Zoltan Csibi
Hi, I would like to underline that somebody with good AMF knowledge can craft strongly typed objects and send them to the server-side. If the deleteUser doesn't require authentication and authorization it can be hacked in any language. function deleteUser($userVO) { $userVO-delete(); }

[flexcoders] Browser-difference Netconnection AMF0

2007-01-18 Thread wesubotnix
Hi, After compiling old (Flex 2.0) classes within the 2.01 framework, our amfphp-connection stops working in some client browsers. A NetConnection.Call.BadVersion. error is thrown. The strange thing is that it works fine in Internet Explorer 6, but not IE7, or Firefox2. Could there be a

Re: [flexcoders] Re: urgent

2007-01-18 Thread Tom Chiverton
On Wednesday 17 January 2007 17:23, Shannon Hicks wrote: You could also click the unsubscribe link at the bottom of every email. superstella_uk wrote: Go to http://tech.groups.yahoo.com/group/flexcoders http://tech.groups.yahoo.com/group/flexcoders and unsubscribe The list is automated.

Re: [flexcoders] IFocusManagerComponent and removePopUp

2007-01-18 Thread Roman Protsiuk
Yeah, and this bug appeared just recently. Is it related with Flash Player 9.0.28 changes or with FlexBuilder 2.0.1 hard to tell. Everything worked as it is without crashes before. R. On 1/18/07, Roman Protsiuk [EMAIL PROTECTED] wrote: Hi, everyone. As I understand in order to properly handle

[flexcoders] Re: Getting a node to accept dropped nodes in a tree

2007-01-18 Thread chrislpigg
Does anyone know how to drop a node onto another node in Flex 2.0. I really need some help... Thanks to whoever can. --- In flexcoders@yahoogroups.com, chrislpigg [EMAIL PROTECTED] wrote: I couldn't find anything in the xml documentation that explains about not being able to drop nodes onto

Re: [flexcoders] Source not found error when debugging

2007-01-18 Thread Tom Chiverton
On Thursday 18 January 2007 00:35, rumpleminzeflickr wrote: When I run a project in debug mode I get an error, source not found error. For what class ? -- Tom Chiverton Helping to preemptively morph essential solutions This email is sent

[flexcoders] Re: problem setting dataprovider of popup from main app

2007-01-18 Thread tinkiknit
Thanks Tracy... Christine --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Oops: http://www.cflex.net/showfiledetails.cfm? ChannelID=1Object=FileobjectI D=558 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] EEK CodeBehind Repeater / RadioButton issue!

2007-01-18 Thread Steve Cox
All, When using the code behind technique to declare the controls you will use in the MXML I have come across an issue I cannot work out a solution for. Usually for controls declaring the id of the control inside the code behind class as public you can access a control you added to mxml. So for

[flexcoders] Annoying problem - urgent!!!

2007-01-18 Thread Lieven Cardoen
I have a really annoying problem. If I run or debug my flex application, it keeps on giving me a version of yesterday. Flex won't compile a new swf... Lieven Cardoen Lieven Cardoen Application developer indiegroup interactive digital experience engelse wandeling 2 k18 b8500 kortrijk

[flexcoders] Re: DataGrid - numeric sort?

2007-01-18 Thread parkerwhirlow
Thanks a bunch, That did work great. PW --- In flexcoders@yahoogroups.com, michael_ramirez44 [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, parkerwhirlow parkerwhirlow@ wrote: DUDE! what the heck ? You must have copied out the labelFunction... thats not

RE: [flexcoders] Annoying problem - urgent!!!

2007-01-18 Thread Steve Cox
Try clicking Project - Clean -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lieven Cardoen Sent: 18 January 2007 16:09 To: flexcoders@yahoogroups.com Subject: [flexcoders] Annoying problem - urgent!!! I have a really annoying problem. If I

[flexcoders] Re: Annoying problem - urgent!!!

2007-01-18 Thread Geoffrey Williams
Did you try a Project Clean...? --- In flexcoders@yahoogroups.com, Lieven Cardoen [EMAIL PROTECTED] wrote: I have a really annoying problem. If I run or debug my flex application, it keeps on giving me a version of yesterday. Flex won't compile a new swf... Lieven Cardoen

Re: [flexcoders] It shouldn't be this hard.

2007-01-18 Thread Russell Sprague
@Matt yea I don't really hate the docs, I was just a little frustrated, because most of the examples are Actionscript examples, and if I am looking for an example of how to do something in mxml, I don't know enough to translate the AS to mxml. @roman I tried the horizontal and

RE: [flexcoders] Annoying problem - urgent!!!

2007-01-18 Thread Brian Holmes
check your error logs. it doesn't compile when it can't because of errors. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lieven Cardoen Sent: Thursday, January 18, 2007 9:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Slightly OT - The Limitations of CFMX 7.02

2007-01-18 Thread Battershall, Jeff
The type=Product[] is a way to make the array returned to be an array of CFC objects. This is a johnny-come-lately syntax addition and I'm not sure where it is documented. Allows you to write code like: cffunction name=getProducts returntype=com.mycompany.model.Product[] cfset var

Re: [flexcoders] It shouldn't be this hard.

2007-01-18 Thread Russell Sprague
Here is the code for the image component mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; mx:Metadata [Event(name=imageLoaded, type=events.ImageLoaded)] /mx:Metadata mx:Script ![CDATA[ import events.ImageLoaded; import flash.events.Event;

RE: [flexcoders] Re: Annoying problem - urgent!!!

2007-01-18 Thread Allen Riddle
If you're web project that the flex app is running in, is in Eclipse, try hitting Refresh (F5) on your web project in Eclipse. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Williams Sent: Thursday, January 18, 2007 10:24 AM

[flexcoders] setting Alert.buttonWidth is a pain

2007-01-18 Thread Pan Troglodytes
The Alert class works fairly well, with one big exception - buttonWidth. The buttons should auto-size to fit the width of their labels by default. It shouldn't be up to the programmer to set the buttonWidth every time. Regular buttons auto-size, so why shouldn't Alert ones? In the meantime, has

RE: [flexcoders] Re: Annoying problem - urgent!!!

2007-01-18 Thread Lieven Cardoen
Thx, guys, tried all the things, and apperently there were some errors which wouldn't go away (even though they were solved)... Now it works again... Lieven From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Allen Riddle Sent:

[flexcoders] An internal build error has occurred. Please check the Error Log.

2007-01-18 Thread chrislpigg
Does anyone know how to fix this error message in Flex 2.0?

Re: [flexcoders] It shouldn't be this hard.

2007-01-18 Thread Shannon Hicks
You could always set the x/y by hand when you load the image. Something like this: loadImage():void { image.source = mynewimage.jpg callLater(centerImage); } centerImage():void { image.x = (wrapper.width / 2) - (image.width / 2); image.y = (wrapper.height/ 2) - (image.height/ 2); }

Re: [flexcoders] AMFPHP Security

2007-01-18 Thread Patrick Mineault
Wouldn't Fluorine and OpenAMF throw a type-coercion error, given that the first argument is typed? Of course, the code in the constructor would be called anyways. Patrick Zoltan Csibi a écrit : Hi, I would like to underline that somebody with good AMF knowledge can craft strongly typed

RE: [flexcoders] Slightly OT - The Limitations of CFMX 7.02

2007-01-18 Thread João Fernandes
Jeff, I don’t think that conversion of CF arrays to ArrayCollection will be supported. I think that CF Arrays will always be Arrays in Flex. For FDS you can define your Products as ArrayCollection because when you return the Catalog object, basically you’re telling to Fill Products

[flexcoders] multiple Selection in DataGrid?

2007-01-18 Thread sanjaypmg
Hi Dude.. Is it possible to selected multiple rows in DataGrid? How can I do that? Regards, Sanjay Sharma

[flexcoders] Canvas ScrollBars problems...

2007-01-18 Thread Lieven Cardoen
I have a component wich extends Canvas (FloorPlan). I add a component extending Container to this Canvas. Now, in this Container, I draw a lot of things and I set the width and height myself so the Canvas show ScrollBars where needed. The problem now is following : If I redraw

RE: [flexcoders] Probably dead simple but......

2007-01-18 Thread Tracy Spratt
Debug this by breaking the issue into parts. Make sure you have the values in the component first. There are several ways to do this, try a few. One alternative to the declaritive style is to set the request object and invoke send() in AS. Tracy

[flexcoders] Re: Application without FDS?

2007-01-18 Thread sanjaypmg
Thanks everybody thanks for your support... If you have more to say, your most welcome...:) Thanks to all Sanjay --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 18 January 2007 05:38, sanjaypmg wrote: If yes, How can I call my java's remote object?

RE: [flexcoders] Re: Application without FDS?

2007-01-18 Thread Tracy Spratt
...flex without FDS... reduced cost and complexity. ..create XMLs at the runtime... this will take some server side code. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent: Thursday, January 18, 2007 1:38 AM

[flexcoders] Re: Does DataGrid properly support ItemPendingError?

2007-01-18 Thread roman_dolgov
Just in case: Found a good article on similar subject: http://weblogs.macromedia.com/mchotin/archives/2004/03/large_data_sets.cfm it's about Flex 1.5, but the same idea can be applied to the Flex 2.0. --- In flexcoders@yahoogroups.com, roman_dolgov [EMAIL PROTECTED] wrote: I am trying to

[flexcoders] Re: Blog post on Flex 2 Developer Certification exam

2007-01-18 Thread lar.drolet
Here is another link I found last night regarding the Flex certification exam: http://www.igorcosta.org/?p=12 On this page is also a link to a PDF with information about the exam. http://www.igorcosta.com/blog/wp-content/uploads/2007/01/Exam_Guide_Flex2.pdf Is this is accurate this exam will

RE: [flexcoders] AMFPHP Security

2007-01-18 Thread Zoltan Csibi
What I mean is: if I can sniff what typed VO an application is receiving, I can craft an AMF packet with: - call to deleteUser - the same VO type (simplified: as we know that this is just a string of the class name followed by other strings describing property names and other binary data with

[flexcoders] Popup TitleWindow with Cairngorm 2

2007-01-18 Thread Steve House
Does anyone have any advice/examples of passing data between a view and a TitleWindow launched with the PopupManager specifically using Cairngorm 2? Thanks, Steve House

[flexcoders] XML and pie charts

2007-01-18 Thread Chris MacGregor
Hello, I'm building a data visualizer for a company based on it's sales fleet. I've got a few questions about XML and pie charts and I'm hoping someone can point me in the right direction to figure this one out. So, I've got this XML document that I'm importing into FLEX that looks a bit like

[flexcoders] Re: Colspans in Datagrid

2007-01-18 Thread missgiggygirl
I could see creating a middle man transformer/interpreter for the data that would make creating grids as easy as the DataGrid allows for. Are you suggesting I create my own control that extends the DataGrid, but is customized more to my requirements? -- Ann

RE: [flexcoders] XML and pie charts

2007-01-18 Thread Ely Greenfield
Hi Chris. It sounds like what you're trying to do, in SQL metaphors, is essentially select a COUNT() with a GROUP BY region, and put the result into a pie chart. This kind of data manipulation is not part of the charts...we assume you're using some other solution higher in the chain (i.e.,

[flexcoders] Re: Making a Hover menu with Flex

2007-01-18 Thread missgiggygirl
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, I would construct your custom 'menu' in whatever component you like that fits your requirements. Create an interface to it if it extends anything core. Then use the PopUpManager.addPopUp() to create the

[flexcoders] Re: Application without FDS?

2007-01-18 Thread whitelines81
Hi Sanjay (and group), I've just started using Flex with Java and did not want to start using FDS, simply because clustering is something we require and currently cannot take the 20K+ licensing fees. We've developed a solution with actionscript and a servlet that does compressed xml back and forth

[flexcoders] Re: Flash 8 and Flex ocx error

2007-01-18 Thread Oscar
I wonder if someone else has have this problem. I have a Flex 2 application with a SWFLoader that loads Flash MX 2004 movies. While switching movies I get this same error: AppName: iexplore.exe AppVer: 6.0.2800.1106 ModName: fldbg9.ocx It is not consistent. It does not happen all the

[flexcoders] Re: AMFPHP Security

2007-01-18 Thread Mark Piller
Zoli is right. Usage of a specific object type in a method signature is irrelevant to security. In fact, you do not even need to know AMF to do it. One could easily use something like ServiceCapture to understand the structure of the argument type then construct a similar object and run it a local

[flexcoders] How to deal with icons in a custom button skin ?

2007-01-18 Thread Laurent Vitalis
Hi, i've started working in Flex 2 last month. I am unable to achieve something I consider simple even after googling a lot and reading my 3 books (as3 cookbook, flex2 training and as3 design patts.). I want to code a button skin which will display a highlight OVER the button icon and text.

RE: [flexcoders] Accessibility - JAWS issue

2007-01-18 Thread Andrew Kirkpatrick
This is an issue with the HTML file that FlexBuilder creates. If you use SWFObject you won't have this extra information voiced. Inspect32 and AccExplorer32 both work with Flex content to expose the MSAA data. Hope this helps, AWK -Original Message- From: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Making a Hover menu with Flex

2007-01-18 Thread Michael Schmalle
Hi, For instance; private var hoverMenu:Menu; hoverMenu = Menu(PopUpManager.createPopUp(this, Menu)); hoverMenu.x = calcXCoord; hoverMenu.y = calcYCoord; hoverMenu.dataProvider = hoverMenuDP; You have complete control over the popup once it is created. All the popup manager does is stick it

Re: [flexcoders] Re: Colspans in Datagrid

2007-01-18 Thread Michael Schmalle
Hi, Well, you could look into itemRenderers for the dataGrid. Honestly, I haven't tinkered much with extending the DataGrid so I can't really tell you from 'my' experience. But, from my experience with the Tree's itemRenderer, you might beable to simulate colspan in the data grid itmeRenderer

RE: [flexcoders] Re: QTP plug in requires FDS?! That's crazy

2007-01-18 Thread Matt Chotin
There is no technical requirement for FDS, we primarily thought we weren't going to charge FDS customers *more* to add testing support for now. I admit it's possible we misjudged the size of the potential audience and we are investigating future alternatives. Matt

Re: [flexcoders] It shouldn't be this hard.

2007-01-18 Thread Russell Sprague
well that is what I thought, but I couldn't get it to work. Shannon Hicks wrote: You could always set the x/y by hand when you load the image. Something like this: loadImage():void { image.source = mynewimage.jpg callLater(centerImage); } centerImage():void { image.x =

[flexcoders] Application exit handler

2007-01-18 Thread ajitparthan
Is there a standard way to setup an exit handler for Flex applications? In the project I am working on, we login to a remote webservice at startup. I would also like to gracefully logout when the user is done with application. The application has a logout action which the user can use but I am

Re: [flexcoders] flex and j2ee session

2007-01-18 Thread Douglas Knudsen
I'm still stuck in the water with regards to roles under Tomcat and FDS (java). FlexContext.getFlexSession().getUserPrincipal().getName() works a treat but FlexContext.getFlexSession().isUserInRole('foo') is bombing. a test jsp page can access request.isUserInRole('foo') as expected, but not a

[flexcoders] Re: player 9 security, crossdomain, permissions, local/network files, etc

2007-01-18 Thread jerome_cordiez
Thanks a lot for the reply tom :) So... I gave another look to the docs at the trusted folder part... And I must admit I don't understand much of it :)... Besides that, normally, it's not really supposed to be much of our (as developers) concern (huhuhu, crossing fingers here)... Anyway, I

[flexcoders] a [SIMPLE] resize demo ? anyone ?

2007-01-18 Thread oneproofdk
HI all. I am trying to make a resize function for a Flex2 app. On a canvas, I load 2 (large) images from a HTTP source. I have a slider and I want the images to resize to fit canvas, and the use the slider to resize the images. Does anyone have a demo of how to do this - it's making my head spin

[flexcoders] Re: Populating List with Data From Web Service

2007-01-18 Thread Lisa Lee
Thanks very much for the info, Clint. If I return a query instead of an array, do I still cast it as an ArrayCollection? It doesn't seem to be working for me. The other puzzling thing is that I can use my current code and use the result as the data provider for a grid, and it works

RE: [flexcoders] HDivideBox

2007-01-18 Thread Jason Hawryluk
Posted on http://flexibleexperiments.wordpress.com/ should give anyone wanting to get into this control a head start. Jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Jason Hawryluk Envoyé : jeudi 18 janvier 2007 14:45 À :

RE: [flexcoders] Canvas ScrollBars problems...

2007-01-18 Thread Lieven Cardoen
Nobody a clue??? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lieven Cardoen Sent: donderdag 18 januari 2007 18:17 To: flexcoders@yahoogroups.com Subject: [flexcoders] Canvas ScrollBars problems... I have a component wich extends

RE: [flexcoders] HDivideBox

2007-01-18 Thread Robert Chyko
thanks for posting the example.. this is something that is on my to-do list so I will be checking it out -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason Hawryluk Sent: Thursday, January 18, 2007 3:12 PM

[flexcoders] 6 jobs in Chicago

2007-01-18 Thread vgriffith1968
Hi - are there any flex coders in the Chicago area??? W have six openings in Chicago for Flex developers (all levels). We will even take someone with lite Flex experience as long as you have strong interactive development experience. Email resumes to me at my home email address if you want

RE: [flexcoders] Re: Populating List with Data From Web Service

2007-01-18 Thread Tracy Spratt
...as the data provider for a grid, and it works perfectly...it's just when I try to use it as a data provider for a list, it doesn't work ... Sounds like you should verify your labelField property or use a labelFunction(). A labelFunction will let you debug the actual item object. Tracy

[flexcoders] Re: Populating List with Data From Web Service

2007-01-18 Thread Lisa Lee
Tracy, as always, you rock. Thanks for the help. Can you point me in the right direction as to where to find information on how to use a labelFunction()? Sorry to be so thick. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: ...as the data provider for a grid, and

RE: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-18 Thread Sho Kuwamoto
One word of warning about turning off flashType. The difference in the quality of the embedded fonts is night and day with flashType. It's fine to turn this off during development, but you should really turn it back on when you finally go into production. -Sho

[flexcoders] FDS Application takes a while to load

2007-01-18 Thread Alexander Tsoukias
I am using this example to test out the whole FDS idea: http://coenraets.org/blog/2006/10/building-collaborative-applications-with-flex-data-services-and-flash-media-server/ When I run the application from the URL, it takes up to 4 minutes to load the application. Any idea why this would be

  1   2   >