[flexcoders] Drawing on canvas

2005-09-02 Thread Prasad Dhananjaya
Hi All, I want to draw some dots on the canvas(which are going to use as codinates) and I did it. But when I move scrollbar(vScrollbar or HScrollbar) these dots are not moving. They are fixed(may be not on the canvas). But image12.jpgis on the canvas and when I move scrollbar it also moves.

Re: [flexcoders] Re: Custom Component builder

2005-09-02 Thread Alberto Albericio Salvador
Ok, thanks all... it seems I will have to deal with AS hehe parinda_b_patel escribió: You will need to write your own MXML or ActionScript to perform that. There is no ready to use tool in order to do that. --- In flexcoders@yahoogroups.com, Alberto Albericio Salvador [EMAIL PROTECTED] wrote:

RE: [flexcoders] Drawing on canvas

2005-09-02 Thread Abdul Qabiz
Try this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Script ![CDATA[ function drawDots(event){ var xx:Number=35; var yy:Number=35; //var ref_mc = Canves1.createEmptyObject(square,

RE: [flexcoders] MXML Components and instanceof

2005-09-02 Thread Dirk Eismann
If you just nned to check the type of the component your basicSearchCompany currently sits in during runtime try: if (parentDocument instanceof marketingMain) { parentDocument.marketingDetails.selectedIndex = 2; parentDocument.gridContacts.dragable = true; } parentDocument points

Re: [flexcoders] MXML Components and instanceof

2005-09-02 Thread Reto M. Kiefer
Hi Dirk! Thanks a lot for your answer. Unfortunatly the parentDocument doesn't work, I still got the error Two MXML Files cannot reference each other as child tags. Another idea: why not dispatching an event object from your basicSearchCompany? The embedding component could register for this

RE: [flexcoders] Flex Cairngorm + ColdFusion + Framework?

2005-09-02 Thread Philippe Maegerman
Found a flex sample for using with Tartan @ flashAnt http://www.flashant.org/index.php?p=438c=1 Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Simon BarberSent: mercredi 31 août 2005 17:06To: flexcoders@yahoogroups.comSubject: [flexcoders]

Re: [flexcoders] MXML Components and instanceof

2005-09-02 Thread Reto M. Kiefer
Hi Dirk! Thanks a lot for your detailed answer. I will try and give you a feedback! Cheers Reto Yahoo! Groups Sponsor ~-- Most low income households are not online. Help bridge the digital divide today!

[flexcoders] Re: flashvars question

2005-09-02 Thread pilby1
Hi, Matt, thank you for your response. I'm a bit confused though by what you mean. A flex app, by its very nature, does not utilize or require the use of the forward/back buttons of the browser, as that will bring the user out of the flex app. I took out all historyURL and lc_id occurrences

RES: [flexcoders] Cairgorm features

2005-09-02 Thread Michel Bertrand
Title: Mensagem Hello Steven ! -Mensagem original-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de Steven WebsterEnviada em: quinta-feira, 1 de setembro de 2005 17:04Para: flexcoders@yahoogroups.comAssunto: RE: [flexcoders] Cairgorm features Hey Michel, -

Re: [flexcoders] Re: passing array of Form values in VO

2005-09-02 Thread Chris Ruegger
The form is dynamically generated, so the amount of items in the form are not known until runtime. Daniel Harfleet [EMAIL PROTECTED] wrote: Will your form have a fixed amount of 'name' inputs, or will the userkeep adding inputs by clicking a button (or similar) ?dan--- In

RE: [flexcoders] Re: flashvars question

2005-09-02 Thread Abdul Qabiz
Macromedia Flex application supports browser's back/next button. For example, if you have a tab navigator and you switch between different tabs, you can use browser's navigation button to see previous selected view... Give it a try, you will get the idea.. Like tab-navigator, accordion or

[flexcoders] INCREASE YOUR JOB OPPORTUNITY 500 TIMES MORE...

2005-09-02 Thread Netlife Career
INCREASE YOUR JOB OPPORTUNITY 500 TIMES MORE... SEND YOUR RESUME TO HR HEADS OF 500 LEADING COMPANIES 500 LEADING PLACEMENT AGENCIES We, www.netlifecareer.com are glad to introduce our Free RESUME FLASH Service. You can now submit/register your resume with www.netlifecareer.com and

[flexcoders] File Download Using FP8 Limited?

2005-09-02 Thread Stacy Young
Im in the midst of adding file download to a current Flex application using an embedded flash 8 swf as per the article on MM.com. There doesnt seem a way to allow flash to accept a filename set in the header from the server. For instance a download servlet that changes the filename based

Re: [flexcoders] How to use the label Function in a Tree that has different labels in the parents and the children - Solved

2005-09-02 Thread Oscar . Cortes
I changed the function to : private function lblFunc(oItem:Object):String { if (oItem.hasChildNodes()){ return oItem.getProperty(deptDesc); } else { return oItem.getProperty(empName); } }

[flexcoders] Flex Runtime Application Error

2005-09-02 Thread pathy_live
Hi all, I have the flex license even though the error is coming, when I run the application it says This standalone application was created with the Developer edition of Macromedia Flex and has expired. Contact the author of this application for a new copy please anyone can help me to solve

Re: [flexcoders] Flex Cairngorm + ColdFusion + Framework?

2005-09-02 Thread Paul Kenney
Thanks for posting this. Now I have a simple flash sample. On 9/2/05, Philippe Maegerman [EMAIL PROTECTED] wrote: Found a flex sample for using with Tartan @ flashAnt http://www.flashant.org/index.php?p=438c=1 Philippe Maegerman From: flexcoders@yahoogroups.com

[flexcoders] Re: Background alpha in Tree control does not seem to be working

2005-09-02 Thread delaquae
If they don't support it, then why does Flex Builder display it in the properties panel when a Tree Control is selected? --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: I don't think Tree or the Lists support alpha for their background. I might be wrong but it's

[flexcoders] Tab Navigator or LinkBar text color after selection

2005-09-02 Thread delaquae
Is there any way to set the text color of a Tab or LinkBar label after it is selected? i.e. I have set the color of a selected Tab to be a dark color and would like the text to be white once it has been selected (not just while it is being selected). Yahoo! Groups

RE: [flexcoders] combo box problem I think!

2005-09-02 Thread James
Hello All, I have an issue you might be able to point me in the right direction, or show me what I'm doing wrong. Here's the scenario: This is a logout routine for cashiers. As they come into this popup, it presents them with a list of currently logged in cashiers. They select a cashier to log

[flexcoders] Re: Tab Navigator or LinkBar text color after selection

2005-09-02 Thread Andrew Spaulding
For the linkbar try the disabledColor style. The tab label is a little more difficult as it doesn't have a similar disabled style property. You wll have to write a change event handler that would manually set the styles on the individual tabs. Something to the effect of - mx:TabNavigator

[flexcoders] Nominations for essays worthy of inclusion in The Best Software Writing II?

2005-09-02 Thread Greg Hamer
Have you read any particularly insightful blog posts lately? Nominations are open for The Best Software Writing II. Nominations are made online at http://discuss.joelonsoftware.com/default.asp?bsw If you haven't seen The Best Software Writing I, you can find the Amazon page for it here: