RE: [flexcoders] Why you shouldn't set creationPolicy=all to solve your deferred instantiation problems

2005-10-14 Thread Allen Manning










Gordon,



The reason why I normally set creation
policy to all is to work around flex bugs. Two of them this week:




 Repeater
 in a VBox in a view stack. Layout gets messed up on auto, but seems to
 draw a bit more properly with an all.
 ViewStack
 in a ViewStack, the outer view stack cant see all of the inner view stacks
 children.




Sure, I want things to run fast, but
when strange rendering bugs and undefined elements get in the way of getting
something done, setting creation policy to all is a common work around.



Best,

allen











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Smith
Sent: 13 October 2005 21:56
To: flexcoders@yahoogroups.com
Cc: Flex IMD
Subject: [flexcoders] Why you
shouldn't set creationPolicy=all to solve your deferred
instantiation problems





 On the accordion
tag, set creationPolicy=all.



 Setting a creationPolicy=All on the
accordian container will cause all of the children to be created
when the accordian is created.



In my post two days ago I
tried to explain why setting creationPolicy=all is not The Right
Way to solve problems caused by deferred instantiation. I'll try to work with
our doc folks to do a better job of explaining the right technique in the
future. In the meantime, here's a repeat of what I wrote then.



- Gordon



I'd like to
suggest that it's better to learn how to make deferred

instantiation
your friend than to simply turn it off.



The point of
deferred instantiation is to not waste time at app startup

creating controls
that you don't need yet. If you had a ViewStack with

500 views, it
probably wouldn't be a good idea to create the controls on

all 500 of them
at startup, when only one view is initially visible. The

only good reason
to set creationPolicy=all, and therefore increase

startup time, is
to decrease the small navigation delays when you switch

from view to
view.



If these delays
are acceptable, then you should allow the views to do

deferred creation
of their controls, as they were designed to do.



So how do you set
the initial state of controls that undergo deferred

instantiation?
You use the appropriate events to set their state AFTER

they have been
created. For example, you could use 'initialize' or

'creationComplete'
events on the the controls themselves. Or you could

use events like
'childrenCreated' or 'childrenCreationComplete' on the

view that you
navigated to.



Once you realize
that every control in the app doesn't get created at

startup, it's
always possible -- and not difficult -- to design your app

so that you don't
push information prematurely into controls that don't

exist yet.
Instead, it's typical to store information into a data

model of
some kind that is independent of the controls that display

that information.
When the controls get created, they pull the

information in
from the data model.











From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Gordon Smith
Sent: Thursday, October 13, 2005
12:57 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Any
explanation as to why this would happen(Question about accordions)





This is due to a feature
of Flex known as Deferred Instantiation.



My post on Tuesday
entitled Re: Unable to refer controls in Accordion ! addressed the
issue.



- Gordon











From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED]
Sent: Thursday, October 13, 2005
11:42 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Any
explanation as to why this would happen(Question about accordions)







I am having some problems getting a button on one
panel of an accordion to change the textinput box on another panel of an
accordion and I was wondering if someone can give me some idea as to what could
be causing this?



















--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











--
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005
 

--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 

[flexcoders] Problem trying to format small numbers.

2005-10-14 Thread greenfishinwater
I use a numberFormatter defined with precision of 2, when I have a
number such as 0.45, the value displayed is .45. What I want to see is
0.45, with a leading zero. There doesn't seem to be any property that
controls this, do I have to add the leading zero myself?

Thanks Andrew






 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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: Datagrid Selective Cell Tabbing

2005-10-14 Thread bhaq1972
--- In flexcoders@yahoogroups.com, thisdudenamedjon 
[EMAIL PROTECTED] wrote:

 Suppose I have a datagrid. I'd like to be able to restrict certain 
 editable columns from being accessed using the tab key.
 
 Is there a way to disable tabbing for a particular column?

try this little example (it needs more work though)

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; 
xmlns=* initialize=startUp()

mx:Script
![CDATA[

var dp = [  { one:one, two:two, 
three:three },
{ one:four, two:five, 
three:six },
{ one:seven, two:eight, 
three:nine },
{ one:ten, two:eleven, 
three:twelve },
{ one:thirteen, 
two:fourteen, three:fifteen }];

var restrictedCell={itemIndex:3, columnIndex:1};
var myCell;

function doCellFocusIn(event:Object):Void
{
myCell = {itemIndex:event.itemIndex, 
columnIndex:event.columnIndex};
}

function startUp():Void
{
Key.addListener(this);
}

function onKeyDown():Void
{
if(Key.isDown(Key.TAB))
{
if(myCell.itemIndex == 
restrictedCell.itemIndex 
myCell.columnIndex == 
restrictedCell.columnIndex)
{
dg.focusedCell = 
{itemIndex:0, columnIndex:0};
}
}
}

]]
/mx:Script

mx:DataGrid id=dg dataProvider={ dp } 
cellFocusIn=doCellFocusIn(event) editable=true
mx:columns
mx:Array
mx:DataGridColumn 
columnName=one /
mx:DataGridColumn 
columnName=two /
mx:DataGridColumn 
columnName=three /
/mx:Array
/mx:columns
/mx:DataGrid

/mx:Application





 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] How to save uploaded file in database

2005-10-14 Thread Ritesh Jariwala










If you want good performance then better store
reference of file in database. There is no problem to save files in database
but sometimes database becomes big and it will take more time to process.





With Regards,



Ritesh Jariwala (Actkid)

Freelance Developer 

www.actkid.com

Company: www.synonymic.com















From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager
Sent: Friday, October 14, 2005
8:06 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How to
save uploaded file in database





I don't see any problem with it provided
you design your tables to keep the data in a separate table, possibly separate
tablespace, etc. Most reasonably good databases today have very good
blob/clob support.




Carson









 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com

 
Email:
[EMAIL PROTECTED]
Office:
866-CYNERGY ext. 89
Mobile:
1.703.489.6466 
 
 















From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rich Rodecker
Sent: Thursday, October 13, 2005
5:59 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] How to
save uploaded file in database

I've always heard that
it's bad to save files as BLOBs in the database, and that it was better to save
the file to the file system and store a reference to the file in the db...no?






On 10/13/05, Carson
Hager [EMAIL PROTECTED]
wrote: 

Search the web. There are
hundreds of examples that show you the
debachle that is Oracle's JDBC driver and binary
data.


Carson 




Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com

Email: [EMAIL PROTECTED]
Office: 866-CYNERGY ext. 89
Mobile: 1.703.489.6466



-Original Message-
From: flexcoders@yahoogroups.com
[mailto:
flexcoders@yahoogroups.com] On
Behalf Of sandip_patil01
Sent: Thursday, October 13, 2005 6:17 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] How to save uploaded file in database


HI all,

I have successfully done uploading file in a directory using
fileIO
feature provided by Flex using Flash 8.

Now I wanna to save the uploaded file in database.

SO can anybody tell me how to save uploaded file in database
using
Flex.My databse is oracle 9i.

Any url or suggessions ?

Thx in advance,
sandip patil







 Yahoo! Groups Sponsor
~--
Most low income households are not online. Help
bridge the digital
divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~-


--
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





 Visit your group
 flexcoders
 on the web.
  
 To unsubscribe
 from this group, send an email to:
  [EMAIL PROTECTED]
  
 Your use of
 Yahoo! Groups is subject to the Yahoo! Terms of Service. 























--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: How to save uploaded file in database

2005-10-14 Thread livinginswitzerland
updateblob table_name
set column_name_defined_as_a_blob  = :blob_variable
where key = :your_key_value;




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

 I don't see any problem with it provided you design your tables to 
keep
 the data in a separate table, possibly separate tablespace, etc.  
Most
 reasonably good databases today have very good blob/clob support.
  
 
 Carson
  
 
  
   
 Carson Hager
 Cynergy Systems, Inc.
 http://www.cynergysystems.com http://www.cynergysystems.com/  
   
 Email:  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] 
 Office:  866-CYNERGY ext. 89
 Mobile: 1.703.489.6466 
   
   
 
  
 
 
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of Rich Rodecker
 Sent: Thursday, October 13, 2005 5:59 PM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] How to save uploaded file in database
 
 
 I've always heard that it's bad to save files as BLOBs in the 
database,
 and that it was better to save the file to the file system and 
store a
 reference to the file in the db...no?
 
 
 
 
 On 10/13/05, Carson Hager [EMAIL PROTECTED] wrote: 
 
   Search the web. There are hundreds of examples that show you 
the
   debachle that is Oracle's JDBC driver and binary data.
   
   
   Carson 
   
   
   
   
   Carson Hager
   Cynergy Systems, Inc.
   http://www.cynergysystems.com
   
   Email:  [EMAIL PROTECTED]
   Office:  866-CYNERGY ext. 89
   Mobile: 1.703.489.6466
   
   
   
   -Original Message-
   From: flexcoders@yahoogroups.com [mailto:
 flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com ] On
   Behalf Of sandip_patil01
   Sent: Thursday, October 13, 2005 6:17 AM
   To: flexcoders@yahoogroups.com
   Subject: [flexcoders] How to save uploaded file in database
   
   
   HI all,
   
   I have successfully done uploading file in a directory using
 fileIO
   feature provided by Flex using Flash 8.
   
   Now I wanna to save the uploaded file in database.
   
   SO can anybody tell me how to save uploaded file in database
 using
   Flex.My databse is oracle 9i.
   
   Any url or suggessions ?
   
   Thx in advance,
   sandip patil
   
   
   
   
   
   
   
    Yahoo! Groups Sponsor
 ~--
   Most low income households are not online. Help bridge the
 digital
   divide today!
   http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
   
 
~- 
   
   --
   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 
 
 
   
   *Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders  on the web.
 
   *To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] 
 
   *Your use of Yahoo! Groups is subject to the Yahoo!
 Terms of Service http://docs.yahoo.com/info/terms/ . 
 
 
 
 
 
 
 
 --
 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 
 Web site design development
 http://groups.yahoo.com/gads?
t=msk=Web+site+design+developmentw1=Web+
 
site+design+developmentw2=Computer+software+developmentw3=Software+d
es
 
ign+and+developmentw4=Macromedia+flexw5=Software+development+best+pr
ac
 ticec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ   Computer software
 development
 http://groups.yahoo.com/gads?
t=msk=Computer+software+developmentw1=We
 
b+site+design+developmentw2=Computer+software+developmentw3=Software
+d
 
esign+and+developmentw4=Macromedia+flexw5=Software+development+best+
pr
 acticec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw Software 
design and
 development
 http://groups.yahoo.com/gads?
t=msk=Software+design+and+developmentw1=
 
Web+site+design+developmentw2=Computer+software+developmentw3=Softwa
re
 
+design+and+developmentw4=Macromedia+flexw5=Software+development+bes
t+
 practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ   
 

[flexcoders] Using custom preloader

2005-10-14 Thread sergei_tsoganov
When the application intializes the preloader is not visible any more.
How to make it visible again? How to make it not to hide itself when
application initialized? Is it possible to continue to use the
preloader after initialization? For example to show preogress of
loading sounds or external movies. I want it to do with the original
preloader.






 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] [Clone] Cloning UI object

2005-10-14 Thread Stephane De Jonckheere
Hi,
I'd like to clone an instance of a custom UI component (a panel with a lot
of components in it).
I tried the copy furnished by ObjectUtil, I corrected it as described by
Darron Schall. But it wasn't giving the expected result.
The fact is that even if the object is copied in a new instance, there are
missing things (while debugging):
- functions associated to events
- stuff contained by the panel is copied but they aren't displayed

I also tried homemade clone function but they all give the same result.

I know that I can create a new object which will create its content when
being contruct. That's certainly what I will do ;) .
But I'd like to know if it's possible to REALLY copy/clone an UI object and
if if can be reinserted with a createchild function.

Regards,
Stephane



***

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager to [EMAIL PROTECTED]

***



 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] DataGridColumn display issue

2005-10-14 Thread Husain Kitabi



Hi
I have a value object 

ClassgroupVO.as

classgroupVenue:String;
classgroupCapacity:String
module:ModuleVO
-

ModuleVO.as

moduleName:String;



In my datagrid column i want to display moduleName. My dataprovider is an array of ClassgroupVO value objects sent from remoteobject


I tried to use
mx:DataGridColumn columnName="classgroupVenue" headerText="Classgroup Venue" /mx:DataGridColumn columnName="classgroupCapacity" headerText="Classgroup Capacity"/mx:DataGridColumn columnName="module.moduleName" headerText="Module"/

The first 2 columns are fine. But module.moduleName -it does not display anything. Has anybody done something like this. Pl advise.

Regards
Husain
hussain
		 Yahoo! Music Unlimited - Access over 1 million songs. Try it free.





--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Me go to MAX alone. you be my friend?

2005-10-14 Thread Kelly Roman










I am down.



Here is my Bio:



Name: Kelly Roman

Age: 24

Nationality: American



Currently:

Building enterprise Flex applications for
the automotive industry (Honda, Mazda, Ford)



Currently on contract but I maintain www.dekaydmedia.com when I have time.







See you there eh.





--Kelly

[EMAIL PROTECTED]

www.dekaydmedia.com

















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Aldo Bucchi
Sent: Wednesday, October 12, 2005
1:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Me go to MAX
alone. you be my friend?





Hi all,

I will be attending MAX pretty much by myself (
the rest of the group
is going to the experience forum ) so I'd like to
ask openly if anyone
here would like to get in contact before the
meeting so we can get
acquainted ( my interests detailed below ).

Very few of you know me, I have been on this list
since right after it
started ( and flexing since the betas ) but I
barely have time to
write, since Flex is only 20% of my job. Anyway,I
read all I can and I
love this community ( some people here really love
what they do, in
contrast to other J2EE groups! ).
I have finally managed to get more flex into our
customers' minds and
I will soon have more time to invest in this great
technology.

Hope someone gets interested ;)
reach me on this email or skype me (aldo.bucchi)

I mean it. This approach might sound a little
strange but it's a
great chance of meeting interesting people (
ehem.. like myself ) and
I don't want to waste it. You never know what can
come out of it.

---

Bio in a nutshell

- name. Aldo Bucchi
- age: 24
- nationality: Chilean
- years in the biz: 6 paying my bills from it
- currently:
 IT Architect for a Core financial services
company ( AKA we build
stuff that powers banks ).
 Bea specialist ( sub: Bea Portal ).
 Epiphany CRM implementor.
 Project leader in general.
 Usability / Customer Experience advisor ( and
I always try to
involve people from other departments in our
projects: commercial,
marketing, customer service, etc )
 Flex evangelist since mid 2004.
 ... and getting up to date with Bea Aqualogic
and BPEL 4 people.
- English, Spanish, some French

My interests regarding Flex are.
- proven use cases in financial services ( mostly
customer facing )
--- experience design theory
--- simplicity and best practices
--- empiric evidence of customer adaptability ( or
lack thereof )
--- idetifying common problems and bad practices
- new collaborative patterns
--- dashboard / shared applications
- flex + breeze in the enterprise, business
patterns
- streamlining integration of the future Flex
Enterprise Services and
Aqualogic DataServices / Epiphany BIO Layer /
other generic data
layers, BPMs and ESBs.

I am currently evaluating the migration of a
critical customer facing
application in a bank to flex. So I have a lot of
fresh questions on
the subject.

OK, enough promotion, back to work
Thanks for your time,
Aldo

PS. Had to ask ;)

--
: Aldo Bucchi :
mobile (56) 8 429 8300








--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] How to save uploaded file in database

2005-10-14 Thread Dimitrios Gianninas





We use Oracle 9i around here 
and several applications store files in the DB as BLOBs and it works like charm. 
This is a DB issue, so you should speak with your Database Administrator to 
resolve the issue.

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Ritesh 
JariwalaSent: Friday, October 14, 2005 2:38 AMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] How to save 
uploaded file in database


If you want good 
performance then better store reference of file in database. There is no problem 
to save files in database but sometimes database becomes big and it will take 
more time to process.


With 
Regards,

Ritesh Jariwala 
(Actkid)
Freelance Developer 

www.actkid.com
Company: www.synonymic.com






From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson HagerSent: Friday, October 14, 2005 8:06 
AMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] How to save 
uploaded file in database

I don't see any problem 
with it provided you design your tables to keep the data in a separate table, 
possibly separate tablespace, etc. Most reasonably good databases today 
have very good blob/clob support.

Carson


 
 
Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.com 
 
Email: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 
89Mobile: 
1.703.489.6466   






From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rich RodeckerSent: Thursday, October 13, 2005 5:59 
PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] How to save 
uploaded file in database
I've always heard that it's bad to save 
files as BLOBs in the database, and that it was better to save the file to the 
file system and store a reference to the file in the 
db...no?

On 10/13/05, Carson Hager [EMAIL PROTECTED] 
wrote: 
Search the web. There are hundreds of 
examples that show you thedebachle that is Oracle's JDBC driver and binary 
data.Carson Carson HagerCynergy 
Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 89Mobile: 1.703.489.6466-Original Message-From: flexcoders@yahoogroups.com [mailto: 
flexcoders@yahoogroups.com] OnBehalf Of 
sandip_patil01Sent: Thursday, October 13, 2005 6:17 
AMTo: flexcoders@yahoogroups.comSubject: 
[flexcoders] How to save uploaded file in databaseHI all,I have successfully done uploading 
file in a directory using fileIOfeature provided by 
Flex using Flash 8.Now I wanna to save the uploaded 
file in database.SO can anybody tell me how to save 
uploaded file in database usingFlex.My databse is 
oracle 9i.Any url or suggessions 
?Thx in advance,sandip 
patil Yahoo! Groups Sponsor 
~--Most low 
income households are not online. Help bridge the 
digitaldivide 
today!http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM~- 
--Flexcoders Mailing 
ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives:http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups 
Links

--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



YAHOO! GROUPS 
LINKS 



  Visit your group "flexcoders" 
  on the web. 
  To unsubscribe from 
  this group, send an email to: 
  [EMAIL PROTECTED] 
  Your use of Yahoo! 
  Groups is subject to the Yahoo! Terms of Service. 










--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] RemoteObject call to POJO on JRUN

2005-10-14 Thread Jeremy Crane










Ok, I have again resumed trying to figure out how to get a
call to a Remote Java object working. I posted a previous message on this
topic, but was not able to get a working answer. The PROBLEM: When
calling a java class located in {contextroot}\classes\com\obc I get a response
of Service threw an exception during method invocation: no service named
com.obc.User known to Flash Remoting MX. BACKGROUND: Flex installed
on a Coldfusion MX integrated JRun4 server. The remote-object section of
the flex-config file contains the following 

remote-objects


amf-gateway{context.root}/amfgateway/amf-gateway




amf-https-gateway{context.root}/amfgateway/amf-https-gateway




allow-url-overridefalse/allow-url-override



 whitelist


!-- whitelist config for unnamed objects --


unnamed


source*/source





MORE BACKGROUND: I can make a successful call to a
coldfusion component as a webservice using mx:RemoteObject



It seems to me that somehow there is a conflict with the
remoting gateway for coldfusion and the one for flex, but I really am not sure
how to fix it if it is actually what is causing the problem. If anyone has
experienced this problem, or knows of a solution I really appreciate your
suggestions.



Thanks,

Jeremy









--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] DataGridColumn display issue

2005-10-14 Thread Niklas Richardson
You might have to use a label function or a cell rendered to display
the deeply nested data.



On 14/10/05, Husain Kitabi [EMAIL PROTECTED] wrote:

 Hi
 I have a value object

 ClassgroupVO.as

 classgroupVenue:String;
 classgroupCapacity:String
 module:ModuleVO
 -

 ModuleVO.as

 moduleName:String;



 In my datagrid column i want to display moduleName. My dataprovider is an
 array of ClassgroupVO value objects sent from remoteobject


 I tried to use
   mx:DataGridColumn columnName=classgroupVenue headerText=Classgroup
 Venue /
 mx:DataGridColumn columnName=classgroupCapacity
 headerText=Classgroup Capacity/
 mx:DataGridColumn columnName=module.moduleName headerText=Module/


 The first 2 columns are fine. But module.moduleName - it does not display
 anything. Has anybody done something like this. Pl advise.

 Regards
 Husain


 hussain

  
  Yahoo! Music Unlimited - Access over 1 million songs. Try it free.

  --
  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
  Web site design development Computer software development Software design
 and development
  Macromedia flex Software development best practice

  
  YAHOO! GROUPS LINKS


  Visit your group flexcoders on the web.

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

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

  





--
Niklas Richardson
Prismix Ltd

Flex and ColdFusion Experts!


 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] OT: What's going on with FlashCoderz

2005-10-14 Thread Oleg Filipchuk



Hi list,sorry for off-topic but I do not know other place where to ask. Are there any people from FlashCoderz? It had not worked since 10th october, and I've got 'undeliverable mail' error when attempt to send subscribe/unsubscribe mail.
Thanx,Oleg






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] DataGridColumn display issue

2005-10-14 Thread Darron J. Schall
Husain Kitabi wrote:

 I tried to use
   mx:DataGridColumn columnName=classgroupVenue 
 headerText=Classgroup Venue /
 mx:DataGridColumn columnName=classgroupCapacity 
 headerText=Classgroup Capacity/
 mx:DataGridColumn columnName=module.moduleName 
 headerText=Module/

  
 The first 2 columns are fine. But module.moduleName - it does not 
 display anything. Has anybody done something like this. Pl advise.


You need to create a custom cell renderer.  The default cell renderer 
only allows you to go 1 deep into an object, so you have to createa 
cell renderer that can understand column names that use a path to get 
deeper into a object.

Heres some partial code to give you an idea.. the entire cell renderer 
will be found in Flex By Example with sample usage.  This code would go 
inside a PathCellRenderer.as file that creates a Label component to 
render text.

private function setValue( str:String, item:Object, selection:String 
):Void
{
if ( item == undefined ) {
label.visible = false;
return;
}

label.visible = true;

// Split up the complex path into pieces
var path = getDataLabel().split(.);
// dot down to the item to display
var toDisplay = item[ path[0] ];
for ( var i:Number = 1; i  path.length; i++ ) {
toDisplay = toDisplay[ path[i] ];
}

label.text = toDisplay;
}


Flex by example will ship on October 24th, I believe.  :-)

-d



 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] Problem trying to format small numbers.

2005-10-14 Thread Clint Modien



What about a currency formatter without a currency symbol?

On 10/14/05, greenfishinwater [EMAIL PROTECTED] wrote:
I use a numberFormatter defined with precision of 2, when I have anumber such as 0.45, the value displayed is .45. What I want to see is
0.45, with a leading zero. There doesn't seem to be any property thatcontrols this, do I have to add the leading zero myself?Thanks Andrew Yahoo! Groups Sponsor ~--
Most low income households are not online. Help bridge the digital divide today!http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM~-
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links* To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/
* 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 Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] [Clone] Cloning UI object

2005-10-14 Thread Stephane De Jonckheere
It seems to come from Movieclips that aren't clonable.

Is there a way to clone these objects?

-Original Message-
From: Stephane De Jonckheere 
Sent: vendredi, 14. octobre 2005 11:29
To: flexcoders@yahoogroups.com
Subject: [flexcoders] [Clone] Cloning UI object


Hi,
I'd like to clone an instance of a custom UI component (a panel with a lot
of components in it).
I tried the copy furnished by ObjectUtil, I corrected it as described by
Darron Schall. But it wasn't giving the expected result.
The fact is that even if the object is copied in a new instance, there are
missing things (while debugging):
- functions associated to events
- stuff contained by the panel is copied but they aren't displayed

I also tried homemade clone function but they all give the same result.

I know that I can create a new object which will create its content when
being contruct. That's certainly what I will do ;) .
But I'd like to know if it's possible to REALLY copy/clone an UI object and
if if can be reinserted with a createchild function.

Regards,
Stephane




***

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager to [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



 






 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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: Including files.

2005-10-14 Thread rgwilson26
I am having a similar problem. I am trying to do the same to 
reference several directories with my components. 
for example:
root
/componentsDir1
/componentsDir2
/componentsDir3

I can acces /componentsDir1 by:
--
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
xmlns:comp=componentsDir1.*
 
 comp:NewComponent /
 
/mx:Application
---

But, I need to access more than one directory. What is the correct 
syntax in root to access components in all three sub directories? 

Thanks


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

 You have to set the namespace property (xmlns:xxx) on either the 
app or
 the instantiated control.  I.E.
 
  
 
 Option 1:
 
  
 
 mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
 xmlns:addsale=panels.status.*
 
 addsale:AddSale /
 
 /mx:Application
 
  
 
 Option 2
 
  
 
 mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
 
 addsale:AddSale xmlns=panels.status.* /
 
 /mx:Application
 
  
 
  
 
 Either one of those solutions should work :-)  If you need more
 explanation, let me know.  
 
  
 
 Dustin Mercer
 
   _  
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of Jeremy Rottman
 Sent: Thursday, September 01, 2005 1:07 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Including files.
 
  
 
 I am not sure where to begin. My app structure is folder based start
 with index.mxml/application.cfm on the top teir. Then I move into
 folders that I can panels within the panel folder I have several
 folders broken up in to the different app requirements. The 
question I
 have is, what is the best way to use custom components, as I plan to
 develope each panel as seperate custom components. 
 
 So if I wanted to include the page Add Sale that was in the 
following
 heirarchy, how would I do it. Would I use soemthing like this
 /panels/status/addSale to use it as a custom component?
 
 --Folder Heirachy--
 
 Root
 /Panels
   /Status
 /addSale.mxml
 
 
 
 
 
 --
 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 
 
  
 
 *  Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders  on the web.
 
 *  To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] 
 
 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/ . 
 
  
 
   _









 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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: Including files.

2005-10-14 Thread João Fernandes
Try this:

mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
xmlns:dir1=componentsDir1.* xmlns:dir2=componentsDir2.* 
dir1:Component1InDir1 /
dir1:Component2InDir1 /
dir2:Component1InDir2 /
dir2:Component2InDir1 /

João Fernandes
Secção de Desenvolvimento
Departamento de Informática


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
rgwilson26
Sent: sexta-feira, 14 de Outubro de 2005 15:04
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Including files.

I am having a similar problem. I am trying to do the same to reference several 
directories with my components. 
for example:
root
/componentsDir1
/componentsDir2
/componentsDir3

I can acces /componentsDir1 by:
--
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
xmlns:comp=componentsDir1.*
 
 comp:NewComponent /
 
/mx:Application
---

But, I need to access more than one directory. What is the correct syntax in 
root to access components in all three sub directories? 

Thanks


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

 You have to set the namespace property (xmlns:xxx) on either the
app or
 the instantiated control.  I.E.
 
  
 
 Option 1:
 
  
 
 mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
 xmlns:addsale=panels.status.*
 
 addsale:AddSale /
 
 /mx:Application
 
  
 
 Option 2
 
  
 
 mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
 
 addsale:AddSale xmlns=panels.status.* /
 
 /mx:Application
 
  
 
  
 
 Either one of those solutions should work :-)  If you need more 
 explanation, let me know.
 
  
 
 Dustin Mercer
 
   _
 
 From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On
 Behalf Of Jeremy Rottman
 Sent: Thursday, September 01, 2005 1:07 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Including files.
 
  
 
 I am not sure where to begin. My app structure is folder based start 
 with index.mxml/application.cfm on the top teir. Then I move into 
 folders that I can panels within the panel folder I have several 
 folders broken up in to the different app requirements. The
question I
 have is, what is the best way to use custom components, as I plan to 
 develope each panel as seperate custom components.
 
 So if I wanted to include the page Add Sale that was in the
following
 heirarchy, how would I do it. Would I use soemthing like this 
 /panels/status/addSale to use it as a custom component?
 
 --Folder Heirachy--
 
 Root
 /Panels
   /Status
 /addSale.mxml
 
 
 
 
 
 --
 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
 
  
 
 *  Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders  on the web.
 
 *  To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 
 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/ . 
 
  
 
   _









 Yahoo! Groups Sponsor ~-- Get 
Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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



 






 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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: Including files.

2005-10-14 Thread Matt Chotin










Youll either need three namespace
entries or youll need to create your own manifest file which should be
described in the docs.



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of rgwilson26
Sent: Friday, October 14, 2005
10:04 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
Including files.





I am having a similar problem. I am trying to do the same to 
reference several directories with my components. 
for example:
root
 /componentsDir1
 /componentsDir2
 /componentsDir3

I can acces /componentsDir1 by:
--
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml
xmlns:comp=componentsDir1.*


comp:NewComponent /

/mx:Application
---

But, I need to access more than one directory.
What is the correct 
syntax in root to access components in all three
sub directories? 

Thanks


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

 You have to set the namespace property
(xmlns:xxx) on either the 
app or
 the instantiated control. I.E.
 
 
 
 Option 1:
 
 
 
 mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml
 xmlns:addsale=panels.status.*
 

addsale:AddSale /
 
 /mx:Application
 
 
 
 Option 2
 
 
 
 mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml
 

addsale:AddSale xmlns=panels.status.* /
 
 /mx:Application
 
 
 
 
 
 Either one of those solutions should work
:-) If you need more
 explanation, let me know. 
 
 
 
 Dustin Mercer
 
 _ 
 
 From: flexcoders@yahoogroups.com

[mailto:flexcoders@yahoogroups.com]
On
 Behalf Of Jeremy Rottman
 Sent: Thursday, September 01, 2005 1:07 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Including files.
 
 
 
 I am not sure where to begin. My app
structure is folder based start
 with index.mxml/application.cfm on the top
teir. Then I move into
 folders that I can panels within the panel
folder I have several
 folders broken up in to the different app
requirements. The 
question I
 have is, what is the best way to use custom
components, as I plan to
 develope each panel as seperate custom
components. 
 
 So if I wanted to include the page Add Sale that was in the 
following
 heirarchy, how would I do it. Would I use
soemthing like this
 /panels/status/addSale to use it as a
custom component?
 
 --Folder Heirachy--
 
 Root
 /Panels

/Status

/addSale.mxml
 
 
 
 
 
 --
 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 
 
 
 
 * Visit your
group flexcoders
 http://groups.yahoo.com/group/flexcoders
 on the web.
   
 * To
unsubscribe from this group, send an email to:
 
[EMAIL PROTECTED]

mailto:[EMAIL PROTECTED] 
   
 * Your use of
Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/
. 
 
 
 
 _















--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] [Clone] Cloning UI object

2005-10-14 Thread Matt Chotin










Not really, creating a new instance and
copying any relevant values is what youll need to do.



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stephane De Jonckheere
Sent: Friday, October 14, 2005
9:09 AM
To: 'flexcoders@yahoogroups.com'
Subject: RE: [flexcoders] [Clone]
Cloning UI object





It seems to come from
Movieclips that aren't clonable.

Is there a way to clone these objects?

-Original Message-
From: Stephane De Jonckheere 
Sent: vendredi, 14. octobre 2005 11:29
To: flexcoders@yahoogroups.com
Subject: [flexcoders] [Clone] Cloning UI object


Hi,
I'd like to clone an instance of a custom UI
component (a panel with a lot
of components in it).
I tried the copy furnished by
ObjectUtil, I corrected it as described by
Darron Schall. But it wasn't giving the expected
result.
The fact is that even if the object is copied in a
new instance, there are
missing things (while debugging):
- functions associated to events
- stuff contained by the panel is copied but they
aren't displayed

I also tried homemade clone function but they all
give the same result.

I know that I can create a new object which will
create its content when
being contruct. That's certainly what I will do ;)
.
But I'd like to know if it's possible to REALLY
copy/clone an UI object and
if if can be reinserted with a createchild
function.

Regards,
Stephane




***

This email and any files transmitted with it are
confidential and
intended solely for the use of the individual or
entity to whom they
are addressed. If you have received this email in
error please notify
the system manager to [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
















--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] DataGridColumn display issue

2005-10-14 Thread Allen Manning
Custom cell renderer might be a bit OTT for this, labelFunction would be a
good start.

Best,
Allen



-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Darron J. Schall
Sent: 14 October 2005 14:10
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] DataGridColumn display issue

Husain Kitabi wrote:

 I tried to use
   mx:DataGridColumn columnName=classgroupVenue 
 headerText=Classgroup Venue /
 mx:DataGridColumn columnName=classgroupCapacity 
 headerText=Classgroup Capacity/
 mx:DataGridColumn columnName=module.moduleName 
 headerText=Module/

  
 The first 2 columns are fine. But module.moduleName - it does not 
 display anything. Has anybody done something like this. Pl advise.


You need to create a custom cell renderer.  The default cell renderer 
only allows you to go 1 deep into an object, so you have to createa 
cell renderer that can understand column names that use a path to get 
deeper into a object.

Heres some partial code to give you an idea.. the entire cell renderer 
will be found in Flex By Example with sample usage.  This code would go 
inside a PathCellRenderer.as file that creates a Label component to 
render text.

private function setValue( str:String, item:Object, selection:String
):Void
{
if ( item == undefined ) {
label.visible = false;
return;
}

label.visible = true;

// Split up the complex path into pieces
var path = getDataLabel().split(.);
// dot down to the item to display
var toDisplay = item[ path[0] ];
for ( var i:Number = 1; i  path.length; i++ ) {
toDisplay = toDisplay[ path[i] ];
}

label.text = toDisplay;
}


Flex by example will ship on October 24th, I believe.  :-)

-d




--
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



 




-- 
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005
 

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005
 



 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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: Cause and Effect

2005-10-14 Thread Matt Chotin










Create a setSelectedTab function to store
the selected tab. Whenever you click on the tab call
setSelectedTab(whateverValueYouWant).



function setSelectedTab(value:String):Void

{

 selectedTab = value;

 If (firstResults != null)

 getSecondResults();

}



Function getSecondResults():Void

{

 If (selectedTab != null)

 //do logic to determine which function
to call and whatnot

}



In the result handler for your first call
simply assign firstResults and call getSecondResults();



Just a guideline, YMMV,



Matt









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Greg Johnson
Sent: Thursday, October 13, 2005
4:08 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Cause
and Effect





I am probably over-complicating it, thats always a possiblity.

However the reason I can't is because the second
search that actually 
gets used will be dependent on which of the 4 tabs
you select. But 
the first search needs to stay the same.

IOW for example

1. Search for Departments based on partial
department name
2. Select Department from returned list
3. Click on Car Tab
4. Get the Unique IDs of every person in the list
of selected 
departments
5. Get all the cars for all the people returned
from step 4 adding a 
date range filter.
6. Double click on a car to view that car's
details.

BUT

At Step 3 you can actualy click any of the
following
Click on Car Tab
Click on DoorKey Tab
Click on Employment File Tab
Click on Room Tab

in all 4 instances it would have to do Step 4, and
other then sending 
the results to different second searchs 
(Car/DoorKey/EmploymentFile/Room) it would always
be the same that 
you are taking a list of departments and
generating a list of 
people's unique IDs who are in those departments.

But since you only go get the people list from the
departments when 
you click the tab, and at the same time it
automaticaly submits a 
search for whatever that tab is about, it is a
problem as when the, 
say, car search runs, the people list will not
have had a chance to 
be populated.
--- In flexcoders@yahoogroups.com,
Tracy Spratt [EMAIL PROTECTED] 
wrote:

 Perhaps you are over-complicating this.
Or I am over-simplifying 
it!
 Why not just invoke the second search in the
result handler of the
 first?
 
 Tracy
 
 -Original Message-
 From: flexcoders@yahoogroups.com

[mailto:flexcoders@yahoogroups.com]
On
 Behalf Of Greg Johnson
 Sent: Thursday, October 13, 2005 1:20 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Cause and Effect
 
 It might help if I also actually asked a
question I guess :)
 
 I need the department to people list to be
generic, but depending 
on 
 what tab you are on for the result event to
be handled by a 
function 
 based on the tab you ahve selected.
 
 I am guessing this means using a custom event
that is dispatched by 
 the generic result handler and then changing
the event handler 
 function by adding a new event listener.
 
 However I do not know how to do this eactly,
nor do I know what to 
 attack the listeners to with each tab.
I have look in the 
 documentation, but if the answer is there, I
am just not getting it 
 as I have tried different attacks and only
get error messages.
 
 So 1, how would I create a custom event to
use the dispatchEvent 
 function when the dept2id result handler
runs, and what do I need 
to 
 dispatch the event from. And what
should I assign the listener to?
 
 --- In flexcoders@yahoogroups.com,
Greg Johnson [EMAIL PROTECTED] 
 wrote:
 
  Ok. Lets say I have a search
screen(btw the queries are running 
 via 
  a webservice to a set of CFCs).
The search screen lets you 
choose 
  between person, department, and
company. 
  
  Person Search returns a list of people
you can select from.
  Department Search returns a list of
departments you can select 
from.
  Company Search returns a list of
companies you can select from.
  
  Then you click one of 4 tabs.
  
  When you click on a tab, and the search
was for people, it uses 
 there 
  unique IDs in a search of what they are
responsible for and 
returns 
  that.
  
  If the search was for departments then a
list of people in all of 
  those departments has to be created so
the seach can use that 
list 
 of 
  people's unique IDs. Same kinda
thing for Company.
  
  Getting the list of people in all the
departments is easy. The 
  difficult part is how to get the second
search that runs when you 
  click the tab to wait until the the
department call finishes to 
run 
  it's search. Plus each tab will
need to be able to do this.
  
  Obveously the simple approch would be
that each sub search have 
 it's 
  own webservice operation and result
handler. However this 
 interface 
  will have other tabs added later that
have nothing to do with 
what 
 im 
  working on how save they draw there
unquie person IDs from the 
same 
  inital search.
 
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: 

Re: [flexcoders] OT: What's going on with FlashCoderz

2005-10-14 Thread JesterXL





It's down. Dave Watts, admin  owner, 
apparently "moved the mail servers across the street", and then sent a test 
email. Then, Sunday night it went silent...

- Original Message - 
From: Oleg Filipchuk 

To: flexcoders@yahoogroups.com 
Sent: Friday, October 14, 2005 9:08 AM
Subject: [flexcoders] OT: What's going on with 
FlashCoderz
Hi list,sorry for off-topic but I do not know other place 
where to ask. Are there any people from FlashCoderz? It had not worked since 
10th october, and I've got 'undeliverable mail' error when attempt to send 
subscribe/unsubscribe mail. Thanx,Oleg





--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Me go to MAX alone. you be my friend?

2005-10-14 Thread Hindman, Jeff
Gonna be a ton o fun!
 
Name:  Jeff Hindman
Nationality : American
Age: Getting older every day ...
 
Currently:  Building enterprise RIAs for Boeing; convincing co-workers that 
there's a whole world beyond Visual Basic and Perl
 
See you there :)



From: Kelly Roman [mailto:[EMAIL PROTECTED]
Sent: Thu 10/13/2005 10:51 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Me go to MAX alone. you be my friend?



I am down.

 

Here is my Bio:

 

Name: Kelly Roman

Age: 24

Nationality: American

 

Currently:

Building enterprise Flex applications for the automotive industry (Honda, 
Mazda, Ford)

 

Currently on contract but I maintain www.dekaydmedia.com 
http://www.dekaydmedia.com/  when I have time.

 

 

 

See you there eh.

 

 

--Kelly

[EMAIL PROTECTED]

www.dekaydmedia.com http://www.dekaydmedia.com/ 

 

 

 

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aldo 
Bucchi
Sent: Wednesday, October 12, 2005 1:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Me go to MAX alone. you be my friend?

 

Hi all,

I will be attending MAX pretty much by myself ( the rest of the group
is going to the experience forum ) so I'd like to ask openly if anyone
here would like to get in contact before the meeting so we can get
acquainted ( my interests detailed below ).

Very few of you know me, I have been on this list since right after it
started ( and flexing since the betas ) but I barely have time to
write, since Flex is only 20% of my job. Anyway,I read all I can and I
love this community ( some people here really love what they do, in
contrast to other J2EE groups! ).
I have finally managed to get more flex into our customers' minds and
I will soon have more time to invest in this great technology.

Hope someone gets interested ;)
reach me on this email or skype me (aldo.bucchi)

I mean it. This approach might sound a little strange but it's a
great chance of meeting interesting people ( ehem.. like myself ) and
I don't want to waste it. You never know what can come out of it.

---

Bio in a nutshell

- name. Aldo Bucchi
- age: 24
- nationality: Chilean
- years in the biz: 6 paying my bills from it
- currently:
 IT Architect for a Core financial services company ( AKA we build
stuff that powers banks ).
 Bea specialist ( sub: Bea Portal ).
 Epiphany CRM implementor.
 Project leader in general.
 Usability / Customer Experience advisor ( and I always try to
involve people from other departments in our projects: commercial,
marketing, customer service, etc )
 Flex evangelist since mid 2004.
 ... and getting up to date with Bea Aqualogic and BPEL 4 people.
- English, Spanish, some French

My interests regarding Flex are.
- proven use cases in financial services ( mostly customer facing )
--- experience design theory
--- simplicity and best practices
--- empiric evidence of customer adaptability ( or lack thereof )
--- idetifying common problems and bad practices
- new collaborative patterns
--- dashboard / shared applications
- flex + breeze in the enterprise, business patterns
- streamlining integration of the future Flex Enterprise Services and
Aqualogic DataServices / Epiphany BIO Layer / other generic data
layers, BPMs and ESBs.

I am currently evaluating the migration of a critical customer facing
application in a bank to flex. So I have a lot of fresh questions on
the subject.

OK, enough promotion, back to work
Thanks for your time,
Aldo

PS. Had to ask ;)

--
: Aldo Bucchi :
mobile (56) 8 429 8300



--
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 



*Visit your group flexcoders 
http://groups.yahoo.com/group/flexcoders  on the web.
  
*To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
  
*Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
http://docs.yahoo.com/info/terms/ . 







 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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/
 
winmail.dat

[flexcoders] Row Height Overflow

2005-10-14 Thread Greg Johnson
I need the rows of a datagrid to stay at 1 line if none of the cells in 
that row is bigger then one line, but if one is I need that cell to 
wrap and the row to expand.  I also only want used rows showing up to a 
max overall height and then show the scroll bar.

However it seems all I can get the rows to do is ether by 1 line and 
not wrap, or all the rows be more then 1 line.  Plus I can get it to 
only display the number of rows that are used.  I have tried setting 
the rowHeight to 0 and 1 and programaticly setting it to 
dataSource.length but to no avail.

Thanks







 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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: FLEX Licenses for sale - FLEX 2.0 Enterprise upgrade included

2005-10-14 Thread Niklas Richardson
One thing to be aware of, re: the EULA:

You may not sell or transfer any Software purchased under a volume discount.


On 12/10/05, Ian Welsh [EMAIL PROTECTED] wrote:
 MM announced they will release Flex 2.0 in the first half of 2006.

 Let's all hope that it is prior to 31/03/06 as, I imagine, there are a few
 people like us who bought Flex in late March 2005 to beat the price rise on
 01/04/2005.

 Flex then came with a year's subscription included so this may have run out
 if Flex 2 is released after 1/4/2006. I bet there will be a few people
 keeping their fingers crossed!

 Fortunately we bought an extra year's subscription, so as long as they
 release Flex 2 before 31/3/2007 we'll be OK - but then we'll be fretting
 about Flex 3 release dates ;-)

 Regards
 Ian


 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Alex  Alex
 Sent: 12 October 2005 03:31
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: FLEX Licenses for sale - FLEX 2.0 Enterprise
 upgrade included

 The Gold support is for 6 months. You are entitled to 12 months of free
 upgrades. MM announced they will release Flex 2.0 in the first half of 2006.

 Thank you,
 Alex

 --- In flexcoders@yahoogroups.com, Chris Velevitch [EMAIL PROTECTED]
 wrote:
 
  On 10/12/05, João Fernandes [EMAIL PROTECTED] wrote:
  
   But if its a 6 month gold subscription... do you think in 6
 months we'll have flex 2 ready to go?
   Macromedia has not announced a release date so...
 
  Didn't they say early 2006? And besides, if the subscription did
  expire before then, it would be wise to renew.
 
 
  Chris
  --
  Chris Velevitch
  Manager - Sydney Flash Platform Developers Group www.flashdev.org.au
 








  Yahoo! Groups Sponsor ~-- Get
 Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
 http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
 ~-

 --
 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










--
Niklas Richardson
Prismix Ltd

Flex and ColdFusion Experts!


 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] Load MXML after Login

2005-10-14 Thread Aly Sidi



This has probably been answered before but i was wondering if you could use teh mx:Loader to Load a MXML.
forexample..once main.mxml is loaded you can click on a button that will unload main.mxml and goto next.mxml.

I want ot use this for when a user logins then erdirects them to
a mxml. I know i can do it in the initialize of teh main app and luanch
a tile window, but i was wondering if i could load mxmls dynamically

-aly







--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: Row Height Overflow

2005-10-14 Thread Greg Johnson
Figures as soon as I post I find out atleast part of what was wrong.  
The only problem I have now is the last one below, getting the grid to 
only show x rows if the # of items in the datagrid is less then the 
number of rows that would completly fill the height.

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

 I need the rows of a datagrid to stay at 1 line if none of the cells 
in 
 that row is bigger then one line, but if one is I need that cell to 
 wrap and the row to expand.  I also only want used rows showing up to 
a 
 max overall height and then show the scroll bar.
 
 However it seems all I can get the rows to do is ether by 1 line and 
 not wrap, or all the rows be more then 1 line.  Plus I can get it to 
 only display the number of rows that are used.  I have tried setting 
 the rowHeight to 0 and 1 and programaticly setting it to 
 dataSource.length but to no avail.
 
 Thanks







 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Parekh, Shweta - BLS CTR
Title: Problem with repeater and datagrid -- Please help!








Hi,


I have a problem with repeater and datagrids.

I have a repeater in ItemSpec.mxml file (below) which includes an mxml component: itemSpecInfo.


File: itemSpec.mxml

mx:Repeater id=specRepeater dataProvider={specs} 

 ...

 itemSpecInfo/

/mx:Repeater


ItemSpecInfo.mxml has a datagrid in it. The ItemSpecInfo, being in the repeater, is repeated five times. So basically it displays a page with 5 datagrids.

ItemSpecInfo.mxml also has a remote object call which gets the result from Backend and that result is the dataprovider for the datagrid. The mxml file corresponds to ItemSpecInfo.as actionscript file. As this ItemSpecInfo is in the repeater, the remote call is made five times which is something I want to avoid. I want the remote call being made only once. So logically I need to put the remote call before the repeater code in ItemSpec.mxml file above. But as I use the result from the remote call in the ItemSpecInfo.as actionScript file for the dataProvider in ItemSpecInfo, I cannot have the remote call in ItemSpec.mxml because the component child file will not understand the result got in the parent file. 

File: itemSpecInfo.mxml

mx:Script source=classes/ItemSpecInfo.as/ 

mx:RemoteObject id=itemDetailController source=gov.bls.ppi.janus.repricing.manageitems.controllers.ItemDetailController showBusyCursor=true

 mx:method name=getSpecData result=getSpecVOData(event.result) fault=mx.controls.Alert.show(event.fault.faultstring, 'getSpecData() Error')

 mx:arguments

   arg1{itemSid}/arg1

   arg2{irMonth}/arg2

   arg3{monthNo}/arg3 

  /mx:arguments

 /mx:method

/mx:RemoteObject



mx:DataGrid id=columnar_dg height=91 textAlign=left width=524 dataProvider={specData} sortableColumns=false rowHeight=15 headerHeight=14 editable=true initialize=setHeaders()

/mx:DataGrid





I guess there are 2 options and I wanted to know what would work for me:

1. Are there global variables in Flex so that I can take the result from remote call in a global variable and then use it anywhere -- in my case in the child component?

2. Instead of calling the component in the repeater, stick in the entire code for component ItemSpecInfo inside the repeater. But this is causing problems with my datagrid as I need to indicate which datagrid I am manipulating because my repeater repeats the component 5 times, so I have 5 datagrids displayed. 

columnar_dg[0].addColumnAt(0,  ); -- I need to specify indexes for my datagrid. 


Any help will be highly appreciated. 

Thanks in advance, 

Shweta










--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Row Height Overflow

2005-10-14 Thread Manish Jethani
On 10/14/05, Greg Johnson [EMAIL PROTECTED] wrote:
 I need the rows of a datagrid to stay at 1 line if none of the cells in
 that row is bigger then one line, but if one is I need that cell to
 wrap and the row to expand.  I also only want used rows showing up to a
 max overall height and then show the scroll bar.

variableRowHeight=true wordWrap=true


 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] Why you shouldn't set creationPolicy=all to solve your deferred instantiation problems

2005-10-14 Thread Gordon Smith










Can you post some pared-down code that
illustrates these two bugs? Maybe we can fix them in the next version.



- Gordon











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Manning
Sent: Friday, October 14, 2005
2:14 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Why you
shouldn't set creationPolicy=all to solve your deferred
instantiation problems





Gordon,



The reason why I
normally set creation policy to all is to work around flex bugs. Two of
them this week:




 Repeater in a VBox in a view stack. Layout gets
 messed up on auto, but seems to draw a bit more properly with an all.
 ViewStack in a ViewStack, the outer view stack cant
 see all of the inner view stacks children.




Sure, I want things to
run fast, but when strange rendering bugs and undefined elements get in the way
of getting something done, setting creation policy to all is a common work
around.



Best,

allen











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Gordon Smith
Sent: 13 October 2005 21:56
To: flexcoders@yahoogroups.com
Cc: Flex IMD
Subject: [flexcoders] Why you
shouldn't set creationPolicy=all to solve your deferred
instantiation problems





 On the accordion tag, set
creationPolicy=all.



 Setting a creationPolicy=All on the accordian
container will cause all of the children to be created when the
accordian is created.



In my post two days ago I tried to explain
why setting creationPolicy=all is not The Right Way to solve
problems caused by deferred instantiation. I'll try to work with our doc folks
to do a better job of explaining the right technique in the future. In the
meantime, here's a repeat of what I wrote then.



- Gordon



I'd like to suggest that
it's better to learn how to make deferred

instantiation your friend
than to simply turn it off.



The point of deferred
instantiation is to not waste time at app startup

creating controls that you
don't need yet. If you had a ViewStack with

500 views, it probably
wouldn't be a good idea to create the controls on

all 500 of them at startup,
when only one view is initially visible. The

only good reason to set
creationPolicy=all, and therefore increase

startup time, is to decrease
the small navigation delays when you switch

from view to view.



If these delays are acceptable,
then you should allow the views to do

deferred creation of their
controls, as they were designed to do.



So how do you set the
initial state of controls that undergo deferred

instantiation? You use the
appropriate events to set their state AFTER

they have been created. For
example, you could use 'initialize' or

'creationComplete' events on
the the controls themselves. Or you could

use events like
'childrenCreated' or 'childrenCreationComplete' on the

view that you navigated to.



Once you realize that every
control in the app doesn't get created at

startup, it's always
possible -- and not difficult -- to design your app

so that you don't push
information prematurely into controls that don't

exist yet. Instead, it's
typical to store information into a data

model of some kind
that is independent of the controls that display

that information. When the
controls get created, they pull the

information in from the data
model.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Gordon Smith
Sent: Thursday, October 13, 2005
12:57 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Any
explanation as to why this would happen(Question about accordions)





This is due to a feature of Flex known as
Deferred Instantiation.



My post on Tuesday entitled Re:
Unable to refer controls in Accordion ! addressed the issue.



- Gordon











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED]
Sent: Thursday, October 13, 2005
11:42 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Any
explanation as to why this would happen(Question about accordions)







I am having some problems getting a button on one panel of
an accordion to change the textinput box on another panel of an accordion and I
was wondering if someone can give me some idea as to what could be causing
this?




















--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your 

Re: [flexcoders] Why you shouldn't set creationPolicy=all to solve your deferred instantiation problems

2005-10-14 Thread Manish Jethani
On 10/14/05, Allen Manning [EMAIL PROTECTED] wrote:

 Repeater  in a VBox in a view stack.  Layout gets messed up on auto, but 
 seems to  draw a bit more properly with an all.

Do you have a test case to reproduce this bug?  At least we can make
sure it doesn't happen in 2.0!

 ViewStack  in a ViewStack, the outer view stack can't see all of the 
 inner view stack's  children.

_All_ of the inner viewstack's children?  Or just the ones that
haven't been created?  You have to wait until they are created, and
the childrenCreated event will tell you when.


 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Manish Jethani
On 10/14/05, Parekh, Shweta - BLS CTR [EMAIL PROTECTED] wrote:

 1. Are there global variables in Flex so that I can take the result from
 remote call in a global variable and then use it anywhere -- in my case in
 the child component?

You can save the result in the application and then refer to it from
child components using the expression parentApplication.myResult
(can even bind to it I guess).


 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] Why you shouldn't set creationPolicy=all to solve your deferred instantiation problems

2005-10-14 Thread Allen Manning

I'll try and get some simple test cases together.

Thanks,
allen

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Manish Jethani
Sent: 14 October 2005 17:24
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Why you shouldn't set creationPolicy=all to
solve your deferred instantiation problems

On 10/14/05, Allen Manning [EMAIL PROTECTED] wrote:

 Repeater  in a VBox in a view stack.  Layout gets messed up on auto,
but seems to  draw a bit more properly with an all.

Do you have a test case to reproduce this bug?  At least we can make
sure it doesn't happen in 2.0!

 ViewStack  in a ViewStack, the outer view stack can't see all of the
inner view stack's  children.

_All_ of the inner viewstack's children?  Or just the ones that
haven't been created?  You have to wait until they are created, and
the childrenCreated event will tell you when.



--
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



 




-- 
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005
 

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005
 



 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] Strange behavour

2005-10-14 Thread sergei_tsoganov
I use Cairngorm in my application.
My main.mxml is:

?xml version=1.0 encoding=utf-8?
  mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;  
  xmlns:view=com.vetclinic.view.* 
  xmlns:ctrl=com.vetclinic.components.controls.* 
  xmlns:control=com.vetclinic.control.* 
  xmlns:business=com.vetclinic.business.* 
  pageTitle=VetClinic 
  marginTop=0 
  marginRight=0 
  marginLeft=0 
  marginBottom=0 
  initialize=applicationViewHelper.init()
mx:Script
![CDATA[import com.vetclinic.model.ModelLocator;]]
/mx:Script
view:MainViewHelper id=applicationViewHelper /
business:Services id=services /
control:Controller id=controller /
ctrl:appMenuBar id=menu
change=applicationViewHelper.menuChangeEvt(event) /
mx:ViewStack  id=views visible=false width=100%
height=100%  selectedIndex={ModelLocator.workflowState} 
  view:Inventory id=inventory /
/mx:ViewStack
  /mx:Application

Why when I compile it, the browser shows some space above the menu bar
even if all margins are 0. If I change to:

...
 ctrl:appMenuBar id=menu
change=applicationViewHelper.menuChangeEvt(event) /
 view:MainViewHelper id=applicationViewHelper /
business:Services id=services /
control:Controller id=controller /
...

there is no space above the menu bar. Why does it happen? The
applicationViewHelper, services and controller are only classes. 





 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] DataGridColumn display issue

2005-10-14 Thread Husain Kitabi



OTT?
Please tell me about labelFunction.

Thanks
HusainAllen Manning [EMAIL PROTECTED] wrote:
Custom cell renderer might be a bit OTT for this, labelFunction would be agood start.Best,Allen-Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] OnBehalf Of Darron J. SchallSent: 14 October 2005 14:10To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] DataGridColumn display issueHusain Kitabi wrote: I tried to use  headerText="Classgroup Venue" /  headerText="Classgroup Capacity"/  headerText="Module"/  The first 2 columns are fine. But module.moduleName - it does not  display anything. Has anybody done something like this. Pl
 advise.You need to create a custom cell renderer. The default cell renderer only allows you to go "1 deep" into an object, so you have to createa cell renderer that can understand column names that use a path to get deeper into a object.Heres some partial code to give you an idea.. the entire cell renderer will be found in Flex By Example with sample usage. This code would go inside a "PathCellRenderer.as" file that creates a Label component to render text.private function setValue( str:String, item:Object, selection:String):Void{if ( item == undefined ) {label.visible = false;return;}label.visible = true;// Split up the complex path into piecesvar path = getDataLabel().split(".");// "dot down" to the item to displayvar toDisplay = item[ path[0] ];for ( var i:Number = 1; i  path.length; i++ ) {toDisplay = toDisplay[ path[i] ];}label.text =
 toDisplay;}Flex by example will ship on October 24th, I believe. :-)-d--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links-- No virus found in this incoming message.Checked by AVG Anti-Virus.Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005-- No virus found in this outgoing message.Checked by AVG Anti-Virus.Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005 Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM~-
 --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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/* 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/hussain
		 Yahoo! Music Unlimited - Access over 1 million songs. Try it free.





--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Flex File Upload over HTTPS

2005-10-14 Thread Dimitrios Gianninas





Hi, 
anyone have trouble using the File Upload component in Player 8 over HTTPS ? 
Like it doesn't upload at all, gives an IO Error with no 
details?

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Me go to MAX alone. you be my friend?

2005-10-14 Thread Aldo Bucchi
Any beautiful girls around here?

Anyone?



Duh, this is a software event :(


On 10/14/05, Hindman, Jeff [EMAIL PROTECTED] wrote:
 Gonna be a ton o fun!

 Name:  Jeff Hindman
 Nationality : American
 Age: Getting older every day ...

 Currently:  Building enterprise RIAs for Boeing; convincing co-workers that 
 there's a whole world beyond Visual Basic and Perl

 See you there :)

 

 From: Kelly Roman [mailto:[EMAIL PROTECTED]
 Sent: Thu 10/13/2005 10:51 PM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] Me go to MAX alone. you be my friend?



 I am down.



 Here is my Bio:



 Name: Kelly Roman

 Age: 24

 Nationality: American



 Currently:

 Building enterprise Flex applications for the automotive industry (Honda, 
 Mazda, Ford)



 Currently on contract but I maintain www.dekaydmedia.com 
 http://www.dekaydmedia.com/  when I have time.







 See you there eh.





 --Kelly

 [EMAIL PROTECTED]

 www.dekaydmedia.com http://www.dekaydmedia.com/









 

 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aldo 
 Bucchi
 Sent: Wednesday, October 12, 2005 1:34 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Me go to MAX alone. you be my friend?



 Hi all,

 I will be attending MAX pretty much by myself ( the rest of the group
 is going to the experience forum ) so I'd like to ask openly if anyone
 here would like to get in contact before the meeting so we can get
 acquainted ( my interests detailed below ).

 Very few of you know me, I have been on this list since right after it
 started ( and flexing since the betas ) but I barely have time to
 write, since Flex is only 20% of my job. Anyway,I read all I can and I
 love this community ( some people here really love what they do, in
 contrast to other J2EE groups! ).
 I have finally managed to get more flex into our customers' minds and
 I will soon have more time to invest in this great technology.

 Hope someone gets interested ;)
 reach me on this email or skype me (aldo.bucchi)

 I mean it. This approach might sound a little strange but it's a
 great chance of meeting interesting people ( ehem.. like myself ) and
 I don't want to waste it. You never know what can come out of it.

 ---

 Bio in a nutshell

 - name. Aldo Bucchi
 - age: 24
 - nationality: Chilean
 - years in the biz: 6 paying my bills from it
 - currently:
  IT Architect for a Core financial services company ( AKA we build
 stuff that powers banks ).
  Bea specialist ( sub: Bea Portal ).
  Epiphany CRM implementor.
  Project leader in general.
  Usability / Customer Experience advisor ( and I always try to
 involve people from other departments in our projects: commercial,
 marketing, customer service, etc )
  Flex evangelist since mid 2004.
  ... and getting up to date with Bea Aqualogic and BPEL 4 people.
 - English, Spanish, some French

 My interests regarding Flex are.
 - proven use cases in financial services ( mostly customer facing )
 --- experience design theory
 --- simplicity and best practices
 --- empiric evidence of customer adaptability ( or lack thereof )
 --- idetifying common problems and bad practices
 - new collaborative patterns
 --- dashboard / shared applications
 - flex + breeze in the enterprise, business patterns
 - streamlining integration of the future Flex Enterprise Services and
 Aqualogic DataServices / Epiphany BIO Layer / other generic data
 layers, BPMs and ESBs.

 I am currently evaluating the migration of a critical customer facing
 application in a bank to flex. So I have a lot of fresh questions on
 the subject.

 OK, enough promotion, back to work
 Thanks for your time,
 Aldo

 PS. Had to ask ;)

 --
 : Aldo Bucchi :
 mobile (56) 8 429 8300



 --
 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



 *Visit your group flexcoders 
 http://groups.yahoo.com/group/flexcoders  on the web.

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

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


 





 --
 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








--
: Aldo Bucchi :
mobile (56) 8 429 8300


 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: 

[flexcoders] Re: Row Height Overflow

2005-10-14 Thread Greg Johnson
Ya, my mistake was I had a marginbottom=15.  For some reason when 
you set the left and right margins it moves the outer edge in, but 
when you do the bottom, it effects every single row.

Still though, it still leaves me with the problem of getting the 
height to adjust.

IOW say it takes 30 lines to fill the screen.  If the CFC returns 20, 
I don't want 20 result lines and 10 blank lines, I just want 20 
lines.  But if it returns 40 results, I just want 30 result lines and 
the scrollbar.
--- In flexcoders@yahoogroups.com, Manish Jethani 
[EMAIL PROTECTED] wrote:

 On 10/14/05, Greg Johnson [EMAIL PROTECTED] wrote:
  I need the rows of a datagrid to stay at 1 line if none of the 
cells in
  that row is bigger then one line, but if one is I need that cell 
to
  wrap and the row to expand.  I also only want used rows showing 
up to a
  max overall height and then show the scroll bar.
 
 variableRowHeight=true wordWrap=true







 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] How to save uploaded file in database

2005-10-14 Thread Sandip Patil



HI Dimitrios,

Thx for your response.
But in my case I am passing uploaded file name from my flex to jsp from where I am calling my java class by creating instance of java class on JSP page.

But my confusion is how to get file data on jsp page sothat I can pass it to my java class where I have written code to save the information to DB.

If I use javazoom.upload.UploadFile then I have there method getData().
But it is not working on JSP.

So any hint or other way to save file to DB.

Thx in advance,
sandip patil

Dimitrios Gianninas [EMAIL PROTECTED] wrote:








We use Oracle 9i around here and several applications store files in the DB as BLOBs and it works like charm. This is a DB issue, so you should speak with your Database Administrator to resolve the issue.

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ritesh JariwalaSent: Friday, October 14, 2005 2:38 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] How to save uploaded file in database


If you want good performance then better store reference of file in database. There is no problem to save files in database but sometimes database becomes big and it will take more time to process.


With Regards,

Ritesh Jariwala (Actkid)
Freelance Developer 
www.actkid.com
Company: www.synonymic.com






From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson HagerSent: Friday, October 14, 2005 8:06 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] How to save uploaded file in database

I don't see any problem with it provided you design your tables to keep the data in a separate table, possibly separate tablespace, etc. Most reasonably good databases today have very good blob/clob support.

Carson


  Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com  Email: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 89Mobile: 1.703.489.6466   






From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rich RodeckerSent: Thursday, October 13, 2005 5:59 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] How to save uploaded file in database
I've always heard that it's bad to save files as BLOBs in the database, and that it was better to save the file to the file system and store a reference to the file in the db...no?

On 10/13/05, Carson Hager [EMAIL PROTECTED] wrote: 
Search the web. There are hundreds of examples that show you thedebachle that is Oracle's JDBC driver and binary data.Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 89Mobile: 1.703.489.6466-Original Message-From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] OnBehalf Of sandip_patil01Sent: Thursday, October 13, 2005 6:17 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] How to save uploaded file in databaseHI all,I have successfully done uploading file in a directory using fileIOfeature provided by Flex using Flash 8.Now I wanna to save the uploaded file in database.SO can anybody tell me how to save uploaded file in database usingFlex.My databse is oracle 9i.Any url or suggessions ?Thx in advance,sandip patil Yahoo! Groups Sponsor ~--Most low income households are not online. Help bridge the digitaldivide today!http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM~- --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives:http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links

--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



YAHOO! GROUPS LINKS 


Visit your group "flexcoders" on the web. 
To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 





		 Yahoo! Music Unlimited - Access over 1 million songs. Try it free.





--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Mink, Joseph





Or you can create a static actionscript class with a 
private member. Set that member, and then everyone who accesses the static 
class will get the same value for that static member:

class StaticClass
{
 public static var theValue;
}

...

StaticClass.theValue = something;

...

if (StaticClass.theValue == something)
...

Does that help?


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Manish 
JethaniSent: Friday, October 14, 2005 12:27 PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Problem with 
repeater and datagrid -- Please help!
On 10/14/05, Parekh, Shweta - BLS CTR 
[EMAIL PROTECTED] wrote: 1. Are there global variables 
in Flex so that I can take the result from remote call in a global 
variable and then use it anywhere -- in my case in the child 
component?You can save the result in the application and then refer to 
it fromchild components using the _expression_ 
"parentApplication.myResult"(can even bind to it I guess).





--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Parekh, Shweta - BLS CTR
Title: Message





So 
then two mxml files will be accessing the same actionscript. In one mxml, the 
member is set and the other mxml accesses the member. That might work for me. 
But can two mxml files access the same actionscript?

-Shweta

  
  -Original Message-From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
  Mink, JosephSent: Friday, October 14, 2005 1:18 
  PMTo: flexcoders@yahoogroups.comSubject: RE: 
  [flexcoders] Problem with repeater and datagrid -- Please 
  help!
  Or you can create a static actionscript class with a 
  private member. Set that member, and then everyone who accesses the 
  static class will get the same value for that static 
  member:
  
  class StaticClass
  {
   public static var theValue;
  }
  
  ...
  
  StaticClass.theValue = something;
  
  ...
  
  if (StaticClass.theValue == 
something)
  ...
  
  Does that help?
  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Manish 
  JethaniSent: Friday, October 14, 2005 12:27 PMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Problem with 
  repeater and datagrid -- Please help!
  On 10/14/05, Parekh, Shweta - BLS CTR 
  [EMAIL PROTECTED] wrote: 1. Are there global variables 
  in Flex so that I can take the result from remote call in a global 
  variable and then use it anywhere -- in my case in the child 
  component?You can save the result in the application and then refer to 
  it fromchild components using the _expression_ 
  "parentApplication.myResult"(can even bind to it I guess).





--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] How to save uploaded file in database

2005-10-14 Thread Dimitrios Gianninas





You can use the sample I 
provided on this page: http://weblogs.macromedia.com/mchotin/archives/2004/11/index.cfm

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Sandip 
PatilSent: Friday, October 14, 2005 1:22 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] How to save 
uploaded file in database

HI Dimitrios,

Thx for your response.
But in my case I am passing uploaded file name from my flex to jsp from 
where I am calling my java class by creating instance of java class on JSP 
page.

But my confusion is how to get file data on jsp page sothat I can pass it 
to my java class where I have written code to save the information to DB.

If I use javazoom.upload.UploadFile then I have there method 
getData().
But it is not working on JSP.

So any hint or other way to save file to DB.

Thx in advance,
sandip patil

Dimitrios Gianninas 
[EMAIL PROTECTED] wrote:

  
  
  
  

  

  We use Oracle 9i around here 
  and several applications store files in the DB as BLOBs and it works like 
  charm. This is a DB issue, so you should speak with your Database 
  Administrator to resolve the issue.
  
  Dimitrios "Jimmy" Gianninas
  RIADeveloper
  Optimal Payments 
Inc.
  
  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Ritesh 
  JariwalaSent: Friday, October 14, 2005 2:38 AMTo: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] How to save 
  uploaded file in database
  
  
  If you want good 
  performance then better store reference of file in database. There is no 
  problem to save files in database but sometimes database becomes big and it 
  will take more time to process.
  
  
  With 
  Regards,
  
  Ritesh Jariwala 
  (Actkid)
  Freelance Developer 
  
  www.actkid.com
  Company: www.synonymic.com
  
  
  
  
  
  
  From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson HagerSent: Friday, October 14, 2005 8:06 
  AMTo: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] How to save 
  uploaded file in database
  
  I don't see any 
  problem with it provided you design your tables to keep the data in a separate 
  table, possibly separate tablespace, etc. Most reasonably good databases 
  today have very good blob/clob support.
  
  Carson
  
  
   
   
  Carson 
  HagerCynergy Systems, Inc.http://www.cynergysystems.com 
   
  Email: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 
  89Mobile: 
  1.703.489.6466   
  
  
  
  
  
  
  From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rich RodeckerSent: Thursday, October 13, 2005 5:59 
  PMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] How to save 
  uploaded file in database
  I've always heard that it's bad to save 
  files as BLOBs in the database, and that it was better to save the file to the 
  file system and store a reference to the file in the 
  db...no?
  
  On 10/13/05, Carson Hager [EMAIL PROTECTED] 
  wrote: 
  Search the web. There are hundreds of 
  examples that show you thedebachle that is Oracle's JDBC driver and binary 
  data.Carson Carson HagerCynergy 
  Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 89Mobile: 1.703.489.6466-Original Message-From: flexcoders@yahoogroups.com [mailto: 
  flexcoders@yahoogroups.com] OnBehalf Of 
  sandip_patil01Sent: Thursday, October 13, 2005 6:17 
  AMTo: flexcoders@yahoogroups.com! Subject: [flexcoders] How to save uploaded file in 
  databaseHI all,I 
  have successfully done uploading file in a directory using 
  fileIOfeature provided by Flex using Flash 
  8.Now I wanna to save the uploaded file in 
  database.SO can anybody tell me how to save 
  uploaded file in database usingFlex.My databse is 
  oracle 9i.Any url or suggessions 
  ?Thx in advance,sandip 
  patil Yahoo! Groups Sponsor 
  ~--Most 
  low income households are not online. Help bridge the 
  digitaldivide 
  today!http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM~- 
  --Flexcoders 
  Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives:http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups 
  Links
  
  --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  
  
  
  YAHOO! GROUPS 
  LINKS 
  
  
  
Visit your group 
"flexcoders" on the web. 
To unsubscribe 
from this group, send an email to: 
[EMAIL PROTECTED] 
Your use of Yahoo! 
Groups is subject to the Yahoo! Terms of Service. 
  
  
  
  
  


Yahoo! 
Music Unlimited - Access over 1 million songs. Try it free. 





--

RE: [flexcoders] Load MXML after Login

2005-10-14 Thread Tracy Spratt










Yes, that is precisely what mx:Loader is
for.

Tracy











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Aly Sidi
Sent: Friday, October 14, 2005
11:45 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Load MXML
after Login





This has probably been answered before but i was wondering if you could
use teh mx:Loader to Load a MXML.
forexample..once main.mxml is
loaded you can click on a button that will unload main.mxml and goto next.mxml.

I want ot use this for when a user logins then erdirects them to a
mxml. I know i can do it in the initialize of teh main app and luanch a tile
window, but i was wondering if i could load mxmls dynamically

-aly








--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] How to save uploaded file in database

2005-10-14 Thread Sandip Patil



Hi Dimitrios,

When I click on this ..You can get the examples here
It is showing internal server error.
I appreciateif you send me any hint or other link

Thx.Dimitrios Gianninas [EMAIL PROTECTED] wrote:


You can use the sample I provided on this page: http://weblogs.macromedia.com/mchotin/archives/2004/11/index.cfm

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sandip PatilSent: Friday, October 14, 2005 1:22 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] How to save uploaded file in database

HI Dimitrios,

Thx for your response.
But in my case I am passing uploaded file name from my flex to jsp from where I am calling my java class by creating instance of java class on JSP page.

But my confusion is how to get file data on jsp page sothat I can pass it to my java class where I have written code to save the information to DB.

If I use javazoom.upload.UploadFile then I have there method getData().
But it is not working on JSP.

So any hint or other way to save file to DB.

Thx in advance,
sandip patil

Dimitrios Gianninas [EMAIL PROTECTED] wrote:








We use Oracle 9i around here and several applications store files in the DB as BLOBs and it works like charm. This is a DB issue, so you should speak with your Database Administrator to resolve the issue.

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ritesh JariwalaSent: Friday, October 14, 2005 2:38 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] How to save uploaded file in database


If you want good performance then better store reference of file in database. There is no problem to save files in database but sometimes database becomes big and it will take more time to process.


With Regards,

Ritesh Jariwala (Actkid)
Freelance Developer 
www.actkid.com
Company: www.synonymic.com






From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson HagerSent: Friday, October 14, 2005 8:06 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] How to save uploaded file in database

I don't see any problem with it provided you design your tables to keep the data in a separate table, possibly separate tablespace, etc. Most reasonably good databases today have very good blob/clob support.

Carson


  Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com  Email: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 89Mobile: 1.703.489.6466   






From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rich RodeckerSent: Thursday, October 13, 2005 5:59 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] How to save uploaded file in database
I've always heard that it's bad to save files as BLOBs in the database, and that it was better to save the file to the file system and store a reference to the file in the db...no?

On 10/13/05, Carson Hager [EMAIL PROTECTED] wrote: 
Search the web. There are hundreds of examples that show you thedebachle that is Oracle's JDBC driver and binary data.Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 89Mobile: 1.703.489.6466-Original Message-From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] OnBehalf Of sandip_patil01Sent: Thursday, October 13, 2005 6:17 AMTo: flexcoders@yahoogroups.com! Subject: [flexcoders] How to save uploaded file in databaseHI all,I have successfully done uploading file in a directory using fileIOfeature provided by Flex using Flash 8.Now I wanna to save the uploaded file in database.SO can anybody tell me how to save uploaded file in database usingFlex.My databse is oracle 9i.Any url or suggessions ?Thx in advance,sandip patil Yahoo! Groups Sponsor ~--Most low income households are not online. Help bridge the digitaldivide today!http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM~- --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives:http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links

--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



YAHOO! GROUPS LINKS 


Visit your group "flexcoders" on the web. 
To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 







Yahoo! Music Unlimited - Access over 1 million songs. Try it free. 
		 Yahoo! Music Unlimited - Access over 1 million songs. Try it free.





--
Flexcoders Mailing List
FAQ: 

RE: [flexcoders] Flex File Upload over HTTPS

2005-10-14 Thread Carson Hager





We saw issues when explicitly setting the url to 
include https, for some reason. When we load the page under https and specify a 
relative URL, it works for us. We have this as part of our new customer support 
site coming out on Monday and has been tested thoroughly. As a note, there 
are several issues with the flashplayer and file uploads. It will attempt 
to send binary files twice so you willget IOExceptions on the Java side. 
We have found that it is safe to ignore this as the file will come during a 
subsequent attempt. We also found that the populare MultipartRequest from 
O'Reilly does not work at all. You have to the use the MultipartParser 
instead.


Carson

  Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com 
 Email: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 
89Mobile: 1.703.489.6466   



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios 
GianninasSent: Friday, October 14, 2005 10:07 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Flex File Upload over 
HTTPS

Hi, 
anyone have trouble using the File Upload component in Player 8 over HTTPS ? 
Like it doesn't upload at all, gives an IO Error with no 
details?

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] DataGridColumn display issue

2005-10-14 Thread Tracy Spratt










Here is an example. Note that it uses XML
class methods. If you are using an object as a dataProvider, you will need to
adjust accordingly.



http://www.cflex.net/showfiledetails.cfm?ObjectID=258



Tracy











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Husain Kitabi
Sent: Friday, October 14, 2005
12:22 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
DataGridColumn display issue







OTT?





Please tell me about labelFunction.











Thanks





Husain

Allen Manning
[EMAIL PROTECTED] wrote:





Custom cell renderer
might be a bit OTT for this, labelFunction would be a
good start.

Best,
Allen



-Original Message-
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
Behalf Of Darron J. Schall
Sent: 14 October 2005 14:10
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] DataGridColumn display issue

Husain Kitabi wrote:

 I tried to use
 
 headerText=Classgroup Venue /
 
 headerText=Classgroup Capacity/
 
 headerText=Module/

 
 The first 2 columns are fine. But module.moduleName - it does not 
 display anything. Has anybody done something like this. Pl advise.


You need to create a custom cell renderer. The default cell renderer 
only allows you to go 1 deep into an object, so you have to createa

cell renderer that can understand column names that use a path to get 
deeper into a object.

Heres some partial code to give you an idea.. the entire cell renderer 
will be found in Flex By Example with sample usage. This code would go 
inside a PathCellRenderer.as file that creates a Label component to

render text.

private function setValue( str:String, item:Object, selection:String
):Void
{
if ( item == undefined ) {
label.visible = false;
return;
}

label.visible = true;

// Split up the complex path into pieces
var path = getDataLabel().split(.);
// dot down to the item to display
var toDisplay = item[ path[0] ];
for ( var i:Number = 1; i  path.length; i++ ) {
toDisplay = toDisplay[ path[i] ];
}

label.text = toDisplay;
}


Flex by example will ship on October 24th, I believe. :-)

-d




--
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








-- 
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005




 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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/










hussain







Yahoo!
Music Unlimited - Access over 1 million songs. Try it free. 







--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] How to cancel drag 'n drop operation?

2005-10-14 Thread Tracy Spratt










Try calling it always. We are and we get
the red x when the location is invalid.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young
Sent: Thursday, October 13, 2005
8:57 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How to
cancel drag 'n drop operation?





Yesif the location is valid, I call
that function











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy
 Spratt
Sent: Thursday, October 13, 2005
8:58 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How to
cancel drag 'n drop operation?






Are you calling:

event.target.showDropFeedback();











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young
Sent: Thursday, October 13, 2005
8:37 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How to
cancel drag 'n drop operation?





Yep that works, thx!  any idea if I
can trigger that x icon (shows when hovering over object that
doesnt support drag n drop) to provide additional feedback when
hovering over an invalid position?











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy
 Spratt
Sent: Thursday, October 13, 2005
8:18 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How to
cancel drag 'n drop operation?





Could you apply the location checking
logic in the dragOver?











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young
Sent: Thursday, October 13, 2005
7:43 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How to
cancel drag 'n drop operation?





Not very elegant but I got around it with
using a boolean variableif the location isnt valid, just sets a
flag that is then checked on doDragComplete











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young
Sent: Thursday, October 13, 2005
7:07 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How to
cancel drag 'n drop operation?

































--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Code Share

2005-10-14 Thread JesterXL
For those who don't read blogs, I duplicated Pastebin.com in Flex using 
Flashcom (missing Diff's, though).

Source included.

http://www.jessewarden.com/archives/2005/10/code_share_real.html

--JesterXL 



 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Manish Jethani
On 10/14/05, Parekh, Shweta - BLS CTR [EMAIL PROTECTED] wrote:

 So then two mxml files will be accessing the same actionscript. In one mxml,
 the member is set and the other mxml accesses the member. That might work
 for me. But can two mxml files access the same actionscript?

This is the structure of the objects in your application:

  main.mxml
-- component1.mxml
-- component2.mxml
...

component1 can access the public properties in main using
parentApplication/parentDocument


 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] JOB: Full time position open for Senior ColdFusion/Flex Developer

2005-10-14 Thread Jonathan Hirschi
eBay inc. is looking for an experienced developer to
join our internal product tools services group. 
You will work within a team environment to build
custom web-based database applications. Projects 
include: content management systems, next generation
Rich Internet Application development and 
integration with back office systems.

This is a fast-turnaround environment; typical
projects range from two to twelve weeks duration.


Basic requirements for this position include:
•Work with team members to help translate customer
needs into design/application 
specifications
•Architect, develop and design detailed prototypes and
web interfaces for all applications
•Design, build and optimize SQL Server databases
•Work directly with clients to finalize application
requirements
•Create and maintain database-driven web applications
•Integrate online applications with back-end systems
(Web Services, Soap, etc) 

Job Requirements Required technical proficiencies:
•ColdFusion
•JavaScript
•CSS
•SQL/SQL Server
•HTML
•NT

Desired Technical skills:
•WDDX and XML
•FLEX
•FLASH
•ActionScript

General Business and Customer skills required:
•Close attention to detail
•Ability to effectively test and document your own
work
•Great organizational and time-management skills,
including an ability to estimate project 
completion times
•Ability to juggle multiple projects, tasks, and
deadlines
•Self-motivated and self-directed: We need someone who
will proactively tackle challenges propose 
innovative solutions
•Great communication skills: both written and verbal
(Developers respond directly to client requests,
 so the ability to correspond professionally via email
is critical)
•Properly assess and meet customer needs in a
professional and courteous manner
•Anticipate customers' needs and communicate/pitch new
ideas
•Adapt well to frequent change 

Education - Bachelors Degree or Equivalent 

Job Req No.  - 7816BR

http://www.ebaycareers.com

apply online or send your resume to me,
jhirschiatebaydotcom

Absolutely No Recruiters please.




__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com


 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] Highlight gridline on chart

2005-10-14 Thread Tom Fitzpatrick
On a column chart, is it possible to highlight one gridline at a single 
yField value?

So, for example, if the yField values on the chart run from $0 to $150,000, 
how would I put a horizontal red line at the $100,000 level?

- Tom






 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] DataGridColumn display issue

2005-10-14 Thread Darron J. Schall
Allen Manning wrote:

Custom cell renderer might be a bit OTT for this, labelFunction would be a
good start.
  


A cell renderer for an object path is reusable, whereas with using a 
label function you have to create a new function for each path.  It may 
be over the top for this particular case, but it's a once and done thing.

Example:

mx:DataGridColumn headerText=Department 
columnName=user.department /
mx:DataGridColumn headerText=Primary Role 
columnName=permissions.role.primary /
mx:DataGridColumn headerText=Username columnName=user.username /

All 3 of the above columns can use a single label with a path cell 
renderer, as opposed to having to create 3 different label functions to 
return the different paths individually.  In a small project this 
probably isn't a big deal (maintaining a long list of label functions), 
but in a large project it could get cumbersome quickly.

I agree that labelFunction is easier to create, but easiest isn't always 
best.  :-)

-d



 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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/

* 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] Flex File Upload over HTTPS

2005-10-14 Thread Dimitrios Gianninas





Yup thx 
Carson.

We've run into the 
double-upload issue as well. Our problem is that Apache, sitting in front of 
WebLogic is blocking the upload for some reason. If you load the UI by accessing 
the UI directly from WebLogic under HTTPS, it works. But not thru Apache. 
Working with our UNIX admins now to solve this.

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Carson 
HagerSent: Friday, October 14, 2005 2:32 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex File Upload 
over HTTPS

We saw issues when explicitly setting the url to 
include https, for some reason. When we load the page under https and specify a 
relative URL, it works for us. We have this as part of our new customer support 
site coming out on Monday and has been tested thoroughly. As a note, there 
are several issues with the flashplayer and file uploads. It will attempt 
to send binary files twice so you willget IOExceptions on the Java side. 
We have found that it is safe to ignore this as the file will come during a 
subsequent attempt. We also found that the populare MultipartRequest from 
O'Reilly does not work at all. You have to the use the MultipartParser 
instead.


Carson

  Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com 
 Email: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 
89Mobile: 1.703.489.6466   



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios 
GianninasSent: Friday, October 14, 2005 10:07 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Flex File Upload over 
HTTPS

Hi, 
anyone have trouble using the File Upload component in Player 8 over HTTPS ? 
Like it doesn't upload at all, gives an IO Error with no 
details?

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.