RE: [flexcoders] Re: Label rotations, text disappears

2006-10-20 Thread KP












I have also faced similar problem but if
you are new to flexcoders then you need to search archives and you can find the
code for these I have posted some code related to this.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Derrick Grigg
Sent: Thursday, October 19, 2006
8:35 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Label
rotations, text disappears











You need
to an embed the font anytime you rotate text.

Derrick

--
Derrick Grigg
[EMAIL PROTECTED]com
www.dgrigg.com






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] Version check for IE7 not working anymore

2006-10-20 Thread Jonas Windey
Hi,

I just upgraded to IE 7 final, and I'm getting the Alternate HTML content
should be placed here. This content requires the Adobe Flash Player. Get
Flash message when I open my app.
Anyone with a quick fix? I got fp9.0 installed

Thanks,
Jonas




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] Set icon without using @Embed?

2006-10-20 Thread Rich Tretola
I have done this by embedding the images as type Class and then using
a binding to show the one you want at any point in time.

Rich


On 10/19/06, zzwi89 [EMAIL PROTECTED] wrote:
 Instead of using text to label a set of tabs, I am using some images.
 Currently I use the following syntax:

 component.icon = @Embed(source);

 When component is placed into a viewstack, and a tabbar assigned to
 the viewstack, the icon shows up in the tab. However, I would like to
 assign different icons (which are really text labels that have a look
 and feel I cannot replicate in Flex.) Preferably, the application
 loads in an XML document with the source of the appropriate images,
 but so far I have not been able to get this to work. Must I really
 embed each image and use if/then logic to determine which of the
 embedded images I want to display?




 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links







-- 
Rich Tretola
mx:EverythingFlex/
http://www.EverythingFlex.com


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Datagrid: Data Text Overlaying Header Title

2006-10-20 Thread mindmillmedia
I am attempting to find out what is behind a datagrid problem I am
having.  When I scroll a datagrid (by grabbing the slider) it usually
creates this error (but not always).

An example can be seen here:
http://www.mindmillmedia.com/flexdatagridheader.jpg

The datagrid column ends up overlaying the header text creating a
jumbled mess.  If I move it after that, it goes away.

Anyone seen this before?

David




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: Architecting a large, modular Flex application

2006-10-20 Thread vitopn
Hi All,
  I've been spinning in circles trying to implement a modular dynamic
loading architecture for our client app.  I've been studying this
thread and a few others and I think it's starting to sink in but I'm
not there yet.  I've tried a very simple sample with a Shell that
dynamically loads a Module and displays a  component from the Module.  

I would like to get this working in FlexBuilder with a minimum of
helper scripts so here is a description of what I did and a few
questions ... 

Currently I have a Flex Project called Shell3 and a Flex Library
called Module4.  

Shell3 has the following it is library path
1) playerglobal.swc (Link Type: External)
2) flex.swc (Link Type: Merged into code)
3) {local} (Link Type: Merged into code)
4) Module4 (Link Type: External)
5) framework.swc (Link Type: RSL)

Module4 has the following it is library path
1) playerglobal.swc (Link Type: External)
3) {local} (Link Type: Merged into code)
5) framework.swc (Link Type: External)


The Module has a simple action script class and a component that
extends canvas MainView in the com.abc.library package.  

The Shell app looks like this

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
layout=absolute
 mx:Script
  ![CDATA[
   import mx.containers.Canvas;
   import com.abc.library.*;
   [Bindable] private var coname:String; 
   
   private function loadLib():void
   {
var context: LoaderContext = new
LoaderContext(false,ApplicationDomain.currentDomain);
var request: URLRequest = new URLRequest(Module4.swf); 
var loader: Loader = new Loader();
   
loader.contentLoaderInfo.addEventListener(Event.INIT,this.handleLibInitialized);
loader.load(request, context);
   }

   private function handleLibInitialized(event: Event): void
   {
trace(Constants.COMPANY_NAME);
this.coname = Constants.COMPANY_NAME;
var newView:Canvas = new MainView();
newView.percentHeight = 25;
newView.percentWidth = 25; 
this.addChild(newView);
   }
  ]]
 /mx:Script
 mx:Button label=load click=loadLib(); x=514 y=10/
 mx:Text top=40 text={coname} x=514/
/mx:Application



When the user clicks the load button the loadLib method loads the
Module and is able to access the actionScript class and the canvas.



1st question:  Is this a good approach?   

2nd question:  When I launch not in debug mode I get that Where is
the Debugger or Profiler Running? dialog more than once.  It looks
like I get it when it loads the framework RSL in Shell3, when it loads
the Module4 and when Module4 loads the framework RSL. What am I
doing wrong?

3rd question:  I have to manually extract the Module4.swf from the
Module4.swc is there an easy way to automatically do this in
FlexBuilder or do I need to write an ant script?


Thank you,
-Vito




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] Re: FDS/PHP/AMFPHP

2006-10-20 Thread RR-007



First thing you should do is obtain a copy of WAMP server
which will create a webserver for you with Apache, MySQL, and PHP
Next make sure that the WAMP server is running and that you myPhpAdmin from your localhost
Create database and tables or run the script provided in the tutorials
Also make sure you add a couple of records, for some reason they did
not take into account if there were no records, nothing gets returned
Just make sure you add the php file to the root of your localhost server.
Follow the rest of the tutorials. I got it work. Let me know if you need my files.
It worked for me.On 10/16/06, Renaun Erickson [EMAIL PROTECTED] wrote:













  



The PHP RIA SDK by Adobe can be found at:

http://code.google.com/p/adobe-php-sdk/
(news) http://devzone.zend.com/node/view/id/1010

PHP RIA SDK is a project started by Mike Potter, which is intended to
enable PHP developers to build solutions with Adobe RIA technologies
quickly. 

WebORB for PHP has very good documentation and examples.

I have a few examples with source code of AMFPHP (with and without
Cairngorm), SabreAMF, and WebORB for PHP on my blog.  Here's the links:
http://renaun.com/blog/2006/09/23/103/
http://renaun.com/blog/2006/09/01/93/
http://renaun.com/blog/2006/07/25/70/

Renaun
http://renaun.com/blog/

--- In flexcoders@yahoogroups.com, jmfillman [EMAIL PROTECTED] wrote:

 Thank you for the links!
 
 My RIA shouldn't ever need more than 1 CPU so the FDS Express seems 
 like it could be what I want, but the one article I did find, that I 
 posted in the original message, was pretty short on details, and 
 doesn't work for me for some reason.
 
 Any better tutorials and examples of using FDS?
 
 My RIA will eventually be a commercial app in the $1500-$2000 range 
 per site, but WebORB Professional, at $800 a CPU, will be too 
 expensive. I can get AMF0 with AMFPHP, assuming I can ever get it 
 working, so it really comes down to FDS, AMFPHP, or WebORB Standard 
 Edition. Which one is easier from a beginners standpoint, and where 
 can I find working examples with great documentation? Source files 
 would be nice too? Or maybe you've got a simple one I could look at?
 
 Jason
 
 
 --- In flexcoders@yahoogroups.com, Renaun Erickson renaun@ 
 wrote:
 
  No PHP packages support the full functionality of Flex data access
  features, which Flex Data Services server provides.  Part of Flex 
 data
  access is RPC serivces, which includes Remoting.  When it first 
 came
  out, before Flex, it was called Flash MX Remoting.  In Flex 
 remoting
  is done by the RemoteObject component using Action Message Format
  (AMF).  With Flex 2 AMF3 was introduced a newer AMF format.  There 
 are
  a couple PHP projects support AMF0/3 a break down is below.
  
  AMFPHP supports AMF0, uses PHP4 and has been around for a long 
 time.
  
  SabreAMF (http://osflash.org/sabreamf) - supports AMF0/AMF3 and 
 uses
  PHP5.  This is a generic server that can be extend for many uses. 
  This is under a BSD license.
  
  WebORB for PHP 
 (http://themidnightcoders.com/weborb/php/index.htm) -
  supports AMF0/AMF3 and uses PHP5.  Highly structure to act like a 
 FDS
  server setup.  This is part of a large suite of tools and is under 
 a
  GPL license.  
  
  Both SabreAMF and WebORB for PHP has plans for support more Flex 
 data
  access features, which FDS typifies.  I believe WebORB for PHP's
  roadmap is geared for a sooner release.
  
  You can find examples of how to use Flex to connect to AMF0 servers
  and also how to connect to SabreAMF and WebORB for PHP on my blog 
 at
  http://renaun.com/.
  
  Hope that helps,
  
  Renaun
  http://renaun.com/
  
  --- In flexcoders@yahoogroups.com, jmfillman jmfillman@ wrote:
  
   I've tried all these tutorials, and can't get any of them to 
 work. 
   The PHP
 (http://www.adobe.com/devnet/flex/articles/flex2_php.html) 
   article runs without errors but doesn't load data from the 
 database 
   or submit it, the AMFPHP 
   (http://www.adobe.com/devnet/flex/articles/flex2_amfphp.html
) 
   example generates errors in Flex 2.0. I'm assuming it's a 
 difference 
   between the Beta and final release.
   
   The only FDS example I've found 
   
 (http://blogs.adobe.com/mtg/2006/08/my_first_hibernate_enabled_fle.ht

   ml) proved no better. I get a lengthy error that others have 
   received, but the author hasn't posted fixes that work for me.
   
   Probably has to do with me more than these posts, but are there 
   working and better documented examples out there? I'd love to 
 use 
   FDS with PHP and MySQL, but I don't find anything useful that 
 gives 
   detailed steps for a beginner in configuring and then querying 
 and 
   adding/updating from Flex 2.0.
   
   It's be nice if someone created a wizard for FDS like they did 
 for 
   ColdFusion!
  
 



  













-- We don't stop playing because we grow old.We grow old because we stop playing.Live it a little and play some 

[flexcoders] 'big' sample projects

2006-10-20 Thread Joost Saanen




Are there any complete sample sites
where the source is free? I would like to know how I can setup a complete
site, with logindialogs, errorhandling, different components, etc., I did
some tutorials of the with flex delivered getting started guide but I mis
some big sample projects for learning how big projects can be made. Anyone
can help me?

regard,
Joost
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Pass Data or call function in another MXML file?

2006-10-20 Thread Tom Sammons
just one little thing in Jim's setMasterDate function; AS date is the 
numeric value of the month, but it starts at offset 0, so you'll have to 
add 1 to it for proper display:

MasterDate.text = d.month+1 + / + d.date + / + d.fullYear;

--- tom



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



RE: [flexcoders] Announcing the AS3 Lightweight Remoting Framework

2006-10-20 Thread Danny Patterson





I don't have a full application as a sample, but as you can 
see there is a functioning code sample on the os flash project 
page.

http://osflash.org/as3lrf
DP



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of RR-007Sent: 
Thursday, October 19, 2006 7:00 PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Announcing the 
AS3 Lightweight Remoting Framework


Danny,First of all thank you, good job. I was wondering since I am a 
newbeeif you could provide an app as a sample.thank you 
again.On 10/19/06, Danny Patterson [EMAIL PROTECTED]com 
wrote: I'm happy to finally announce the release of my first open 
source project, the AS3 Lightweight Remoting Framework. I've had this 
done for a long time now but I haven't had a chance to release it until 
now. From the project page: "This project is motivated 
by the need for a simple yet robust framework for handling Remoting 
calls. This framework could be used in AS3-only projects without the 
Flex framework, or it could be used in a Flex project to access Remoting 
resources that aren't supported by the Flex framework." 
http://osflash.org/as3lrf http://osflash.org/as3lrf 
Thanks, Danny Patterson-- We don't 
stop playing because we grow old.We grow old because we stop 
playing.Live it a little and play some more,RR-007
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: Architecting a large, modular Flex application

2006-10-20 Thread Carlos Rovira



Hi,1.- I'm using SWFLoader instead of Loader since it's more usable when you want to load Applications and interact with the Apps loaded.2.- The Debug problem was discused on the list. When FB2 extracts the SWC it does with -debug=false, this could be fixed if FB2 let developers to configure the debug option (maybe a check in order to allow extraction with or without debug. If you don't want debug, you need to extract it yourself. I think it 's a bug because if you run your app in normal mode you don't have to get that debug dialog
3.- I think a better approach is to create a diferent project for your Module4 (one proyect for module).Best,C.On 10/20/06, vitopn
 [EMAIL PROTECTED] wrote:












  



Hi All,
  I've been spinning in circles trying to implement a modular dynamic
loading architecture for our client app.  I've been studying this
thread and a few others and I think it's starting to sink in but I'm
not there yet.  I've tried a very simple sample with a Shell that
dynamically loads a Module and displays a  component from the Module.  

I would like to get this working in FlexBuilder with a minimum of
helper scripts so here is a description of what I did and a few
questions ... 

Currently I have a Flex Project called Shell3 and a Flex Library
called Module4.  

Shell3 has the following it is library path
1) playerglobal.swc (Link Type: External)
2) flex.swc (Link Type: Merged into code)
3) {local} (Link Type: Merged into code)
4) Module4 (Link Type: External)
5) framework.swc (Link Type: RSL)

Module4 has the following it is library path
1) playerglobal.swc (Link Type: External)
3) {local} (Link Type: Merged into code)
5) framework.swc (Link Type: External)

The Module has a simple action script class and a component that
extends canvas MainView in the com.abc.library package.  

The Shell app looks like this

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml
layout=absolute
 mx:Script
  ![CDATA[
   import mx.containers.Canvas;
   import com.abc.library.*;
   [Bindable] private var coname:String; 
   
   private function loadLib():void
   {
var context: LoaderContext = new
LoaderContext(false,ApplicationDomain.currentDomain);
var request: URLRequest = new URLRequest(Module4.swf); 
var loader: Loader = new Loader();
   
loader.contentLoaderInfo.addEventListener(Event.INIT,this.handleLibInitialized);
loader.load(request, context);
   }

private function handleLibInitialized(event: Event): void
   {
trace(Constants.COMPANY_NAME);
this.coname = Constants.COMPANY_NAME;
var newView:Canvas = new MainView();
newView.percentHeight = 25;
newView.percentWidth = 25; 
this.addChild(newView);
   }
  ]]
 /mx:Script
 mx:Button label=load click=loadLib(); x=514 y=10/
 mx:Text top=40 text={coname} x=514/
/mx:Application

When the user clicks the load button the loadLib method loads the
Module and is able to access the actionScript class and the canvas.

1st question:  Is this a good approach?   

2nd question:  When I launch not in debug mode I get that Where is
the Debugger or Profiler Running? dialog more than once.  It looks
like I get it when it loads the framework RSL in Shell3, when it loads
the Module4 and when Module4 loads the framework RSL. What am I
doing wrong?

3rd question:  I have to manually extract the Module4.swf from the
Module4.swc is there an easy way to automatically do this in
FlexBuilder or do I need to write an ant script?

Thank you,
-Vito


  













-- ::| Carlos Rovira::| http://www.carlosrovira.com::| http://www.madeinflex.com

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Help! Problem reinstalling FlexBuilder

2006-10-20 Thread Douglas McCarroll
Hi Matt,

  You’re sure you’re selecting the root of the eclipse directory for 
your install?

You're right. I could swear that on previous attempts I had checked for 
this but in this attempt I had re-downloaded Eclipse and it seems to 
have configured its folders differently. There was another Eclipse 
folder inside the main folder. That was the correct one and now FB is 
installed. (! :-)

My previous attempt was with Eclipse 3.2. I'm pretty sure that I double 
checked that the folder had plugins and features folders, and yet 
still got the same message. Could the FB installer have been balking at 
3.2? I've since noticed that the system requirements page says 3.2 not 
yet supported. The installer says 3.1 or higher. What's the scoop on 
this? I want to use Hibernate Tools, which require Eclipse 3.2. My 
current tentative plan is to install both 3.1 and 3.2, and use 3.1 for 
Flex and 3.2 for setting up the Hibernate stuff that Flex will run on 
top of. Does this make the most sense from your point of view?

Thanks,

Douglas




Matt Chotin wrote:

 You’re sure you’re selecting the root of the eclipse directory for 
 your install? Remember that the plugin wants two directories: first 
 the directory where it will drop the Flex SDK and all the other 
 non-eclipse stuff, second the actual eclipse directory. If I exploded 
 Eclipse into c:\eclipse, that’s the directory I would use.

 Matt


 I'm reinstalling FB as an Eclipse plugin - previously had it installed 
 as plugin
 - no problem - uninstalled both FB  Eclipse - reinstalled Eclipse - 
 now when I
 try to reinstall FB I get this message:

 Please choose an existing Eclipse 3.1 (or greater) folder to be updated
 This folder must contain the standard Eclipse folders named plugins 
 and
 features.

 Sounds reasonable, except for the fact that I've already done so. (!)

 I'm using Eclipse 3.1.2 on WinXP.

 I've Googled the message  find 0 results. And am totally stuck until 
 I get this
 resolved...

 Douglas

  



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] hitData.item.(variable)

2006-10-20 Thread jnewport
Syntax problem. 

Is it possible to use a code like the following to create a dataTip?
somePublicVariable = revenue

var strRegData:String = (@ + somePublicVariable)
hitData.item.strRegData

My somePublicVariable is set when using my custom component.  I am
trying to get strRegData to = @revenue.  

hitData.item.strRegData = [EMAIL PROTECTED]


I though valueOf() was the way to go, but it doesn't work either.

TIA!

J




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: More Documentation of Cairngorm and Flex Cairngorm Store

2006-10-20 Thread Jamie O
Hey,

Does anyone know where these links might reside beyond the
www.richinternetapps.com site which I've been unable to get a response
from for the last couple of days? I've read the 6-part series and
*think* I *get* Cairngorm, but getting the first sample(s) up and
running has posed a little challenge as yet. I don't want to use FDS
at the moment which prohibits the Store 2 sample I believe.

Thx,
Jamie

--- In flexcoders@yahoogroups.com, Steven Webster [EMAIL PROTECTED] wrote:

 Flex and Cairngorm Deconstructed: Cairngorm Store (Part 1)
 http://www.richinternetapps.com/archives/000118.html
  
 Flex Cairngorm Store (Part 2) - Installation Guide
  http://www.richinternetapps.com/archives/000119.html
 http://www.richinternetapps.com/archives/000119.html 
  
 Flex Cairngorm Store (Part 3) - Discussion of Business and
Integration Tier
 http://www.richinternetapps.com/archives/000120.html





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: Get Tab from TabBar?

2006-10-20 Thread Jamie O
If the tabbar is bound to the viewstack as a dataprovider, you can
manipulate properties of the tabbar / tab based on what the currently
selected child in the viewstack is.

I'm using a similar approach to set the style of the selected tab so
that it's background colour matches the selected child when the show
event fires I call a function which executes the following:

tbNavigate.setStyle(tabStyleName,tab + vsContent.selectedChild.id);

That same approach should allow you to manipulate the tab / data that
you want no?

--- In flexcoders@yahoogroups.com, zzwi89 [EMAIL PROTECTED] wrote:

 Does anyone know how to retrive a tab from a TabBar? If I use
 getChild() it returns a child of the associated ViewStack.
 TabNavigator, which I do not want to use, has a getTabAt() function. I
 checked out the code, and it simply does this:
 
 return Button(tabBar.getChildAt(index));
 
 If I do this on my tabBar, it pops up an error stating I can't cast a
 VBox to a Button. Why is it that TabNavigator can do this, but I
 cannot do this on my TabBar's children?






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: Text Area autofit, autosize

2006-10-20 Thread grunz1234
maybe someone knows the problem?

 Hello
 
 I want to autoFit / autoSize the textArea on the text the user is 
 currently tipping. So I Have
 
 mx:TextArea id=edit text={folderName} focusAlpha=0.0 
 mouseFocusChange=focusOut() deactivate=focusOut() 
 textAlign=center borderStyle=none height=20 
width={dummy.width} 
 wordWrap=false/
 
 mx:Label id=dummy visible=false text={editName.text}/
 
 which works fine, but the text in the textArea is somehow shift to 
the 
 left(I can't see some letters, I have to scroll in the textarea to 
see 
 all), so that there is on the right always space for typing in.
 How can I disable this 'shift', I want to see the whole text which 
is 
 currently typed in.
 
 thanks






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] Flash Player 9 Beta Available

2006-10-20 Thread Yiðit Boyar


really thanks adobe, adobe made me use windows since i've been working with flex and my friends had diffuculties in using my RIAs since they prefer Linux.so thanks adobe, looking for the final release...- Original Message From: Johannes Nel [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Thursday, October 19, 2006 4:08:59 PMSubject: Re: [flexcoders] Flash Player 9 Beta Available








Anyone knows what is that about?fullscreen videoOn 10/19/06, Rogerio Gonzalez rogerio.gonzalez@ gmail.com
 wrote:


Hello all,In the addobe labs, there also updates for the windows(ie/ff) /mac player versions.Anyone knows what is that about?Rogerio
On 10/18/06, 
João Fernandes joaopedromartinsfer [EMAIL PROTECTED] com wrote:














  











Hi guys,



Just to say that the beta for Linux of Flash player 9
is available on Labs ( http://labs. adobe.com/ downloads/ flashplayer9. html
) .

I'm not a Linux user but I know many who were
waiting for this for a long time!



Thank You Adobe ! 



João Fernandes













  


















-- j:pn http://www.lennel. org

  




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___


[flexcoders] Re: Label rotations, text disappears

2006-10-20 Thread app.developer
I'm not new.  I did search the archives but didn't find a great 
answer until yesterday when ppl responded. The code is in affect and 
I'm packing for VegasAdobe MAX.

Precia



--- In flexcoders@yahoogroups.com, KP [EMAIL PROTECTED] wrote:

 I have also faced similar problem but if you are new to flexcoders 
then you
 need to search archives and you can find the code for these I have 
posted
 some code related to this.
 
  
 
   _  
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of Derrick Grigg
 Sent: Thursday, October 19, 2006 8:35 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Label rotations, text disappears
 
  
 
 You need to an embed the font anytime you rotate text.
 
 Derrick
 
 --
 Derrick Grigg
 [EMAIL PROTECTED] mailto:dgrigg%40rogers.com com
 www.dgrigg.com







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



RE: [flexcoders] Re: Making the datagrid header background alpha 0

2006-10-20 Thread Andrew Trice












Nice, I like how that turned out.





_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com



Blog: http://www.cynergysystems.com/blogs/page/andrewtrice

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tim Hoff
Sent: Wednesday, October 18, 2006
8:13 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Making
the datagrid header background alpha 0











Hi Hank,

Here's a
litle more elaborate example that uses a similar approach to Andy's. You
can set the headerAlphas to the same or different values as the grid's
backgroundAlpha.

View Sample

-TH
__



Tim Hoff
Cynergy Systems, Inc.
http://www.cynergysystems.com
Office: 866-CYNERGY


--- In [EMAIL PROTECTED]ups.com,
Andrew Trice andrew.trice@... wrote:

 I was able to get the *header* to be transparent doing the following,
 but the color of the ListBaseContentHolder shows through and is not
 transparent. If you set backgroundAlpha=0 on the
datagrid, then it
 will be completely transparent, but then you also lose any row
 background colors that you may have had, but highlight colors still
 work.
 
 
 
 MXML Markup:
 
 ?xml version=1.0 encoding=utf-8?
 
 mx:Application xmlns:mx=http://www.adobe.com/2006/mxml
 xmlns:local=* layout=absolute
 
 
 
 mx:Style
 
 DataGrid {
 
 backgroundAlpha:0;
 
 } 
 
 /mx:Style
 
 
 
 local:MyDataGrid x=10 y=10 dataProvider={[1,2,3,4,5]}
 
 
 local:columns
 
 mx:DataGridColumn
 headerText=Column 1 dataField=col1/
 
 mx:DataGridColumn
 headerText=Column 2 dataField=col2/
 
 mx:DataGridColumn
 headerText=Column 3 dataField=col3/
 
 /local:columns
 
 /local:MyDataGrid
 
 
 
 /mx:Application
 
 
 
 MyDataGrid Class:
 
 package
 
 {
 
 import mx.controls.DataGrid;
 
 import mx.core.UIComponent;
 
 
 
 public class MyDataGrid extends DataGrid
 
 {
 
 override protected function
 drawHeaderBackground( headerBG : UIComponent ) : void
 
 {
 
 headerBG.alpha = 0;
 
 }
 
 }
 
 }
 
 
 
 _
 
 Andrew Trice
 
 Cynergy Systems, Inc.
 
 http://www.cynergysystems.com
 
 
 
 Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
 
 Email: andrew.trice@...
 
 Office: 866-CYNERGY 
 
 
 
 
 
 From: [EMAIL PROTECTED]ups.com
[mailto:flexcoders@yahoogroups.com]
On
 Behalf Of hank williams
 Sent: Wednesday, October 18, 2006 2:50 PM
 To: [EMAIL PROTECTED]ups.com
 Subject: Re: [flexcoders] Re: Making the datagrid header background
 alpha 0
 
 
 
 Jim,
 
 Thanks, buy yeah I've tried that and it doesnt work. I can set the
 font, but not the backgroundAlpha.
 
 Hank
 
 On 10/18/06, Jim Robson [EMAIL PROTECTED]..
 mailto:jim.robson%40eyestreet.com  wrote:
  Hank,
 
  Did you try using headerStyleName?
 
  Something like this:
 
  DataGrid {
  headerStyleName: myHeaderStyle;
  }
  .myHeaderStyle{
  backgroundAlpha: 0.0;
  }
 
  -Jim
 
  --- In [EMAIL PROTECTED]ups.com
 mailto:flexcoders%40yahoogroups.com , hank
williams hank777@
 wrote:
  
   I want to make my datagrid header transparent the way the body
is,
 but
   there is no field for header alpha as far as I can see. I am
sure I
   could make some kind of skin, but I havent much looked into
skinning
   the datagrid and was wondering if there was some fairly easy way
to
   acheive the effect I am looking for.
  
   Hank
  
 
 
 
 
 
  --
  Flexcoders Mailing List
  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

  Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
 http://www.mail-archive.com/flexcoders%40yahoogroups.com

  Yahoo! Groups Links
 
 
 
 
 







__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






Re: [flexcoders] Flash Player 9 Beta Available

2006-10-20 Thread Brendan Meutzner



Awesome... one less excuse for Flex nay-sayers... not that we cared about Linux users to start with ;-)Kidding just kidding put your pitchforks away...Brendan
On 10/19/06, Johannes Nel [EMAIL PROTECTED] wrote:













  



Anyone knows what is that about?fullscreen videoOn 10/19/06, Rogerio Gonzalez 
[EMAIL PROTECTED]
 wrote:


Hello all,In the addobe labs, there also updates for the windows(ie/ff)/mac player versions.Anyone knows what is that about?Rogerio
On 10/18/06, 
João Fernandes [EMAIL PROTECTED] wrote:















  











Hi guys,



Just to say that the beta for Linux of Flash player 9
is available on Labs ( http://labs.adobe.com/downloads/flashplayer9.html
) .

I'm not a Linux user but I know many who were
waiting for this for a long time!



Thank You Adobe ! 



João Fernandes













  


















-- j:pn http://www.lennel.org

  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Flash Player 9 Beta Available

2006-10-20 Thread Rogerio Gonzalez



Not only that...http://labs.adobe.com/technologies/flashplayer9/releasenotes.html#fixedThey fix a lot of bugs :P including the ExternalInterface with Firefox bug (on the version 16).
RogerioOn 10/19/06, Johannes Nel [EMAIL PROTECTED] wrote:













  



Anyone knows what is that about?fullscreen videoOn 10/19/06, Rogerio Gonzalez 
[EMAIL PROTECTED]
 wrote:


Hello all,In the addobe labs, there also updates for the windows(ie/ff)/mac player versions.Anyone knows what is that about?Rogerio
On 10/18/06, 
João Fernandes [EMAIL PROTECTED] wrote:















  











Hi guys,



Just to say that the beta for Linux of Flash player 9
is available on Labs ( http://labs.adobe.com/downloads/flashplayer9.html
) .

I'm not a Linux user but I know many who were
waiting for this for a long time!



Thank You Adobe ! 



João Fernandes













  


















-- j:pn http://www.lennel.org

  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Flash Player 9 Beta Available

2006-10-20 Thread julien castelain



fullscreen anything :)
On 10/19/06, Johannes Nel [EMAIL PROTECTED] wrote:





Anyone knows what is that about?fullscreen video
On 10/19/06, Rogerio Gonzalez [EMAIL PROTECTED] 
 wrote: 

Hello all,In the addobe labs, there also updates for the windows(ie/ff)/mac player versions.Anyone knows what is that about?Rogerio 

On 10/18/06, João Fernandes [EMAIL PROTECTED]
 wrote: 







Hi guys,

Just to say that the beta for Linux of Flash player 9 is available on Labs ( 
http://labs.adobe.com/downloads/flashplayer9.html ) .
I'm not a Linux user but I know many who were waiting for this for a long time!

Thank You Adobe ! 

João Fernandes



-- j:pn 
http://www.lennel.org
 

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Flex and Crystal reports

2006-10-20 Thread Jeff Krueger



I could be wrong but I don't think this is possible. I found that for reporting the best thing to use is cold fusion report writer. This can produce swf files (flash paper)and they can be loaded into a flex app.Jeffwespinozab [EMAIL PROTECTED] wrote:  Hi, Is it possible to open a crystal report from flex? I am initiatingwith flex and do not understand that must return the web service andhow to use it in flex. I would be grateful if someone could show
 mecode that teaches me how to open a crystal report form Flex. Really itis important and I do not understand very well the method.Thanks! 
		Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls.  Great rates starting at 1¢/min.
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] Re: Set Focus on TextInput

2006-10-20 Thread Dustin Mercer












Try setting focus to the textField in the
creationComplete or show event of the TitleWindow itself. If that doesnt
work, you could try overriding the setFocus method of the TitleWindow.



I.E.

override public function setFocus() : void
{

 super.setFocus();

 txtUserId.setFocus();

}



Dustin
 Mercer











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of boy_trike
Sent: Wednesday, October 18, 2006
3:01 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Set
Focus on TextInput











If I understand you, there is an event that is raised
whenever a popup window is opened, 
and I can create a listener function. My question is, what is the name of this
event and 
where would I find a list of these events. I currently have the following lines:

mx.managers.PopUpManager.addPopUp(loginWindow, this, true);
loginWindow.txtUserID.setFocus();

Thanks
Bruce

--- In [EMAIL PROTECTED]ups.com,
Daniel Freiman [EMAIL PROTECTED].. wrote:

 it works if you setFocus after you call addPopUp/createPopUp, so my
guess is
 that the PopUpManager is setting focus to the popup which overriding your
 call. If you don't have access to the textfield, try putting the setfocus
 in more creative places, like a listener for when the popup is shown.
 
 - Dan
 
 On 10/18/06, boy_trike [EMAIL PROTECTED].. wrote:
 
  This does NOT seem to work for a popup. Is there another trick to
  setFocus on a text field in
  a popup?
 
  Thanks
  Bruce
 
 
 
 
  --
  Flexcoders Mailing List
  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
  Yahoo! Groups Links
 
 
 
 
 







__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Re: Text Area autofit, autosize

2006-10-20 Thread Steve Kellogg @ Project SOC
Have you tried left=0 right=0?



-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of grunz1234
Sent: Friday, October 20, 2006 7:17 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Text Area autofit, autosize

maybe someone knows the problem?

 Hello
 
 I want to autoFit / autoSize the textArea on the text the user is 
 currently tipping. So I Have
 
 mx:TextArea id=edit text={folderName} focusAlpha=0.0 
 mouseFocusChange=focusOut() deactivate=focusOut() 
 textAlign=center borderStyle=none height=20 
width={dummy.width} 
 wordWrap=false/
 
 mx:Label id=dummy visible=false text={editName.text}/
 
 which works fine, but the text in the textArea is somehow shift to 
the 
 left(I can't see some letters, I have to scroll in the textarea to 
see 
 all), so that there is on the right always space for typing in.
 How can I disable this 'shift', I want to see the whole text which 
is 
 currently typed in.
 
 thanks






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



RE: [flexcoders] Does FDS project have to compile on the server?

2006-10-20 Thread Allen Riddle












Thanks for your help. I do have the entry
pointed to my services-config.xml file, and application is even able to find my
Data Service destination (in this case, its a Hibernate entity). But
when I try to call the fill method, I get:



[RPC Fault faultString=Send
failed faultCode=Client.Error.MessageSend
faultDetail=Channel.Connect.Failed error null]

    at
mx.data::ConcreteDataService/http://www.adobe.com/2006/flex/mx/internal::dispatchFaultEvent()

    at
::DataListRequestResponder/fault()

    at
mx.rpc::AsyncRequest/fault()

    at
mx.messaging::ChannelSet/::faultPendingSends()

    at
mx.messaging::ChannelSet/channelFaultHandler()

    at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()

    at
flash.events::EventDispatcher/dispatchEvent()

    at
mx.messaging::Channel/mx.messaging:Channel::connectFailed()

    at
mx.messaging.channels::PollingChannel/mx.messaging.channels:PollingChannel::connectFailed()

    at
mx.messaging.channels::RTMPChannel/mx.messaging.channels:RTMPChannel::statusHandler()



I do not get this when I have it compiled
on the server at run time.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dimitrios Gianninas
Sent: Thursday, October 19, 2006
8:38 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Does FDS
project have to compile on the server?











Below is the command we use to pre-compile our Flex app that uses
FDS. Just like Peter said you just need to specify the services option and
thats it. Hope my example helps.



exec executable=${FLEX2_COMPILER} 
dir=${BUILD} 
vmlauncher=false
failonerror=true
arg value=-incremental=true /
arg value=-context-root=/billing/
arg value=-locale=en_US/
arg value=-source-path=WEB-INF/flex/locale/en_US/
arg value=-services=WEB-INF/flex/services-config.xml/
arg value=billing.mxml /
/exec







Dimitrios Gianninas

RIA Developer

Optimal Payments Inc.















From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Riddle
Sent: Thursday, October 19, 2006
6:09 PM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] Does FDS
project have to compile on the server?







I do have that entry in there. Can't
figure it out.











From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Peter Farland
Sent: Thursday, October 19, 2006
4:53 PM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] Does FDS
project have to compile on the server?











You can precompile any Flex 2 app,
including FDS apps. You need to point Flex Builder 2 (or the command line
compiler if using mxmlc directly) to the /WEB-INF/flex/services-config.xml
file at compile time. You can either do this using the services option
under the compiler section of flex-config.xml or using a command
line argument --services=c:/path/to/web/application/WEB-INF/flex/services-config.xml









From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Riddle
Sent: Thursday, October 19, 2006
5:42 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Does FDS
project have to compile on the server?





In my Data Services project, do I have to choose the option
to compile the application on the server vs. pre-compiling it if I want to use
Data Management Services? It's the only way I could get it to work. When I do a
pre-compiled swf, I'm unable to make an RTMP connection.

Allen Riddle

Sofware Development

x3217
















 
  
  AVIS
  IMPORTANT
  
  
  WARNING
  
 
 
  
  Ce message électronique et ses pièces jointes
  peuvent contenir des renseignements confidentiels, exclusifs ou légalement
  privilégiés destinés au seul usage du destinataire visé. L'expéditeur
  original ne renonce à aucun privilège ou à aucun autre droit si le présent
  message a été transmis involontairement ou s'il est retransmis sans son
  autorisation. Si vous n'êtes pas le destinataire visé du présent message ou
  si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et
  le supprimer, ainsi que toutes ses pièces jointes, de votre système. La
  lecture, la distribution, la copie ou tout autre usage du présent message ou
  de ses pièces jointes par des personnes autres que le destinataire visé ne
  sont pas autorisés et pourraient être illégaux. Si vous avez reçu ce courrier
  électronique par erreur, veuillez en aviser l'expéditeur.
  
  
  This electronic message and its attachments
  may contain confidential, proprietary or legally privileged information,
  which is solely for the use of the intended recipient. No privilege or other
  rights are waived by any unintended transmission or unauthorized
  retransmission of this message. If you are not the intended recipient of this
  message, or if you have received it in error, you should immediately stop
  reading this message and delete it and all 

[flexcoders] cairngorm - misuse of front controller? JSM w/Flex 2

2006-10-20 Thread fuad_kamal
Couple unrelated questions:

first, regarding Cairngorm:

Generally we use one front controller instance to capture user
gestures, and yet another front controller instance to capture 'server
gestures' - to capture events sent from the server and respond to
them.  Is this an appropriate model or is my thinking flawed?

Mind you, I'm not talking about initiating a remote call via a
delegate - we have an open socket with the server and the server will
initiate an event based on whatever is happening on 'the other side'.

Secondly,

Can someone point me towards any good references to using JSM from
Flex / FDS?  I haven't really seen any substantial examples; I've read
the related articles from the  farata systems folks and wasn't really
satisfied.  Also I need to understand this from the AS developer's
standpoint, not the Java developer's viewpoint.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Anyone ever built a RSS scrolling component for Flex 2?

2006-10-20 Thread Peterson, Chris
I would like to have a flexible sized pod for a site I am building, that
I can point it to an RSS address and have it display the Title / story,
and auto-scroll through from one title to the next.  Anyone ever seen
such a beastie in Flex?  There are tons of JavaScript examples, but I
would like to stay away from floating an iFrame for this app.

Chris Peterson


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



RE: [flexcoders] Re: More Documentation of Cairngorm and Flex Cairngorm Store

2006-10-20 Thread Evan Gifford












http://www.cairngormdocs.org/



You can get multiple sample apps (including
the store) and a couple neat learning tools here :^)



We dont have the individual documentation
for the store, however, Ill try to get my hands on those and post if I
can.



Thanks,

Evan











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jamie O
Sent: Friday, October 20, 2006
7:00 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: More
Documentation of Cairngorm and Flex Cairngorm Store











Hey,

Does anyone know where these links might reside beyond the
www.richinternetapps.com site which I've been unable to get a response
from for the last couple of days? I've read the 6-part series and
*think* I *get* Cairngorm, but getting the first sample(s) up and
running has posed a little challenge as yet. I don't want to use FDS
at the moment which prohibits the Store 2 sample I believe.

Thx,
Jamie

--- In [EMAIL PROTECTED]ups.com,
Steven Webster [EMAIL PROTECTED]. wrote:

 Flex and Cairngorm Deconstructed: Cairngorm Store (Part 1)
 http://www.richinternetapps.com/archives/000118.html
 
 Flex Cairngorm Store (Part 2) - Installation Guide
 http://www.richinternetapps.com/archives/000119.html
 http://www.richinternetapps.com/archives/000119.html

 
 Flex Cairngorm Store (Part 3) - Discussion of Business and
Integration Tier
 http://www.richinternetapps.com/archives/000120.html







__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___








--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.7/488 - Release Date: 10/19/2006
 

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.7/488 - Release Date: 10/19/2006
 


[flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman
When I try this.

public function removeMe(event:CloseEvent):void {
PopUpManager.removePopUp(event.currentTarget);
}

I get this error. 
1118: Implicit coercion of a value with static type Object to a
possibly unrelated type mx.core:IFlexDisplayObject. 



--- In flexcoders@yahoogroups.com, dougmccune [EMAIL PROTECTED] wrote:

 How about:
 
 public function removeMe(event:CloseEvent){
   PopUpManager.removePopUp(event.currentTarget);
 }
  
 
 --- In flexcoders@yahoogroups.com, Jeremy Rottman rottmanList@
 wrote:
 
  I have tried using that, and it gives me a big goose egg.
  
  This is the updated code.
  
  
  
  public function createWindow(wTitle:String, wX:Number, wY:Number,
  wWidth:Number, wHeight:Number):void {
   title = new TitleWindow();
   title.name = wTitle;
   title.id = wTitle;
   title.title = wTitle;
   title.x = wX;
   title.y = wY;
   title.visible = true;
   title.showCloseButton = true;
   title.addEventListener(CloseEvent.CLOSE, removeMe);
  
   windowArray.push(title);
   PopUpManager.addPopUp(title, mainCanvas);
   addStates(wX, wY, wWidth, wHeight);
  }
  
  public function removeMe(event:CloseEvent){
   PopUpManager.removePopUp(this)
  }
  
  
  
  
  
  
  
  
  
  --- In flexcoders@yahoogroups.com, Dustin Mercer dustin.mercer@
  wrote:
  
   Have you tried:
  
   title.addEventListener(  CloseEvent.CLOSE, setState );
  
   instead of:
  
   title.addEventListener(  MouseEvent.CLICK, setState );
  
  
  
   That should take care of it...
  
  
  
  
  
   
  
   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
  On
   Behalf Of Jeremy Rottman
   Sent: Thursday, October 19, 2006 1:55 PM
   To: flexcoders@yahoogroups.com
   Subject: [flexcoders] Creating JarJam button Effect.
  
  
  
   I am taking an idea from the JarJam demo that adobe has posted on
  adobe
   labs and recreating it to suit our needs. I almost have it complete
  and
   working, but I have run into two little snags.
  
   When I create the titlewindow with actionscript, I am unable to get
  the
   close button at the top of the titlewindow to work. I have looked at
   every example I could find and not a single one works. With the
code I
   have provided does anyone see why this wont work?
  
   Any help with this is greatly appreciated.
  
   Here is a link to my test application, and source.
   http://beta.homesmartagent.com/transitions/JamJarEffect.html
   http://beta.homesmartagent.com/transitions/JamJarEffect.html
   http://beta.homesmartagent.com/transitions/srcview/
   http://beta.homesmartagent.com/transitions/srcview/
  
 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: TextInput control (displaying CurrencyFormatted data) question

2006-10-20 Thread Michael Labriola
Mike,

There are a bunch of ways you can approach this some more elegant than
others.

Let me give you a few hints:

#1) There is a method of the NumberBase class called parseNumberString
which will parse apart a formatted number string and give you back
something you could work with...It is used within the
CurrencyFormatter to convert what the user enter into a number so that
it can be formatted. So, one approach, you could format on a focus out
and populate your value object by parsing the number first... This
might be the route of least resistance

#2) You could create an extension of the TextInput called, let's say
CurrencyInput. You could add a property to that class for an
unformatted version of the text property. So, on valueCommit or
focusOut you could convert the string to a number and save it in the
new property. This property could then be configured as bindable and
used instead of the text property in your databinding.

The latter is the approach I would prefer, as it makes the setup
reusable. However, your mileage will vary depending on type/size of
project.

There might be another way that I am not familiar with, however, this
should work.

Let me know if you have additional questions or need to see a code
snippet,
Mike



--- In flexcoders@yahoogroups.com, Mike Anderson [EMAIL PROTECTED] wrote:

 Yes, Michael - that is PRECISELY what I am asking -
 
 In my App, I have a TextInput that is bound to a ValueObject (using the
 Curly Braces method) - and this TextInput needs to display numbers
 entered by the user, as Currency once that field loses focus.
 
 Is it possible to have the user enter a number, and once the TextInput
 loses focus, have the number turn into a $00.00 format (while still
 keeping the original intact, when sending back to the server)?  I am
 sure this is quite easy to do, BUT will this get hosed up, if this value
 gets sent back to the server?
 
 This is why I mentioned, having an interim Variable hold the contents of
 the Number.
 
 Even know my DataType on the SQL Server is SmallMoney, it's still a
 Number within my VO Class File.
 
 Will this cause an error, since a String Var is required, in order to
 keep the $ format?
 
 This is where I could use some guidance...
 
 Thanks in advance for your help,
 
 Mike
 
 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Michael Labriola
 Sent: Thursday, October 19, 2006 8:19 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: TextInput control (displaying
 CurrencyFormatted data) question
 
 
 Mike,
 
 I might need some more explanation, as I think I am missing something.
 I have a lot of textInputs that format on focus out. Is your concern
 that the data in the field is now 'formatted' so it will be useless for
 sending back to some server.
 
 Let me know and I will be glad to help more, Mike
 
 --- In flexcoders@yahoogroups.com, Mike Anderson mike@ wrote:
 
  Hello All,
  
  In all the examples I've seen for the CurrencyFormatter when it comes 
  to using a TextInput for displaying the data, it requires TWO 
  TextInputs - one that contains the value to be formatted, and one that
 
  displays the finally formatted data.
  
  Isn't there a way, where the same TextInput can be used twice?  The 
  holder of the data, and the displayer of the formatted data?  Or is 
  this simply not possible?
  
  Or is my best bet (since 2 controls would look stupid), to declare a 
  Variable that acts as the Value Holder (as well as the item being 
  bound to my DataSet), and then the actual TextInput strictly for 
  displaying to the user, the CurrencyFormatted value?
  
  As far as I can tell, this is THE way to do it - but I just wanted to 
  throw this question out there.
  
  Any comments regarding this, would be greatly appreciated!
  
  Thanks,
  
  Mike
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] Re: More Documentation of Cairngorm and Flex Cairngorm Store

2006-10-20 Thread greg h



Jamie,

I found the ASDoc for Cairngorm 2 very helpful. They are downloadable from this link:
http://weblogs.macromedia.com/amcleod/archives/2006/06/cairngorm_2_-_a.cfm

imho, with Cairngorm the ASDoc are required reading. And the 6-part series is optional reading :-)
I think the comments you will find in the ASDoc quickly get to the
essence of Cairngorm (far more quickly, imho, than the 6-part series :-)

Regarding sample apps what are you using serverside? Java? ColdFusion? Other?

I have not tried this one from Jesse Warden but it uses Amazon for the
serverside. So as long as you have an Internet connection you
should be good to go :-)
http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html


If CF works for you I found the following a good sample app. 
http://www.benorama.com/flex/samples/PhonesCairngorm2.zipThis app is a variation of a sample app that Ben Forta very cleanly documented the non-Cairngorm version of here:

http://www.adobe.com/devnet/flex/articles/coldfusionflex_part3.html


fyi ... for kind of advanced reading you might want to check out:
http://weblogs.macromedia.com/sho/archives/2005/08/mvc_considered.cfm

Please post back regarding what ultimately works for you.

Happy Flexing :-)

g


On 10/20/06, Jamie O [EMAIL PROTECTED]
 wrote:
Hey,Does anyone know where these links might reside beyond thewww.richinternetapps.com site which I've been unable to get a response
from for the last couple of days? I've read the 6-part series and
*think* I *get* Cairngorm, but getting the first sample(s) up andrunning has posed a little challenge as yet. I don't want to use FDSat the moment which prohibits the Store 2 sample I believe.Thx,
Jamie
  


__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] Re: More Documentation of Cairngorm and Flex Cairngorm Store

2006-10-20 Thread Evan Gifford












That was it, thanks! - Fixed













From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of greg h
Sent: Friday, October 20, 2006
10:20 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: More
Documentation of Cairngorm and Flex Cairngorm Store











Evan,

The home page at www.cairngormdocs.org
renders fine with IE6, but when I browse with Firefox and Mozilla the main body
content does not display.

In the inline CSS there is a div style=z-index:-1; that you
might want to remove. 

hth,

g





On 10/20/06, Evan
Gifford [EMAIL PROTECTED]ams.com
wrote:





http://www.cairngormdocs.org/




You can get multiple sample apps (including the store) and a
couple neat learning tools here :^)



We don't have the individual documentation for the store,
however, I'll try to get my hands on those and post if I can.



Thanks,

Evan














__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___








--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.7/488 - Release Date: 10/19/2006
 

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.7/488 - Release Date: 10/19/2006
 


[flexcoders] building project slow on vpn network

2006-10-20 Thread amigo_fd
Hello,

I'm working from home with vpn to the office. My flex-project is on a
shared directory on the office-server and I'm working on this files
with colleges at the office. So files have to be on the server.

I already changed my build folder to a local folder on my own
harddisk, but building still takes a long time (especially creating
output folder each time).

Any ideas on how to speed it up ?

Thanks,
Frank




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] E4X Help

2006-10-20 Thread Tan
I try writing two comboboxes to facilitate selection of the following XML,

data
state label=Texas data=Texas
county label=Jones data=123 /
county label=Taylor data=124 /
...
/state
state label=Virginia data=Virginia
county label=Alexandria data=223 /
county label=Arlington data=224 /
...
/state
...


The first combo box is named _combo1 that is populated by state data, and I
want to get an XML or XMLList of the counties using AS3, I wonder whether I
can write it in E4X syntax that looks somewhat like

var selected:String = _combo1.selectedItem.toString();
var counties:XMLList = _myXml.state.(@label = {selected}).county;

I get a compiler error for the last line, and I have searched through some
E4X samples, didn't seem to find any help.  Any advice?

Thanks!

- Tangent

P.S.  Or should I use XmlViewCollection, Descriptor or things like that?



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] New resource for learning Caringorm!

2006-10-20 Thread Evan Gifford










Hey Guys,



For those of us who are scaling the cairngorm learning curve,
youll be happy to know that the cairngorm documentation group has just
launched our website!



You can find it here: http://www.cairngormdocs.org/



There are many useful tools, example apps and of course the
Cairngorm Diagram hosted here.



See you soon!

-Evan




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___





[flexcoders] Errors exist in required project(s)

2006-10-20 Thread jnewport
Is there a way to find out what error is when you are not given a red
X?  I have searched my code inside and out of a very large project and
I cannot find the problem.

Is there a log file somewhere that will tell you where the problem lies? 

I am new to Flex and to programming.  Does setting breakpoints help
when you are just trying to compile the flex application?

J




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] 'big' sample projects

2006-10-20 Thread julien castelain



Hi Joost,
There are nice sampleson the Adobe site
http://www.adobe.com/devnet/flex/index.html?tab:samples=1#adobesamples
ciao


On 10/20/06, Joost Saanen [EMAIL PROTECTED] wrote:





Are there any complete sample sites where the source is free? I would like to know how I can setup a complete site, with logindialogs, errorhandling, different components, etc., I did some tutorials of the with flex delivered getting started guide but I mis some big sample projects for learning how big projects can be made. Anyone can help me?
 regard, Joost 

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread dougmccune
try:

public function removeMe(event:CloseEvent):void {
   var window:TitleWindow = TitleWindow(event.currentTarget);
   PopUpManager.removePopUp(window);
}

--- In flexcoders@yahoogroups.com, Jeremy Rottman [EMAIL PROTECTED]
wrote:

 When I try this.
 
 public function removeMe(event:CloseEvent):void {
   PopUpManager.removePopUp(event.currentTarget);
 }
 
 I get this error. 
 1118: Implicit coercion of a value with static type Object to a
 possibly unrelated type mx.core:IFlexDisplayObject.   
 
 
 
 --- In flexcoders@yahoogroups.com, dougmccune dmccune@ wrote:
 
  How about:
  
  public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(event.currentTarget);
  }
   
  
  --- In flexcoders@yahoogroups.com, Jeremy Rottman rottmanList@
  wrote:
  
   I have tried using that, and it gives me a big goose egg.
   
   This is the updated code.
   
   
   
   public function createWindow(wTitle:String, wX:Number, wY:Number,
   wWidth:Number, wHeight:Number):void {
title = new TitleWindow();
title.name = wTitle;
title.id = wTitle;
title.title = wTitle;
title.x = wX;
title.y = wY;
title.visible = true;
title.showCloseButton = true;
title.addEventListener(CloseEvent.CLOSE, removeMe);
   
windowArray.push(title);
PopUpManager.addPopUp(title, mainCanvas);
addStates(wX, wY, wWidth, wHeight);
   }
   
   public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(this)
   }
   
   
   
   
   
   
   
   
   
   --- In flexcoders@yahoogroups.com, Dustin Mercer dustin.mercer@
   wrote:
   
Have you tried:
   
title.addEventListener(  CloseEvent.CLOSE, setState );
   
instead of:
   
title.addEventListener(  MouseEvent.CLICK, setState );
   
   
   
That should take care of it...
   
   
   
   
   

   
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED]
   On
Behalf Of Jeremy Rottman
Sent: Thursday, October 19, 2006 1:55 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Creating JarJam button Effect.
   
   
   
I am taking an idea from the JarJam demo that adobe has posted on
   adobe
labs and recreating it to suit our needs. I almost have it
complete
   and
working, but I have run into two little snags.
   
When I create the titlewindow with actionscript, I am unable
to get
   the
close button at the top of the titlewindow to work. I have
looked at
every example I could find and not a single one works. With the
 code I
have provided does anyone see why this wont work?
   
Any help with this is greatly appreciated.
   
Here is a link to my test application, and source.
http://beta.homesmartagent.com/transitions/JamJarEffect.html
http://beta.homesmartagent.com/transitions/JamJarEffect.html
http://beta.homesmartagent.com/transitions/srcview/
http://beta.homesmartagent.com/transitions/srcview/
   
  
 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: Architecting a large, modular Flex application

2006-10-20 Thread Derrick Grigg
Hey Vito,

I would suggest creating Module 4 as a seperate Flex Project, which
you can create an SWF from. Have you shell application use the
SWFLoader to load the Module4.swf instead of adding Module4.swc as an
RSL. This will make the module development easier (since you can
compile,run and test seperate from the main app) and also give you
some options with regards to preventing the modules from being cached
by the browser.

I have not had any problems with the Debug mode, could be because I'm
loading the seperate SWF's instead of using SWCs.

Derrick

-
Derrick Grigg
www.dgrigg.com
[EMAIL PROTECTED]




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: Sending an array from Flex to PHP

2006-10-20 Thread christophevond
I am still very much confused on exactly how this is suppose to work.
Could someone show me a quick example of how to send data from an
ArrayCollection or Array in flex to an array in php. I would really
appreciate it and sorry for my lack of understanding.




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Learning Cairngorm $0.02

2006-10-20 Thread Jamie O
Hello,

I've been using Flex for a couple weeks, able to build apps that are a
shaky mix of loose / tightly coupled components, but functional all
the same. After reading the revered 6-part articles to whet my
appetite, I felt I was ready to dig in.

The Cairngorm 2 Store demo invoking FDS scared me a little, but I
found
http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html was
an invaluable resource to get started with as it took a less big chunk
to try and solve. In a few hours I was able to re-write her webservice
example for my HTTPService usage and get a server query to return
data. GO ME!

I'm still figuring out exactly how to write the question of how to
refactor my code from pure Flex to the Cairngormified version, but
just wanted to thank people who have answered my questions along the
way to get to this point. A resource like this group makes it
invaluable in getting up-to-speed without being daunted by the
learning curve.

If anyone has any tips / suggestions / approaches for refactoring code
and main things to be aware of in context of putting it into the right
place (controller, VO's, commands, etc) that they could share it would
be greatly appreciated.

Jamie





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: Pass Data or call function in another MXML file?

2006-10-20 Thread Jim Robson
OK, so I can't count. I think Math is overrated, anyway.  
:-)
Thanks, Tom

-Jim

--- In flexcoders@yahoogroups.com, Tom Sammons [EMAIL PROTECTED] wrote:

 just one little thing in Jim's setMasterDate function; AS date is the 
 numeric value of the month, but it starts at offset 0, so you'll
have to 
 add 1 to it for proper display:
 
 MasterDate.text = d.month+1 + / + d.date + / + d.fullYear;
 
 --- tom






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: E4X Help

2006-10-20 Thread Michael Labriola

Tangent,

Remove the {} from around selected :

var counties:XMLList = _myXml.state.(@label=selected).county;

Mike

--- In flexcoders@yahoogroups.com, Tan [EMAIL PROTECTED] wrote:

 I try writing two comboboxes to facilitate selection of the
following XML,
 
 data
   state label=Texas data=Texas
   county label=Jones data=123 /
   county label=Taylor data=124 /
   ...
   /state
   state label=Virginia data=Virginia
   county label=Alexandria data=223 /
   county label=Arlington data=224 /
   ...
   /state
   ...
 
 
 The first combo box is named _combo1 that is populated by state
data, and I
 want to get an XML or XMLList of the counties using AS3, I wonder
whether I
 can write it in E4X syntax that looks somewhat like
 
   var selected:String = _combo1.selectedItem.toString();
   var counties:XMLList = _myXml.state.(@label = {selected}).county;
 
 I get a compiler error for the last line, and I have searched
through some
 E4X samples, didn't seem to find any help.  Any advice?
 
 Thanks!
 
 - Tangent
 
 P.S.  Or should I use XmlViewCollection, Descriptor or things like that?






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] 'big' sample projects

2006-10-20 Thread P Smith


Joost,

The open source JBoss Mail Server (aka Collaboration Server) might fit the bill:
http://labs.jboss.com/portal/jbossmail/

  And the Flex 2 UI was coded by Adobe's own James Ward using the Cairngorm framework for Flex 2!

So, it is big, it is free, and it implements best practices.

fyi ... there are forums for the project at:
http://www.jboss.com/index.html?module=bbop=viewforumf=186
Also the project's lead committer, Andrew C. Oliver, presented earlier this month at the Ajax World Conference on a "Case Study: The JBoss Flex-based Mail Client".

If you do go through the code on this project, please do post back with you impressions.

Anybody else know of other open source projects using Flex UIs?

Peter- Original Message From: Joost Saanen [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Friday, October 20, 2006 5:16:17 AMSubject: [flexcoders] 'big' sample projects



Are there any complete sample sites
where the source is free? I would like to know how I can setup a complete
site, with logindialogs, errorhandling, different components, etc., I did
some tutorials of the with flex delivered getting started guide but I mis
some big sample projects for learning how big projects can be made. Anyone
can help me?

regard,
Joost

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___


[flexcoders] Exposing Flex FDS to Flash; LocalConnection Performance Issues

2006-10-20 Thread Jim Robson
We have a Flex 2 app that uses FDS, and it's working pretty well. What
we want to do is make our engine available to business partners, so
that they can develop their own UIs for our it. Ideally, they should
be able to develop their UIs using Flash (we don't want to require
them to use Flex). 

As a first step, I divided our working Flex app into 2 parts:
Part 1) The UI elements (controls, charts, etc.)
Part 2) The FDS code (RemoteObjects, etc.)

These 2 parts talk to each other using LocalConnection objects.
Everything works fine, except that performance takes a huge hit - to
the point of being unacceptable. 

So I have two questions:
1. Is there a better way of accomplishing our goal than using
LocalConnection objects?
2. Is it normal for LocalConnection objects to inflict a substantial
performance penalty?

-Jim




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Adobe Flickr library (potential bug)

2006-10-20 Thread klumikaze
Has anybody experimented much with the Flickr library that's on Adobe
Labs?

Overall, I'm thrilled with it... it works wonderfully. However, one
crucial piece for me is the ability to retrieve the number of comments
on a given Photo object. Currently, the Photo objects all have a
commentCount of 0 (even though their online counterparts clearly have
many more).

I have experimented with using the Flickr API manually via REST, and I
have determined that it is indeed pulling back the proper number of
comments for a given photo_id. So something tells me that Adobe's API
might not be receiving 

I have the FlickrService calling photos.search, returning a
PagedPhotoList. I have used debug mode to determine the items of the
PhotoList, and all of the Photo objects within it have a commentCount
of 0 as well.

I poked around the Flickr library source (available at
http://labs.adobe.com), and I could not pinpoint where the error might be.

Anybody experienced these issues? Any ideas on how to solve them?

Any help would be appreciated.

Thanks,

Brian




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman



Sorry for the delay, that code ended up working. I now have a few more issues to deal with but this is a good start at least it's one less issue I have to deal with. Thanks for the post.
On 10/20/06, dougmccune [EMAIL PROTECTED] wrote:













  



try:

public function removeMe(event:CloseEvent):void {
   var window:TitleWindow = TitleWindow(event.currentTarget);
   PopUpManager.removePopUp(window);
}

--- In flexcoders@yahoogroups.com, Jeremy Rottman [EMAIL PROTECTED]
wrote:

 When I try this.
 
 public function removeMe(event:CloseEvent):void {
 	PopUpManager.removePopUp(event.currentTarget);
 }
 
 I get this error. 
 1118: Implicit coercion of a value with static type Object to a
 possibly unrelated type mx.core:IFlexDisplayObject.	
 
 
 
 --- In flexcoders@yahoogroups.com, dougmccune dmccune@ wrote:
 
  How about:
  
  public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(event.currentTarget);
  }
   
  
  --- In flexcoders@yahoogroups.com, Jeremy Rottman rottmanList@
  wrote:
  
   I have tried using that, and it gives me a big goose egg.
   
   This is the updated code.
   
   
   
   public function createWindow(wTitle:String, wX:Number, wY:Number,
   wWidth:Number, wHeight:Number):void {
title = new TitleWindow();
title.name = wTitle;
title.id = wTitle;
title.title = wTitle;
title.x = wX;
title.y = wY;
title.visible = true;
title.showCloseButton = true;
title.addEventListener(CloseEvent.CLOSE, removeMe);
   
windowArray.push(title);
PopUpManager.addPopUp(title, mainCanvas);
addStates(wX, wY, wWidth, wHeight);
   }
   
   public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(this)
   }
   
   
   
   
   
   
   
   
   
   --- In flexcoders@yahoogroups.com, Dustin Mercer dustin.mercer@

   wrote:
   
Have you tried:
   
title.addEventListener(  CloseEvent.CLOSE, setState );
   
instead of:
   
title.addEventListener(  MouseEvent.CLICK, setState );
   
   
   
That should take care of it...
   
   
   
   
   

   
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
   On
Behalf Of Jeremy Rottman
Sent: Thursday, October 19, 2006 1:55 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Creating JarJam button Effect.
   
   
   
I am taking an idea from the JarJam demo that adobe has posted on
   adobe
labs and recreating it to suit our needs. I almost have it
complete
   and
working, but I have run into two little snags.
   
When I create the titlewindow with actionscript, I am unable
to get
   the
close button at the top of the titlewindow to work. I have
looked at
every example I could find and not a single one works. With the
 code I
have provided does anyone see why this wont work?
   
Any help with this is greatly appreciated.
   
Here is a link to my test application, and source.
http://beta.homesmartagent.com/transitions/JamJarEffect.html

http://beta.homesmartagent.com/transitions/JamJarEffect.html

http://beta.homesmartagent.com/transitions/srcview/
http://beta.homesmartagent.com/transitions/srcview/

   
  
 



  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] building project slow on vpn network

2006-10-20 Thread Kevin Morland


Hello,You should be running some sort of repository, like SVN.  You would have the files on the server however you would also have a local copy on your computer and execute locally.  Once, you are finished with the file you can commit the file and the rest of organization would have access to the file.  Many possibilities with a code repository.  I recommend SVN...KevinOn Oct 20, 2006, at 9:24 AM, amigo_fd wrote:Hello,I'm working from home with vpn to the office. My flex-project is on ashared directory on the office-server and I'm working on this fileswith colleges at the office. So files have to be on the server.I already changed my build folder to a local folder on my ownharddisk, but building still takes a long time (especially creatingoutput folder each time).Any ideas on how to speed it up ?Thanks,Frank
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___


[flexcoders] gant chart

2006-10-20 Thread arnold_charming
Hello!

I'm currently working on builidng a gant chart for my application. And
I have some question for which I would be very gratefull if you could
help me out.

1. Because gant chart doesn't have a fix number of tasks, how to setup
a chart legend?
2. How can I build a gant chart from XML file? Till now I just found
solutions with ArrayColletions.
3. How to build a dynamic (programmable) gant chart?

Thank you.




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread mdoberenz
You'll want to do this...

public function removeMe(event:CloseEvent):void {
PopUpManager.removePopUp(event.currentTarget as 
DisplayObject);
}

Should work...

By the way, I'd suggest not using a TitleWindow, but instead, use a 
Panel.  I noticed that I can move the TitleWindow around wherever I 
want it to be.  If that's a desired effect, then I'd remove the  
from the left-hand side b/c it's a bit confusing.

However, if you do this, you probably won't use the PopUpManager to 
create the TitleWindow.  You'll need to position the panel and move 
it wherever you'll need it using code.

Just my take on it.


--- In flexcoders@yahoogroups.com, Jeremy Rottman [EMAIL PROTECTED] 
wrote:

 When I try this.
 
 public function removeMe(event:CloseEvent):void {
   PopUpManager.removePopUp(event.currentTarget);
 }
 
 I get this error. 
 1118: Implicit coercion of a value with static type Object to a
 possibly unrelated type mx.core:IFlexDisplayObject.   
 
 
 
 --- In flexcoders@yahoogroups.com, dougmccune dmccune@ wrote:
 
  How about:
  
  public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(event.currentTarget);
  }
   
  
  --- In flexcoders@yahoogroups.com, Jeremy Rottman rottmanList@
  wrote:
  
   I have tried using that, and it gives me a big goose egg.
   
   This is the updated code.
   
   
   
   public function createWindow(wTitle:String, wX:Number, 
wY:Number,
   wWidth:Number, wHeight:Number):void {
title = new TitleWindow();
title.name = wTitle;
title.id = wTitle;
title.title = wTitle;
title.x = wX;
title.y = wY;
title.visible = true;
title.showCloseButton = true;
title.addEventListener(CloseEvent.CLOSE, removeMe);
   
windowArray.push(title);
PopUpManager.addPopUp(title, mainCanvas);
addStates(wX, wY, wWidth, wHeight);
   }
   
   public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(this)
   }
   
   
   
   
   
   
   
   
   
   --- In flexcoders@yahoogroups.com, Dustin Mercer 
dustin.mercer@
   wrote:
   
Have you tried:
   
title.addEventListener(  CloseEvent.CLOSE, setState );
   
instead of:
   
title.addEventListener(  MouseEvent.CLICK, setState );
   
   
   
That should take care of it...
   
   
   
   
   

   
From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED]
   On
Behalf Of Jeremy Rottman
Sent: Thursday, October 19, 2006 1:55 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Creating JarJam button Effect.
   
   
   
I am taking an idea from the JarJam demo that adobe has 
posted on
   adobe
labs and recreating it to suit our needs. I almost have it 
complete
   and
working, but I have run into two little snags.
   
When I create the titlewindow with actionscript, I am unable 
to get
   the
close button at the top of the titlewindow to work. I have 
looked at
every example I could find and not a single one works. With 
the
 code I
have provided does anyone see why this wont work?
   
Any help with this is greatly appreciated.
   
Here is a link to my test application, and source.
http://beta.homesmartagent.com/transitions/JamJarEffect.html
http://beta.homesmartagent.com/transitions/JamJarEffect.html
http://beta.homesmartagent.com/transitions/srcview/
http://beta.homesmartagent.com/transitions/srcview/
   
  
 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] balanced tree?

2006-10-20 Thread Douglas Knudsen



Ok, I'm starting to work on creating a 'balanced' tree component. I planned to extend UIComponent. Any other suggestions on which class I should extend? Wondering If I could exptend the Tree class and make it work somehow. By 'balanced' tree I mean one where the nodes pile up on center, not alligned right only like Tree.
-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] gant chart

2006-10-20 Thread Iko Knyphausen














There is a flash component out there (http://www.anychart.com/products/anychartgantt.shtml).
I have emailed them with some questions, but have not yet received a response.
If you know others, please let me know. I would be quite interested in such a
chart for my flex apps too...



I have written a Gantt in DHTML and _javascript_ and its not
entirely trivial. It also depends on the kind of features you want to offer,
for example dependency lines, summary tasks, task progress, time line scale, just
to name a few.



At the time, I wrote a container and then added task objects on the
fly. The container would know how to render the task objects, and the task
objects themselves carried their information such as start and end date,
dependencies, progress status, etc. If your chart is supposed to be
interactive, you should also offer some events to be raised: e.g. Task was
clicked, dependency was dragged, chart was scrolled down (so that you can
connect the chart to a grid and scroll them in parallel). As you can see, it
quickly gets complex.



There is another company that offers interactive Gantts, ILOG (http://www.ilog.com/products/jviews/gantt/
) but I am not sure what they offer in terms of licensing and
whether they will offer anything in the flash/flex space.



Hope this helps -Iko







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of arnold_charming
Sent: Friday, October 20, 2006
12:27 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] gant chart











Hello!

I'm currently working on builidng a gant chart for my application. And
I have some question for which I would be very gratefull if you could
help me out.

1. Because gant chart doesn't have a fix number of tasks, how to setup
a chart legend?
2. How can I build a gant chart from XML file? Till now I just found
solutions with ArrayColletions.
3. How to build a dynamic (programmable) gant chart?

Thank you.






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






Re: [flexcoders] balanced tree?

2006-10-20 Thread Michael Schmalle



Hi,Seems to me you could do this quite easy with itemRenderers, using indent calculations based off of measured or unscaled witdth.Peace, MikeOn 10/20/06, 
Douglas Knudsen [EMAIL PROTECTED] wrote:













  



Ok, I'm starting to work on creating a 'balanced' tree component. I planned to extend UIComponent. Any other suggestions on which class I should extend? Wondering If I could exptend the Tree class and make it work somehow. By 'balanced' tree I mean one where the nodes pile up on center, not alligned right only like Tree.
-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?

  













-- What goes up, does come down.

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman



You are correct on not wanting to make the TitleWindow to be able to be dragged however I have yet to figure out how to disable the dragging on the TitleWindow. Our original idea was to use a panel however we would like it to be able to have the ability of a close button on the top right to imitate the jar jam, sadly though the panel does not come with this ability easily and the only custom panel component I have found works for 
1.5, if you have a solution to this with using a panel I would greatly appreciate your input.On 10/20/06, mdoberenz 
[EMAIL PROTECTED] wrote:












  



You'll want to do this...

public function removeMe(event:CloseEvent):void {
	PopUpManager.removePopUp(event.currentTarget as 
DisplayObject);
}

Should work...

By the way, I'd suggest not using a TitleWindow, but instead, use a 
Panel.  I noticed that I can move the TitleWindow around wherever I 
want it to be.  If that's a desired effect, then I'd remove the  
from the left-hand side b/c it's a bit confusing.

However, if you do this, you probably won't use the PopUpManager to 
create the TitleWindow.  You'll need to position the panel and move 
it wherever you'll need it using code.

Just my take on it.

--- In flexcoders@yahoogroups.com, Jeremy Rottman [EMAIL PROTECTED] 
wrote:

 When I try this.
 
 public function removeMe(event:CloseEvent):void {
 	PopUpManager.removePopUp(event.currentTarget);
 }
 
 I get this error. 
 1118: Implicit coercion of a value with static type Object to a
 possibly unrelated type mx.core:IFlexDisplayObject.	
 
 
 
 --- In flexcoders@yahoogroups.com, dougmccune dmccune@ wrote:
 
  How about:
  
  public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(event.currentTarget);
  }
   
  
  --- In flexcoders@yahoogroups.com, Jeremy Rottman rottmanList@
  wrote:
  
   I have tried using that, and it gives me a big goose egg.
   
   This is the updated code.
   
   
   
   public function createWindow(wTitle:String, wX:Number, 
wY:Number,
   wWidth:Number, wHeight:Number):void {
title = new TitleWindow();
title.name = wTitle;
title.id = wTitle;
title.title = wTitle;
title.x = wX;
title.y = wY;
title.visible = true;
title.showCloseButton = true;
title.addEventListener(CloseEvent.CLOSE, removeMe);
   
windowArray.push(title);
PopUpManager.addPopUp(title, mainCanvas);
addStates(wX, wY, wWidth, wHeight);
   }
   
   public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(this)
   }
   
   
   
   
   
   
   
   
   
   --- In flexcoders@yahoogroups.com, Dustin Mercer 
dustin.mercer@
   wrote:
   
Have you tried:
   
title.addEventListener(  CloseEvent.CLOSE, setState );
   
instead of:
   
title.addEventListener(  MouseEvent.CLICK, setState );
   
   
   
That should take care of it...
   
   
   
   
   

   
From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com]
   On
Behalf Of Jeremy Rottman
Sent: Thursday, October 19, 2006 1:55 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Creating JarJam button Effect.
   
   
   
I am taking an idea from the JarJam demo that adobe has 
posted on
   adobe
labs and recreating it to suit our needs. I almost have it 
complete
   and
working, but I have run into two little snags.
   
When I create the titlewindow with actionscript, I am unable 
to get
   the
close button at the top of the titlewindow to work. I have 
looked at
every example I could find and not a single one works. With 
the
 code I
have provided does anyone see why this wont work?
   
Any help with this is greatly appreciated.
   
Here is a link to my test application, and source.
http://beta.homesmartagent.com/transitions/JamJarEffect.html

http://beta.homesmartagent.com/transitions/JamJarEffect.html

http://beta.homesmartagent.com/transitions/srcview/
http://beta.homesmartagent.com/transitions/srcview/

   
  
 



  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 

Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman



Also just another quick note, using your code of event.currentTarget as DisplayObject rendered the error of 1067: Implicit coercion of a value of type flash.display:DisplayObject to an unrelated type mx.core:IFlexDisplayObject
.On 10/20/06, mdoberenz [EMAIL PROTECTED] wrote:













  



You'll want to do this...

public function removeMe(event:CloseEvent):void {
	PopUpManager.removePopUp(event.currentTarget as 
DisplayObject);
}

Should work...

By the way, I'd suggest not using a TitleWindow, but instead, use a 
Panel.  I noticed that I can move the TitleWindow around wherever I 
want it to be.  If that's a desired effect, then I'd remove the  
from the left-hand side b/c it's a bit confusing.

However, if you do this, you probably won't use the PopUpManager to 
create the TitleWindow.  You'll need to position the panel and move 
it wherever you'll need it using code.

Just my take on it.

--- In flexcoders@yahoogroups.com, Jeremy Rottman [EMAIL PROTECTED] 
wrote:

 When I try this.
 
 public function removeMe(event:CloseEvent):void {
 	PopUpManager.removePopUp(event.currentTarget);
 }
 
 I get this error. 
 1118: Implicit coercion of a value with static type Object to a
 possibly unrelated type mx.core:IFlexDisplayObject.	
 
 
 
 --- In flexcoders@yahoogroups.com, dougmccune dmccune@ wrote:
 
  How about:
  
  public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(event.currentTarget);
  }
   
  
  --- In flexcoders@yahoogroups.com, Jeremy Rottman rottmanList@
  wrote:
  
   I have tried using that, and it gives me a big goose egg.
   
   This is the updated code.
   
   
   
   public function createWindow(wTitle:String, wX:Number, 
wY:Number,
   wWidth:Number, wHeight:Number):void {
title = new TitleWindow();
title.name = wTitle;
title.id = wTitle;
title.title = wTitle;
title.x = wX;
title.y = wY;
title.visible = true;
title.showCloseButton = true;
title.addEventListener(CloseEvent.CLOSE, removeMe);
   
windowArray.push(title);
PopUpManager.addPopUp(title, mainCanvas);
addStates(wX, wY, wWidth, wHeight);
   }
   
   public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(this)
   }
   
   
   
   
   
   
   
   
   
   --- In flexcoders@yahoogroups.com, Dustin Mercer 
dustin.mercer@
   wrote:
   
Have you tried:
   
title.addEventListener(  CloseEvent.CLOSE, setState );
   
instead of:
   
title.addEventListener(  MouseEvent.CLICK, setState );
   
   
   
That should take care of it...
   
   
   
   
   

   
From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com]
   On
Behalf Of Jeremy Rottman
Sent: Thursday, October 19, 2006 1:55 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Creating JarJam button Effect.
   
   
   
I am taking an idea from the JarJam demo that adobe has 
posted on
   adobe
labs and recreating it to suit our needs. I almost have it 
complete
   and
working, but I have run into two little snags.
   
When I create the titlewindow with actionscript, I am unable 
to get
   the
close button at the top of the titlewindow to work. I have 
looked at
every example I could find and not a single one works. With 
the
 code I
have provided does anyone see why this wont work?
   
Any help with this is greatly appreciated.
   
Here is a link to my test application, and source.
http://beta.homesmartagent.com/transitions/JamJarEffect.html

http://beta.homesmartagent.com/transitions/JamJarEffect.html

http://beta.homesmartagent.com/transitions/srcview/
http://beta.homesmartagent.com/transitions/srcview/

   
  
 



  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] gant chart

2006-10-20 Thread Andrew Trice












You could create itemrenderers for a
datagrid that utilize the drawing API to draw the horizontal lines for your
data.



For instance, have a grid like this:



Column 1: task name

Column 2: duration

Column 3: start date

Column 4: item renderer that draws out
task length with respect to width of column. Use the drawing api to draw
lines/rectangles to represent a duration of time. 



You could also have a custom datagrid column
header that uses the drawing API to draw a scale for the time shown in column 4.




Using a datagrid component for this also
keeps it very easy to get data into your Gantt chart.





_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com



Blog: http://www.cynergysystems.com/blogs/page/andrewtrice

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Iko Knyphausen
Sent: Friday, October 20, 2006
3:58 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] gant
chart















There is a flash
component out there (http://www.anychart.com/products/anychartgantt.shtml).
I have emailed them with some questions, but have not yet received a response.
If you know others, please let me know. I would be quite interested in such a
chart for my flex apps too...



I have written a
Gantt in DHTML and _javascript_ and its not entirely trivial. It also
depends on the kind of features you want to offer, for example dependency
lines, summary tasks, task progress, time line scale, just to name a few.



At the time, I
wrote a container and then added task objects on the fly. The container would
know how to render the task objects, and the task objects themselves carried
their information such as start and end date, dependencies, progress status,
etc. If your chart is supposed to be interactive, you should also offer some
events to be raised: e.g. Task was clicked, dependency was dragged, chart was
scrolled down (so that you can connect the chart to a grid and scroll them in
parallel). As you can see, it quickly gets complex.



There is another
company that offers interactive Gantts, ILOG (http://www.ilog.com/products/jviews/gantt/
) but I am not sure what they offer in terms of licensing and
whether they will offer anything in the flash/flex space.



Hope this helps
-Iko







From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of arnold_charming
Sent: Friday, October 20, 2006
12:27 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] gant chart











Hello!

I'm currently working on builidng a gant chart for my application. And
I have some question for which I would be very gratefull if you could
help me out.

1. Because gant chart doesn't have a fix number of tasks, how to setup
a chart legend?
2. How can I build a gant chart from XML file? Till now I just found
solutions with ArrayColletions.
3. How to build a dynamic (programmable) gant chart?

Thank you.














__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Cannot get Accept-Language from HTTP header with httpService

2006-10-20 Thread Matt Chotin












Someone also pointed out to me that we
have the flash.system.Capabilities.language value which provides some benefit
if not the whole header.



Matt











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jfournet
Sent: Friday, October 13, 2006
12:46 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Cannot get
Accept-Language from HTTP header with httpService











I am trying to get the Accept-Language header by
calling the 
following jsp with a flex httpService to get the locale of the 
client's browser for i18n purposes. When I execute the jsp 
standalone the Accept-Language header is there, but when I execute it 
by calling it with an httpService there is no Accept-Language 
header. Can anyone tell me why this is so and direct me to a method 
to get the browser's prefered locale?

getlocale.jsp

%

String s = request.getHeader(Accept-Language);

out.println(s.substring(0,2) + _ + s.substring(3,5));

%

Flex Application:

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml

layout=absolute creationComplete=initApp();
mx:Script
![CDATA[
import flash.external.ExternalInterface;
import mx.rpc.events.ResultEvent;
public var clientLocale:String = new String();
[Bindable]
public var localeSWF:String;
import mx.controls.Alert;

private function initApp():void
{
getClientLocale.send();
}
public function setLocale
(event:ResultEvent):void
{

//Alert.show(String
(getClientLocale.lastResult));
localeSWF = helloworld_ + String
(getClientLocale.lastResult) + .swf;

}

]]
/mx:Script
mx:HTTPService id=getClientLocale useProxy=false

resultFormat=text result=setLocale(event)
showBusyCursor=true 
method=POST 
url="">jsp
/mx:HTTPService
mx:SWFLoader id=myLoader width=300
source={localeSWF}/
/mx:Application






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






Re: [flexcoders] balanced tree?

2006-10-20 Thread Douglas Knudsen



ok, but extend which component in your idea? DKOn 10/20/06, Michael Schmalle [EMAIL PROTECTED]
 wrote:


Hi,Seems to me you could do this quite easy with itemRenderers, using indent calculations based off of measured or unscaled witdth.Peace, Mike
On 10/20/06, 
Douglas Knudsen [EMAIL PROTECTED] wrote:














  



Ok, I'm starting to work on creating a 'balanced' tree component. I planned to extend UIComponent. Any other suggestions on which class I should extend? Wondering If I could exptend the Tree class and make it work somehow. By 'balanced' tree I mean one where the nodes pile up on center, not alligned right only like Tree.
-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?

  













-- What goes up, does come down.




-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] Anyone ever built a RSS scrolling component for Flex 2?

2006-10-20 Thread Peterson, Chris
This is totally beautiful!  I have got it to *mostly* work, but I don't
know where or what type of file its looking for when it throws an error
related to proxy.php, and how to direct it to a new rss file?  =)

Beautiful work!

Chris Peterson 

-Original Message-
From: Mozilla By [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 20, 2006 12:01 PM
To: Peterson, Chris
Subject: RE: [flexcoders] Anyone ever built a RSS scrolling component
for Flex 2?

Do you search something like this?

http://projects.willstream.com/rssticker/index1.html

Mozilla By

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Peterson, Chris
Sent: 20 ??? 2006 ?. 18:26
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Anyone ever built a RSS scrolling component for
Flex 2?

I would like to have a flexible sized pod for a site I am building, that
I can point it to an RSS address and have it display the Title / story,
and auto-scroll through from one title to the next.  Anyone ever seen
such a beastie in Flex?  There are tons of JavaScript examples, but I
would like to stay away from floating an iFrame for this app.

Chris Peterson



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] New resource for learning Caringorm!

2006-10-20 Thread Nick Collins



I... I think I hear Angels singing sweetly in the backgroundOn 10/20/06, Evan Gifford [EMAIL PROTECTED] wrote:













  











Hey Guys,



For those of us who are scaling the cairngorm learning curve,
you'll be happy to know that the cairngorm documentation group has just
launched our website!



You can find it here: http://www.cairngormdocs.org/




There are many useful tools, example apps and of course the
Cairngorm Diagram hosted here.



See you soon!

-Evan







  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Uploads Needed Greater than 100 MB

2006-10-20 Thread Patrick Liechty


A more concrete answer from say an Adobe developer would be appreciated. We are having trouble uploading large files of the size 200, 300 mb.- Original Message From: Stacy Young [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Thursday, October 19, 2006 11:53:33 AMSubject: RE: [flexcoders] Uploads Needed Greater than 100 MB


















I don’t believe this limit is
enforced …just that it’s been tested up to 100mb.  I *believe* this is the case … 

  

Stace 

  









From:
[EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of wwwpl
Sent: Thursday, October 19, 2006
12:15 PM
To: [EMAIL PROTECTED] ups.com
Subject: [flexcoders] Uploads
Needed Greater than 100 MB 



  







In the FileReference documentation, it says that the
file upload limit
is 100 Megabytes. I am curious why the developers chose this value
and why it is not configurable. Maybe it is configurable and I don't
know it yet. If anyone could enlighten me on this subject, I would
appreciate it. We have a Flex application that uploads large files. 
The restrictions on FileReference are a pain. I would also like to
see other file upload options, like ftp etc. Right now it is just http. 






 
  
  AVIS
  IMPORTANT
  
  
  WARNING
  
 
 
  
  Ce message électronique et ses pièces jointes peuvent contenir des renseignements confidentiels, exclusifs ou légalement privilégiés destinés au seul usage du destinataire visé.  L'expéditeur original ne renonce à aucun privilège ou à aucun autre droit si le présent message a été transmis involontairement ou s'il est retransmis sans son autorisation.  Si vous n'êtes pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses pièces jointes, de votre système.  La lecture, la distribution, la copie ou tout autre usage du présent message ou de ses pièces jointes par des personnes autres que le destinataire visé ne sont pas autorisés et pourraient être illégaux.  Si vous avez reçu ce courrier électronique par erreur, veuillez en aviser
 l'expéditeur.
  
  
  This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient.  No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message.  If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system.  The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful.  If you have received this e-mail in error, please notify the sender.
  
 





  




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___


[flexcoders] Re: array of arrays and XML

2006-10-20 Thread jnewport
Thanks for the quick response.  

I know its possible to loop over the XMLList, but I am not sure how to
do it. I have used the XMLListCollection, but then when I try to use
the XMLListCollection as a data provider I have use the @ symbol as
you suggested below.

Using the @ cause more problems because when try to make my app
dynamic I have to try things like [EMAIL PROTECTED]) and it gets
messy when I have to try to capitalize things like
[EMAIL PROTECTED]({somevar}).


So if you could help with how to loop through the XMLList it would
make my code much cleaner.  

Thanks, J

--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote:

 You can loop over the XMLList and build that ArrayCollection.
 
  
 
 Alternatively, you could use an XMLListCollection and do:
 
 var xlcBills:XMLListCollection = new
 XMLListCollection(myXMLBillsList.month.bill)
 
 ...no loop required.  A labelField spec might be:@name or @Amount. 
 
  
 
 I don't do charts yet so you are on your own there.
 
  
 
 Tracy
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of jnewport
 Sent: Thursday, October 19, 2006 12:13 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] array of arrays and XML
 
  
 
 Hoping to figure this out. What I am trying to do is get a result like
 this (ArrayCollection).
 
 public var expenses:ArrayCollection = new ArrayCollection([
 {Expense: Taxes, Amount: 106976},
 {Expense: Rent, Amount: 147776},
 {Expense: Car, Amount: 79554},
 {Expense: Gas, Amount: 39252},
 {Expense: Food, Amount: 128351}
 
 from this XML:
 
 list
 
 month monthname=Jan-04 income=14000263 average=80052
 bill name=Taxes Amount=106976 customers=25670/
 bill name=Rent Amount=147776 customers=25670/
 bill name=Car Amount=79554 customers=25670/
 bill name=Gas Amount=39252 customers=25670/
 bill name=Food Amount=128351 customers=25670/
 /month
 
 /list
 
 Then use it to plot data on a piechart. I am pulling the xml in via a
 httpservice. So I am guessing I need to iterate through the xml and
 create an arrayCollection of arrays? But I can't figure that out. 
 Then how to use the Expenses:arrayCollection as a piechart dataprovider.
 
 Thanks in advance.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] proxy servlet reuse for flex 2?

2006-10-20 Thread tinkiknit
Hello...

Total newbie here. :) I am trying to find out if we can reuse our 
proxy servlet from 1.5 in the new 2.0 environment. Here's what I 
believe I've got.

We need to autheticate the user of our app and we use a servlet to 
intercept any calls to our application and any of the webservices it 
uses through the use of the proxy mechanism. I see that our flex-
config.xml file in 1.5 has this proxy thing indicated in the web-
services section. In our application's web.xml, this servlet is 
indicated for as well. We need to do this for 2.0 as well, intercept 
calls to the webservice and authenticate the user (not form based, 
we're using certs).

I've been reading the documentation out there and it seems to me we 
need the Flex Data Services in order to replicate this? or am I 
reading this wrong?

Any tips, tricks appreciated...I know the tech lead really wants to 
push forward to Flex 2.

Thanks in advance!

Christine




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: Architecting a large, modular Flex application

2006-10-20 Thread vitopn
Derrick,
  That got me on the correct path. I now have a working sample where
the Shell application loads the Module app using the SWFLoader
control.  Communication between the module and the shell is done
through a shared RSL.  

Next step is to work Cairnhorm and DataServices into the sample.  

Thanx again for your help ...
Cheers,
-Vito


--- In flexcoders@yahoogroups.com, Derrick Grigg [EMAIL PROTECTED] wrote:

 Hey Vito,
 
 I would suggest creating Module 4 as a seperate Flex Project, which
 you can create an SWF from. Have you shell application use the
 SWFLoader to load the Module4.swf instead of adding Module4.swc as an
 RSL. This will make the module development easier (since you can
 compile,run and test seperate from the main app) and also give you
 some options with regards to preventing the modules from being cached
 by the browser.
 
 I have not had any problems with the Debug mode, could be because I'm
 loading the seperate SWF's instead of using SWCs.
 
 Derrick
 
 -
 Derrick Grigg
 www.dgrigg.com
 [EMAIL PROTECTED]






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] Learning Cairngorm $0.02

2006-10-20 Thread Nick Collins



I'm not sure Jesse would care too much for being referred to as her but yeah, his blog has a lot of great stuff on it. One of my daily reads.On 10/20/06, 
Jamie O [EMAIL PROTECTED] wrote:













  



Hello,

I've been using Flex for a couple weeks, able to build apps that are a
shaky mix of loose / tightly coupled components, but functional all
the same. After reading the revered 6-part articles to whet my
appetite, I felt I was ready to dig in.

The Cairngorm 2 Store demo invoking FDS scared me a little, but I
found
http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html was

an invaluable resource to get started with as it took a less big chunk
to try and solve. In a few hours I was able to re-write her webservice
example for my HTTPService usage and get a server query to return
data. GO ME!

I'm still figuring out exactly how to write the question of how to
refactor my code from pure Flex to the Cairngormified version, but
just wanted to thank people who have answered my questions along the
way to get to this point. A resource like this group makes it
invaluable in getting up-to-speed without being daunted by the
learning curve.

If anyone has any tips / suggestions / approaches for refactoring code
and main things to be aware of in context of putting it into the right
place (controller, VO's, commands, etc) that they could share it would
be greatly appreciated.

Jamie


  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread dougmccune
I think this is what you want:
http://dougmccune.com/PanelTest/bin/JamJarEffect.html

View source to check it out. The key is a simple extension of
TitleWindow. It's called UndraggableTitleWindow and basically catches
the mouse down event on the titlebar and cancels it from propogating
so it never starts dragging.

You still have the problem that clicking on the button keeps making
new instances of the popup over and over, so that should probably be
fixed.



--- In flexcoders@yahoogroups.com, Jeremy Rottman [EMAIL PROTECTED]
wrote:

 Also just another quick note, using your code of event.currentTarget as
 DisplayObject rendered the error of 1067: Implicit coercion of a
value of
 type flash.display:DisplayObject to an unrelated type
 mx.core:IFlexDisplayObject.
 
 On 10/20/06, mdoberenz [EMAIL PROTECTED] wrote:
 
You'll want to do this...
 
  public function removeMe(event:CloseEvent):void {
  PopUpManager.removePopUp(event.currentTarget as
  DisplayObject);
  }
 
  Should work...
 
  By the way, I'd suggest not using a TitleWindow, but instead, use a
  Panel. I noticed that I can move the TitleWindow around wherever I
  want it to be. If that's a desired effect, then I'd remove the 
  from the left-hand side b/c it's a bit confusing.
 
  However, if you do this, you probably won't use the PopUpManager to
  create the TitleWindow. You'll need to position the panel and move
  it wherever you'll need it using code.
 
  Just my take on it.
 
 
  --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
Jeremy
  Rottman rottmanList@
  wrote:
  
   When I try this.
  
   public function removeMe(event:CloseEvent):void {
   PopUpManager.removePopUp(event.currentTarget);
   }
  
   I get this error.
   1118: Implicit coercion of a value with static type Object to a
   possibly unrelated type mx.core:IFlexDisplayObject.
  
  
  
   --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
  dougmccune dmccune@ wrote:
   
How about:
   
public function removeMe(event:CloseEvent){
PopUpManager.removePopUp(event.currentTarget);
}
   
   
--- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
  Jeremy Rottman rottmanList@
wrote:

 I have tried using that, and it gives me a big goose egg.

 This is the updated code.



 public function createWindow(wTitle:String, wX:Number,
  wY:Number,
 wWidth:Number, wHeight:Number):void {
 title = new TitleWindow();
 title.name = wTitle;
 title.id = wTitle;
 title.title = wTitle;
 title.x = wX;
 title.y = wY;
 title.visible = true;
 title.showCloseButton = true;
 title.addEventListener(CloseEvent.CLOSE, removeMe);

 windowArray.push(title);
 PopUpManager.addPopUp(title, mainCanvas);
 addStates(wX, wY, wWidth, wHeight);
 }

 public function removeMe(event:CloseEvent){
 PopUpManager.removePopUp(this)
 }









 --- In flexcoders@yahoogroups.com
flexcoders%40yahoogroups.com,
  Dustin Mercer
  dustin.mercer@
 wrote:
 
  Have you tried:
 
  title.addEventListener( CloseEvent.CLOSE, setState );
 
  instead of:
 
  title.addEventListener( MouseEvent.CLICK, setState );
 
 
 
  That should take care of it...
 
 
 
 
 
  
 
  From: flexcoders@yahoogroups.com
flexcoders%40yahoogroups.com
  [mailto:flexcoders@yahoogroups.com flexcoders%40yahoogroups.com]
 On
  Behalf Of Jeremy Rottman
  Sent: Thursday, October 19, 2006 1:55 PM
  To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com
  Subject: [flexcoders] Creating JarJam button Effect.
 
 
 
  I am taking an idea from the JarJam demo that adobe has
  posted on
 adobe
  labs and recreating it to suit our needs. I almost have it
  complete
 and
  working, but I have run into two little snags.
 
  When I create the titlewindow with actionscript, I am unable
  to get
 the
  close button at the top of the titlewindow to work. I have
  looked at
  every example I could find and not a single one works. With
  the
   code I
  have provided does anyone see why this wont work?
 
  Any help with this is greatly appreciated.
 
  Here is a link to my test application, and source.
  http://beta.homesmartagent.com/transitions/JamJarEffect.html
  http://beta.homesmartagent.com/transitions/JamJarEffect.html
  http://beta.homesmartagent.com/transitions/srcview/
  http://beta.homesmartagent.com/transitions/srcview/
 

   
  
 
   
 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email 

Re: [flexcoders] 'big' sample projects

2006-10-20 Thread Nick Collins



Last I saw the JBoss code was still only good for Beta 3 of Flex, and didn't work with the release version. Has this changed?On 10/20/06, P Smith 
[EMAIL PROTECTED] wrote:












  



Joost,

The open source JBoss Mail Server (aka Collaboration Server) might fit the bill:
http://labs.jboss.com/portal/jbossmail/

  And the Flex 2 UI was coded by Adobe's own James Ward using the Cairngorm framework for Flex 2!

So, it is big, it is free, and it implements best practices.

fyi ... there are forums for the project at:
http://www.jboss.com/index.html?module=bbop=viewforumf=186

Also the project's lead committer, Andrew C. Oliver, presented earlier this month at the 
Ajax World Conference on a 
Case Study: The JBoss Flex-based Mail Client.

If you do go through the code on this project, please do post back with you impressions.

Anybody else know of other open source projects using Flex UIs?

Peter- Original Message From: Joost Saanen [EMAIL PROTECTED]
riek.nlTo: [EMAIL PROTECTED]
ups.comSent: Friday, October 20, 2006 5:16:17 AMSubject: [flexcoders] 'big' sample projects



Are there any complete sample sites
where the source is free? I would like to know how I can setup a complete
site, with logindialogs, errorhandling, different components, etc., I did
some tutorials of the with flex delivered getting started guide but I mis
some big sample projects for learning how big projects can be made. Anyone
can help me?

regard,
Joost

  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Version check for IE7 not working anymore

2006-10-20 Thread Nick Collins



First thing I'd check is whether _javascript_ is enabled in your install of IE7? Then I'd ask what are you using for your detection script? I'd recommend SWFObject.On 10/20/06, 
Jonas Windey [EMAIL PROTECTED] wrote:












  



Hi,

I just upgraded to IE 7 final, and I'm getting the Alternate HTML content
should be placed here. This content requires the Adobe Flash Player. Get
Flash message when I open my app.
Anyone with a quick fix? I got fp9.0 installed

Thanks,
Jonas


  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] balanced tree?

2006-10-20 Thread Michael Schmalle



Hi,I would use the Tree. I think I understand what you are trying to accomplish.Basically you will look at the TreeItemRenderer. If you notice, the disclosureIcon, icon and label are all hard coded left align.
All you would need to do is use the TreeData to get the indent and you could then position the assets wherever you wanted. I don't know what your idea is as to the positioning of the disclosureIcon but, I can see a lot of different ways to layout out the item whild centering the label and icon.
Using the indent property your really could get creative. Just depends what exactly you are trying to accomplish.Peace, MikeOn 10/20/06, 
Douglas Knudsen [EMAIL PROTECTED] wrote:













  



ok, but extend which component in your idea? DKOn 10/20/06, Michael Schmalle 
[EMAIL PROTECTED]
 wrote:


Hi,Seems to me you could do this quite easy with itemRenderers, using indent calculations based off of measured or unscaled witdth.Peace, Mike
On 10/20/06, 
Douglas Knudsen [EMAIL PROTECTED] wrote:















  



Ok, I'm starting to work on creating a 'balanced' tree component. I planned to extend UIComponent. Any other suggestions on which class I should extend? Wondering If I could exptend the Tree class and make it work somehow. By 'balanced' tree I mean one where the nodes pile up on center, not alligned right only like Tree.
-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?

  













-- What goes up, does come down.




-- Douglas Knudsenhttp://www.cubicleman.com
this is my signature, like it?

  













-- What goes up, does come down.

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] balanced tree?

2006-10-20 Thread Michael Schmalle



BTW,In hwat I just wrote, you wouldn't even 'need' to extend the tree if you are not overrding any functionality. If you are just looking for a way to expresss the already present data of the TreeData, then all you would need is the custom item renderer class and;
mx:Tree itemRenderer=my.package.BalancedItemRenderer /Peace, MikeOn 10/20/06, Michael Schmalle 
[EMAIL PROTECTED] wrote:Hi,I would use the Tree. I think I understand what you are trying to accomplish.
Basically you will look at the TreeItemRenderer. If you notice, the disclosureIcon, icon and label are all hard coded left align.
All you would need to do is use the TreeData to get the indent and you could then position the assets wherever you wanted. I don't know what your idea is as to the positioning of the disclosureIcon but, I can see a lot of different ways to layout out the item whild centering the label and icon.
Using the indent property your really could get creative. Just depends what exactly you are trying to accomplish.Peace, Mike
On 10/20/06, 
Douglas Knudsen [EMAIL PROTECTED] wrote:














  



ok, but extend which component in your idea? DKOn 10/20/06, Michael Schmalle 

[EMAIL PROTECTED]
 wrote:


Hi,Seems to me you could do this quite easy with itemRenderers, using indent calculations based off of measured or unscaled witdth.Peace, Mike
On 10/20/06, 
Douglas Knudsen [EMAIL PROTECTED] wrote:
















  



Ok, I'm starting to work on creating a 'balanced' tree component. I planned to extend UIComponent. Any other suggestions on which class I should extend? Wondering If I could exptend the Tree class and make it work somehow. By 'balanced' tree I mean one where the nodes pile up on center, not alligned right only like Tree.
-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?

  













-- What goes up, does come down.




-- Douglas Knudsenhttp://www.cubicleman.com
this is my signature, like it?

  













-- What goes up, does come down.

-- What goes up, does come down.

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: RSL: using runtime shared library prompts debug dialog [F2b3]

2006-10-20 Thread vitopn
Has this been fixed yet?

Is there a workaround?

Cheers,
-Vito

--- In flexcoders@yahoogroups.com, Peter Blazejewicz
[EMAIL PROTECTED] wrote:

 Hello list,
 
 just to let you know,
 I've just got mail from Adobe Flex QE after filling bug with that 
 issue, They were able to reproduce that behavior,
 so guys: when testing RSL just dismiss that dialog and movie will 
 continue fine,
 issue will be fixed soon,
 
 kind regards,
 Peter Blazejewicz
 
 [CLOSED]






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



RE: [flexcoders] Re: E4X Help

2006-10-20 Thread Gordon Smith
You also need to change = to == in your E4X filter. A working example is below.

- Gordon

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

mx:Script
![CDATA[

private var stateCountyData:XML =
data
state label=Texas data=Texas
county label=Jones 
data=123 /
county label=Taylor 
data=124 /
/state
state label=Virginia data=Virginia
county label=Alexandria 
data=223 /
county label=Arlington 
data=224 /
/state
/data;

private function setStates():void
{
stateCombo.dataProvider = stateCountyData.state;
}

private function setCounties():void
{
countyCombo.dataProvider = 
stateCountyData.state.(@label == stateCombo.selectedLabel).county;
}

]]
/mx:Script

mx:ComboBox id=stateCombo labelField=@label width=200
 creationComplete=setStates(); setCounties()
 change=setCounties()/
 
mx:ComboBox id=countyCombo labelField=@label width=200/

/mx:Application


From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael 
Labriola
Sent: Friday, October 20, 2006 11:07 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: E4X Help


Tangent,

Remove the {} from around selected :

var counties:XMLList = _myXml.state.(@label=selected).county;

Mike

--- In flexcoders@yahoogroups.com, Tan [EMAIL PROTECTED] wrote:

 I try writing two comboboxes to facilitate selection of the
following XML,
 
 data
 state label=Texas data=Texas
 county label=Jones data=123 /
 county label=Taylor data=124 /
 ...
 /state
 state label=Virginia data=Virginia
 county label=Alexandria data=223 /
 county label=Arlington data=224 /
 ...
 /state
 ...
 
 
 The first combo box is named _combo1 that is populated by state
data, and I
 want to get an XML or XMLList of the counties using AS3, I wonder
whether I
 can write it in E4X syntax that looks somewhat like
 
 var selected:String = _combo1.selectedItem.toString();
 var counties:XMLList = _myXml.state.(@label = {selected}).county;
 
 I get a compiler error for the last line, and I have searched
through some
 E4X samples, didn't seem to find any help. Any advice?
 
 Thanks!
 
 - Tangent
 
 P.S. Or should I use XmlViewCollection, Descriptor or things like that?

 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] 'big' sample projects

2006-10-20 Thread Peter Armstrong



Hi Joost,Shameless plug:I'm writing a PDF-only book about using Flex 2 with Ruby on Rails. I doubt that the Flex code should be considered best practices yet, but it's all Open Source (MIT license) so you can use it in commercial projects regardless of whether you have bought the book.
If you're interested, go to http://www.flexiblerails.com/ and download the latest iteration (currently iteration 18) from the code samples page (
http://www.flexiblerails.com/pages/codesamples).It's not that large at the moment, but it's growing with every release of the book. When the book is done it should fit the description of a big sample project quite well. (The code example in the book is cumulative, so the app is growing into a full-featured app with every iteration...)
Best regards,Peter ArmstrongOn 10/20/06, Nick Collins [EMAIL PROTECTED] wrote:













  



Last I saw the JBoss code was still only good for Beta 3 of Flex, and didn't work with the release version. Has this changed?On 10/20/06, 
P Smith 
[EMAIL PROTECTED] wrote:












  



Joost,

The open source JBoss Mail Server (aka Collaboration Server) might fit the bill:
http://labs.jboss.com/portal/jbossmail/

  And the Flex 2 UI was coded by Adobe's own James Ward using the Cairngorm framework for Flex 2!

So, it is big, it is free, and it implements best practices.

fyi ... there are forums for the project at:
http://www.jboss.com/index.html?module=bbop=viewforumf=186


Also the project's lead committer, Andrew C. Oliver, presented earlier this month at the 
Ajax World Conference on a 

Case Study: The JBoss Flex-based Mail Client.

If you do go through the code on this project, please do post back with you impressions.

Anybody else know of other open source projects using Flex UIs?

Peter- Original Message From: Joost Saanen [EMAIL PROTECTED]

riek.nlTo: [EMAIL PROTECTED]

ups.comSent: Friday, October 20, 2006 5:16:17 AMSubject: [flexcoders] 'big' sample projects



Are there any complete sample sites
where the source is free? I would like to know how I can setup a complete
site, with logindialogs, errorhandling, different components, etc., I did
some tutorials of the with flex delivered getting started guide but I mis
some big sample projects for learning how big projects can be made. Anyone
can help me?

regard,
Joost

  















  













-- Peter Armstronghttp://www.flexiblerails.com -- Flex 2 and Rails 1.1 together! (PDF-only book)

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] getParagraphLength method error!!!!

2006-10-20 Thread Gordon Smith












Here is a simple application incorporating
your code snippet. As I click in the TextArea, I don't get any errors. So
you'll need to post your exact code and the exact sequence of user interactions
that lead to your problem. What is the value of caretIndex when you get the
error?



- Gordon





?xml version=1.0
encoding=utf-8?

mx:Application
xmlns:mx=http://www.adobe.com/2006/mxml

 

 mx:Script

 ![CDATA[

 

 

 use
namespace mx_internal;

 

 private
function initializeHandler(event:Event):void

 {

 textArea.text
= Line 1\nLine 2;

 }

 

 private
function clickHandler(event:MouseEvent):void

 {

 var
caretIndex:int = textArea.getTextField().caretIndex;

 var
beginIndex:int = textArea.getTextField().getFirstCharInParagraph(caretIndex);

 var
endIndex:int = textArea.getTextField().getParagraphLength(caretIndex);

 trace(caretIndex,
beginIndex, endIndex);

 }



 ]]

 /mx:Script

 

 mx:TextArea
id=textArea initialize=initializeHandler(event)
click=clickHandler(event)/



/mx:Application











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Branko
Sent: Thursday, October 19, 2006
7:23 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]
getParagraphLength method error











var caretIndex:int = textArea.getTextField().caretIndex;
var beginIndex:int =
textArea.getTextField().getFirstCharInParagraph(caretIndex);
var endIndex:int = textArea.getTextField().getParagraphLength(caretIndex);

and I'm getting error like The supplied index is out of bounds.

And here is the deffinitoin of getParagraphLength property:

getParagraphLength () method 

public function getParagraphLength(charIndex:int):int

Parameters charIndex:int  The zero-based index value of the
character (for example, the first character is 0, the second character
is 1, and so on). 

Returns int  Returns the number of characters in the paragraph. 

Please tell me what is wrong with my code?






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Lines in text area component

2006-10-20 Thread Gordon Smith












I'm not sure what you mean by
setting the number of lines in the TextArea component? If you want
to control where line breaks occur, put the \n character into the 'text'
String.



To get the line position of a particular
character try using getCharBoundaries() and then getLineIndexAtPoint().



- Gordon











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of brankosli
Sent: Wednesday, October 18, 2006
1:09 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Lines in
text area component











Is there any possibility to set number of lines in
Text Area component?
and if it's possible:
How to retrieve current line position in Text Area component?

Thanx in advance.






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] Using external image icons in a List Component - should be easy

2006-10-20 Thread dorkie dork from dorktown



This is an easy one but have not found an answer. I have a standard List component that will pull in and display external images. I do not want to embed all of them because there are dynamic and could change. This is for my application but could be for any chat application. You have your buddy list and you are pulling in images dynamically. This should be an easy one. Am I an idiot? 
Dorkie DorkPS do not answer the last question. it i was retorical

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Looping through a DataGrid, in order to get Grand Total from 1 specific Column?

2006-10-20 Thread Mike Anderson
Hello All,

I've done this before with Flash, but for the life of me, I can't
remember how I did it...

I need to loop though my DataGrid's Rows, and add up each value
contained in the Total Column.

And, I can't use my DataProvider property - because Total isn't part
of the DataProvider - it's a column added to the DataGrid after the fact
- and then I am using a LabelFunction, in order to populate the Total
Column (UnitPrice * Quantity).

My goal, is to update a TextInput on the bottom of the page, each time a
new entry is made on the Grid (or if a value changes).  I took care of
that already - by using the itemEditEnd event...

Sorry for the newbie question - I am having a major mental block right
now.

Thanks in advance all,

Mike


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] New resource for learning Caringorm!

2006-10-20 Thread Douglas Knudsen



Yeah, Evan, nice job man! A interactive framework map, nice. Be neat to have that for MG, Reactor, Machii, etc...DKOn 10/20/06, Nick Collins 
[EMAIL PROTECTED] wrote:


I... I think I hear Angels singing sweetly in the backgroundOn 10/20/06, Evan Gifford 
[EMAIL PROTECTED] wrote:













  











Hey Guys,



For those of us who are scaling the cairngorm learning curve,
you'll be happy to know that the cairngorm documentation group has just
launched our website!



You can find it here: http://www.cairngormdocs.org/




There are many useful tools, example apps and of course the
Cairngorm Diagram hosted here.



See you soon!

-Evan







  


















-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___