Re: [flexcoders] ComboBox and Icons

2005-11-18 Thread Anatole Tartakovsky





Andre,
Here is the way to replace combobox dropdown with 
configurable datagrid from my recent post:
http://www.mail-archive.com/flexcoders@yahoogroups.com/msg15878.html

Adding icon might looksimplier if you apply 
iconField to dropdown property of the combobox, but making sure that symbols are 
linked can be tricky. You might consider using control.dropdown.iconFunction 
instead as it gives you an ability to debug the data requested and symbol 
returned. Also please make sure you apply these properties after the combobox is 
initialized for "dropdown" to work, and association is created in the code 
rather then on the control itself (and the later the better) as the "dropdown" 
can be destroyed and recreated (on reassignment of dataProvider as an example). 


However, using cusom class overloading getDropdown 
method as in the link provided is going to be the most reliable solution - and 
you can replace dropdown with datagrid or tree or any other "list" tailored for 
RIA experience.

HTH,
Anatole Tartakovsky
[EMAIL PROTECTED]




  - Original Message - 
  From: 
  Andre Ehlert 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, November 17, 2005 10:53 
  AM
  Subject: [flexcoders] ComboBox and 
  Icons
  Hi all, does anybody know, if there is a possibility to add an 
  icon to each item of a combobox - (I 
  know it works with a mx:List via attribute iconField... :) 
  thanxs andré ehlert 
  





--
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] iterate mx:Model data in CellRenderer

2005-11-18 Thread keishichi2001
i'm trying to display mx:Model data in CellRenderer(within TileList).
The mx:Model has following format.

mx:Model id=monthdata
  obj
item
  date1/date
  day0/day
  daysch
titleSales MTG/title
titlePresentation/title
  /daysch
/item
item
  date2/date
  day1/day
  daysch
titlesomething to do/title
  /daysch
/item
  /obj
/mx:Model

daysch element may have multiple nested elements.
Above data will be passed into dataProvider of TileList.

mx:TileList columnCount=7 rowCount=6 borderStyle=none
dataProvider={monthdata.obj.item} listItemRenderer=adayCellRenderer

Then, the CellRenderer should be able to get item data by itself.

1: mx:Link label={dataObject.date}/
2: mx:VBox 
3:   mx:Repeater id=rp_1 dataProvider={dataObject.daysch}
4: mx:Link label={rp_1.currentItem.title}/
5:   /mx:Repeater
6: /mx:VBox

I've confirmed that line1({dataObject.date}) has no problem, it works
as i expected.
However, line3-5 doesn't work.
When I run this application, i got following error dialog.

TypeError: Error #1034: Type Coersion failed: cannot convert
mx.utils::[EMAIL PROTECTED] to mx.collections.ArrayCollection
at mx.binding::Binding/execute()
at mx.binding::Binding/watcherFired()
at mx.binding::Watcher/notifyListeners()
at mx.binding::PropertyWatcher/handleEvent()
at flash.events::EventDispatcher/dispatchEvent()
at mx.core::Container/set dataObject()
at mx.controls.listclasses::TileBase/calculateHeight()
at mx.controls.listclasses::ListBase/measure()
at mx.core::UIComponent/UIComponent$480$private::measureSizes()
at mx.core::UIComponent/validateSize()
at mx.managers::LayoutManager/validateSize()
at
mx.managers::LayoutManager/LayoutManager$1689$private::doPhasedInstantiation()
at mx.core::UIComponent/UIComponent$480$private::callLaterDispatcher2()
at mx.core::UIComponent/UIComponent$480$private::callLaterDispatcher()


I hope someone correct me...


Best Regards,
Keishichi








 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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: Cairngorm is bad?

2005-11-18 Thread Mykola Paliyenko



Anatole,

I do not agree that it is a big problem in refactoring serverside code.
Sure if you have no unit tests for RIA client you will not be able to
detect that something broken when you change server interface. But in
agile methodology that is most popular now you always have to have
tests. And it is not impossible to do them for RIA client.

Another thing that can help you is code generation. In our application
we completely generate all Flex2Java interaction code (Business
delegates for all java services and value objects), also we are trying
to use strong typing as much as it is possible. So if you change server
interface your RIA code will not compile in most cases.

I agreed with you that bright people can work without frameworks but
the code they will produce will not be quite maintainable. One of the
main benefits of the frameworks is that makes code to be more clean for
other people who knows that framework, however it raise some bounds for
developers. Also I think that any serious project should be built using
single approach. By approach I mean coding conventions, framework, and
style of framework usage. Each framework can be used in multiple ways
but to succeed you have to choose your own. I did so many times and in
most cases we deliver stuff in time.

-- 
Best Regards,
MykolaOn 11/17/05, Anatole Tartakovsky [EMAIL PROTECTED] wrote:









Mykola,
 I just want to clarify the point 
I was making about the refactoring and non-heterogenic environment. There is a 
huge difference between RIA and desktop application. It is called distributed 
non-heterogenic application.Refactoring theback-end Java code will 
not cause compilation notifications of missing/changed fields/methods in UI - 
they have to be found via global search and (with larger apps)through 
testing - and can easily slip into production, especially if done in 
maintenance phase. The same applies to changes in UI - very easy to get out of 
synchronization with back-end.

 Here is simplier example for 
desktop application developers. Let us say you do changes to non-heterogenic 
piece of application - SQL table used by application - changing column names and 
datatypes. Compiler (unless it is integrated with pre-compiler/code generator) 
is not going to catch those and prompt you that your queries are no longer 
correct. You can start getting random errors based on overruns of the buffers 
due to field length, etc. 

 While programming is definetly 
fun, retesting large application after each change is definetly not. Writing 
test cases to anticipate future enhancements is not possible, adding ones along 
the change is not a reliable solution but rather desparate measure to plug the 
obvious hole.

 Iam aware of 2 approaches 
to reduce the impact of refactoring (while hopefully reducing coding as 
well):
1. usage of higher-level model objects 
encapsulating communications as well - i.e. super dataProviders that are aware 
of retrieval/update methods, maintain state, provide diagnostics andcan be 
submitted as a part of biggertransaction - just few features to be delt 
within any application. Such models can also greatly simplify coding of 
datagrids, forms and other databound controls
2. use code generators to be included as a part of 
build process. You can produce proxy objects that can facilitate strong type 
checking in either java of flex. They can improve performance of the software 
execution as guesswork is taken out of both client and flashgateway software. 
You can also generate UI resources so initial form painting is less time 
consuming.

Iuse both approaches - actually one on the 
top of the other - to reduce amount of manual code. That drives application 
into using high-level objects instead of framework - and I personally like 
it.

However I would say for one person who uses these 
approaches there are 10 people using frameworks. It come down to the project 
management - small teams of highly trained specialists vs uniformly trained in 
framework large development teams with predicatble (while long) development 
schedule/replaceable resources. If you foresee the lifecycle of the project to 
be completed via reducing the team toward the retaining the better technology 
peopleof the team and insuring the quality across the modules (and company 
budget allows for that) then the framework-less approach is the way to go. If 
you anticipate to retain maintenance crew of the least creative people that 
would prefer to do spot fixing then low-level code and framework might be 
better choice.

Here is very simple article on abstractions that is 
also applicable to refactoring:
http://www.joelonsoftware.com/articles/LeakyAbstractions.html

Towardthe end, there is Joel's estimate what 
using code generators or frameworks amounts to:

The law of leaky abstractions means that whenever somebody comes up with a 
wizzy new code-generation tool that is supposed to make us all 
ever-so-efficient, you hear a lot of people 

[flexcoders] Webservice operations with more than 3 parameters

2005-11-18 Thread Bryngfors Nils
Hi!

I've encountered a strange problem when calling webservices from Flex
2.0. When I'm calling a .NET webservice that takes 4 parameters, all
strings, I got the following error:

HTTP request error
#2032: Stream Error

The strange thing is that when I modify the webservice to only take 3
parameters everything runs fine. Any takes?

/Nisse Bryngfors


 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] How to Embed XML file at compile time?

2005-11-18 Thread Stanislav Zayarsky
Hello Guys,

Does anyone know how to Embed XML file at compile time?

I'm trying to use this code:

mx:Script
![CDATA[
[Embed(data.xml)] 
var xmldata:Object; 
]]
/mx:Script

mx:Model id=xmlModel source={xmldata}/mx:Model

But the errors are:

1. Problem parsing external XML document
2. Model 'xmlModel' contains only scalar content - this is currently unsupported

Best regards
Stanislav




 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] handling empty(null) in CellRenderer

2005-11-18 Thread keishichi2001
(flex2.0)

When i pass empty XML element into CellRenderer, and handle it like
followed, it shows as 'null' - String.

(in the CellRenderer)
...
mx:Link label={dataObject.day} /
...

I want it to be shown real empty(which means, show nothing) if empty
XML element given.

Does anyone run into same issue?
And how did u solved this?


Best Regards,
Keishichi








 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] ComboBox and Icons

2005-11-18 Thread Andre Ehlert




Hi Jim,

thanks for your reply, but i found out
a solution:

In shortform:

Definition of icons in application:

/** embed icons for cbx user status
*/
/** status away */
[Embed(source=/pics/userStatus/away.gif)]
var iconAway:String;
/** status don't disturb */
[Embed(source=/pics/userStatus/dontDisturb.gif)]
var iconDontDisturb:String;
/** status active */
[Embed(source=/pics/userStatus/active.gif)]
var iconActive:String;

Definition of Dataprovider for UserStatus

_arrOffItems:Array = new Array();
_arrOffItems.addItem({label:I'm
away, icon:iconAway, status:0, showAt:2});
_arrOffItems.addItem({label:Don't
disturb me, icon:iconDontDisturb, status:1, showAt:1});
_arrOffItems.addItem({label:I'm
active, icon:iconActive, status:2, showAt:0});

Set Dataprovider

cbxCurrentUserStatus.dataProvider =
_arrOffItems;


andré





Jim Phelan
[EMAIL PROTECTED] 
Sent by: flexcoders@yahoogroups.com
18.11.2005 02:42



Please respond to
flexcoders@yahoogroups.com





To
flexcoders@yahoogroups.com


cc



Subject
RE: [flexcoders] ComboBox
and Icons








Hey Andre,

I just had to address this
earlier this week, and I had to write two custom subclasses to make it
work. If you’re interested I might be able to clean them up and share
it, but it might take a day or two to get around to it.

Jim




From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Andre Ehlert
Sent: Thursday, November 17, 2005 10:53 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] ComboBox and Icons


Hi all, 

does anybody know, if there is a possibility to add an icon to each item
of a combobox - 
(I know it works with a mx:List via attribute iconField... :)


thanxs 
andré ehlert 


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








  
  
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 2.0 - AS3] E4X problem when parsing tags with hyphen

2005-11-18 Thread Xavi Beumala
Hi there,
I'm trying to parse xslt files from within as3. When parsing composed 
xslt tags like xsl:call-template or xsl:with-param I'm getting an 
error like: Access of undefined property template or  Access of 
undefined property param. It seems like the compiler is interpreting 
with-param like with variable minus param variable.

Here's a code snippet:

package {
import flash.display.MovieClip;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.events.Event;
import flash.events.EventType;
import flash.util.trace;

public class xslParsingBug extends MovieClip {
private var xml:XML;
private var xmlLoader:URLLoader;

public function xslParsingBug() {
xmlLoader = new URLLoader();
xmlLoader.addEventListener(EventType.COMPLETE,onXMLLoad);
xmlLoader.load (new URLRequest(file5.html));
}

private function onXMLLoad (event:Event):Void {
xml = XML (xmlLoader.data);
var xslNS:Namespace = xml.namespace(xsl);
trace (xml.xslNS::[EMAIL PROTECTED]);
   // this is failing at compile time
trace (xml.xslNS::template.xslNS::[EMAIL PROTECTED]);
}
}
}

And the file I'm trying to parse:

xsl:stylesheet version=1.0 
xmlns:xsl=http://www.w3.org/1999/XSL/Transform; 
xmlns:xs=http://www.w3.org/2001/XMLSchema; 
xmlns:fn=http://www.w3.org/2004/07/xpath-functions; 
xmlns:xdt=http://www.w3.org/2004/07/xpath-datatypes;
  xsl:output method=html version=1.0 encoding=ISO-8859-1 
indent=yes/
  xsl:template name=PageCenter
  xsl:call-template name=Banner
xsl:with-param name=DocXMLmyDoc.xml/xsl:with-param
xsl:with-param name=NumBanner2/xsl:with-param
  /xsl:call-template
  /xsl:template
/xsl:stylesheet

Is this a bug? is there any workarround?

Thanks in advance!
Xavi Beumala




 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/u8TY5A/tzNLAA/yQLSAA/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] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Niklas Richardson
Hi Jim,

I gave that a shot and still to no avail.  Still get the error:

There is no property with the name 'icon'.

Oh well.  Perhaps I need to figure out these custom header classes!

Thanks for the help.

Cheers

Niklas



On 17/11/05, Jim Phelan [EMAIL PROTECTED] wrote:



 The custom class might not benefit you (it has some other features like a
 close button), but try this:



 Button(accd.getHeaderAt(0)).icon



  


 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Niklas Richardson
  Sent: Thursday, November 17, 2005 11:51 AM

  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders] Accordion Header Icons - Changing during runtime



 Unfortunately I tried:

  accd.getHeaderAt(0).icon

  and it doesn't work.  It says icon does not exist.  I think that's
  because getHeaderAt() returns a UIComponent object.

  Would you be willing to share your custom header class?

  Thanks

  Niklas

  On 17/11/05, Jim Phelan [EMAIL PROTECTED] wrote:
  
  
  
   Hey Niklas,
  
  
  
   I've done this before. I'm accomplishing it with a custom class for the
   header, but if all you need is the icon you should be able to use
 something
   like accd.getHeaderAt(0).icon = iconLinkage Since AccordianHeader is a
   subclass of Button, it should work just fine.
  
  
  
   Jim
  
  
  

  
  
   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
   Behalf Of Niklas Richardson
Sent: Thursday, November 17, 2005 11:24 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Accordion Header Icons - Changing during
 runtime
  
  
  
   Crapola!  So you'd need some custom header class huh?
  
Thanks.
  
Niklas
  
On 17/11/05, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote:
  The icon is embedded at compile time and may not be changed
 dynamically.
  But then I could be wrong!

  Sree


  Niklas Richardson wrote:
  Hi all,

  I have hunted high and low for an answer to this and I've played
  around with accordion.getHeaderAt(), getChildAt(), but to no avail.

  Basically, I want to change the icon for a specific accordion header
  depending on a certain state of that child.

  There doesn't seem to be a way at runtime to change the icon.

  Does anyone know a solution to this?

  Thanks.  Your help is much appreciated.

  Cheers

  Niklas



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

  

  
  
--
Niklas Richardson
Prismix Ltd
  
Flex and ColdFusion Experts!
  
  
  
--
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.
  

  
  
  


  --
  Niklas Richardson
  Prismix Ltd

  Flex and ColdFusion Experts!



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

  





--
Niklas Richardson
Prismix Ltd

Flex and ColdFusion Experts!


 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/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:

Re: [flexcoders] [Flex 2.0 - AS3] E4X problem when parsing tags with hyphen

2005-11-18 Thread Xavi Beumala
If someone is interested on the response:
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=587threadid=1083145enterthread=y

Cheers
X.

Xavi Beumala wrote:
 Hi there,
 I'm trying to parse xslt files from within as3. When parsing composed 
 xslt tags like xsl:call-template or xsl:with-param I'm getting an 
 error like: Access of undefined property template or  Access of 
 undefined property param. It seems like the compiler is interpreting 
 with-param like with variable minus param variable.
 
 Here's a code snippet:
 
 package {
 import flash.display.MovieClip;
 import flash.net.URLLoader;
 import flash.net.URLRequest;
 import flash.events.Event;
 import flash.events.EventType;
 import flash.util.trace;
 
 public class xslParsingBug extends MovieClip {
 private var xml:XML;
 private var xmlLoader:URLLoader;
 
 public function xslParsingBug() {
 xmlLoader = new URLLoader();
 xmlLoader.addEventListener(EventType.COMPLETE,onXMLLoad);
 xmlLoader.load (new URLRequest(file5.html));
 }
 
 private function onXMLLoad (event:Event):Void {
 xml = XML (xmlLoader.data);
 var xslNS:Namespace = xml.namespace(xsl);
 trace (xml.xslNS::[EMAIL PROTECTED]);
// this is failing at compile time
 trace (xml.xslNS::template.xslNS::[EMAIL PROTECTED]);
 }
 }
 }
 
 And the file I'm trying to parse:
 
 xsl:stylesheet version=1.0 
 xmlns:xsl=http://www.w3.org/1999/XSL/Transform; 
 xmlns:xs=http://www.w3.org/2001/XMLSchema; 
 xmlns:fn=http://www.w3.org/2004/07/xpath-functions; 
 xmlns:xdt=http://www.w3.org/2004/07/xpath-datatypes;
   xsl:output method=html version=1.0 encoding=ISO-8859-1 
 indent=yes/
   xsl:template name=PageCenter
   xsl:call-template name=Banner
 xsl:with-param name=DocXMLmyDoc.xml/xsl:with-param
 xsl:with-param name=NumBanner2/xsl:with-param
   /xsl:call-template
   /xsl:template
 /xsl:stylesheet
 
 Is this a bug? is there any workarround?
 
 Thanks in advance!
 Xavi Beumala
 
 
 
 
 
 --
 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 ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] handling empty(null) in CellRenderer

2005-11-18 Thread Michael Hansen



how about something like:

mx:Link label={dataObject.day==null?'':dataObject.day} /
cheers
 -michael
On 11/18/05, keishichi2001 [EMAIL PROTECTED] wrote:




(flex2.0)

When i pass empty XML element into CellRenderer, and handle it like
followed, it shows as 'null' - String.

(in the CellRenderer)
...
mx:Link label={dataObject.day} /
...

I want it to be shown real empty(which means, show nothing) if empty
XML element given.

Does anyone run into same issue?
And how did u solved this?


Best Regards,
Keishichi













--
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 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] Flex 2.0 - Another way to load a SWF ?

2005-11-18 Thread Michel Bertrand
Title: Flex 2.0 - Another way to load a SWF ?








Hello !


I've been using mx.controls.Loader to load SWF files. Using Flex 2.0 platform

I've found errors tyring to use it. So, how could I load a SWF without to use

a Loader ? Is there anyway ?


Any suggestions ?


Thanks in advance !

Michel Bertrand | Desenvolvimento | DATASUL Tecnologia
Acesse www.datasuldirect.com.br e conheça mais sobre os produtos e soluções de tecnologia 









--
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] Re: Adding Item to a ComboBox

2005-11-18 Thread Manish Jethani
On 11/18/05, yaagcur [EMAIL PROTECTED] wrote:

 Several points of clarification please

 1) OK so as I understand it, in the final version of Flex 2 prompt will
 just be for info and will not be bindable, right?
 If so, is it being replaced by an alternative for easy addition of
 another item?

Yes, you can call addItem on the ComboBox's data provider.  That's the
easiest way.

 2) Using the current alphs I can add an item e.g. 'All States'
However, when I try to add it to a combobox which has been
 populated from a webservice and uses a labelField=STATE then I get
 the error
 'Property STATE not found on Object and there is no default value'

Yes, that's a bug I've seen and fixed.  The fix was to make the prompt
property behave like a prompt rather than like a call to addItem.

 3) Is it possible to add more than one prompt e.g Western States,
 Eastern States and if so how

What's the use case?  There's only enough space to display one prompt
on the ComboBox.  You _could_ have a multiline prompt if you want, but
it's going to be one prompt in the end (not multiple prompts).

 4) Would I be better off going back to using a function and ,if so,
 how does the post in my original code need to be amended

If you want to add an item to the ComboBox, you have to add one to the
data provider.  That's the model-view architecture, that's how it
works.

Manish


 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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 2.0 - AS3] E4X problem when parsing tags with hyphen

2005-11-18 Thread Manish Jethani
On 11/18/05, Xavi Beumala [EMAIL PROTECTED] wrote:

// this is failing at compile time
 trace (xml.xslNS::template.xslNS::[EMAIL PROTECTED]);

  trace (xml.xslNS::template.xslNS::[call-template[EMAIL PROTECTED]);

Manish


 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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: Flex Developer

2005-11-18 Thread Clint Modien



Job Title : FLEX Developer.Location :Farmington Hills, Michigan (30 miles northwest ofDetroit)Duration : 4 Months ( High possibility of extension)Rate :$50 - $70 /hr depends on experienceThe company I work for needs a resource who is a Macromedia FLEX developer.We need someonewhohas at least one flex project under there belt. I would greatly appreciate if you could inform your availability for this project while sending your updated resume in word format along with expected compensation and day/evening contact no.
I cansend you the job details after we've spoken.

Thanks,
Clint Modien






--
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] Flex2 : databinding itemrenders

2005-11-18 Thread Michael Hansen



hi List,

I have a HorizontalList with a listItemRenderer. 

[Bindable]
public var ItemList:ArrayCollection;

mx:HorizontalList dataProvider={ItemList} listItemRenderer=Thumbnail /

The thumbnail.mxml consists of an vbox with an image and a label like so:

mx:Vbox
 mx:Image source=./{dataObject.file /
 mx:Label text={dataObject.file}/
/mx:VBox

My problem is that if I change the underlying model(ItemList) for the
HorizontalList, the label text in the thumbnail render does not reflect
the change!? However if I poll the model using 

function doClick(event:Event) {
 
 ... event.target.selectedItem.file ...
}

the updated data _is_ retrived. Seems the change is not reflected to the itemrender?!!
Am I missing something here...?

Thanks in advance :)

Cheers

-michael








--
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] Date column sorting in datagrid

2005-11-18 Thread yasovardhan [EMAIL PROTECTED]



Hi All, 
   I have a datagrid in which out of five columns 3 columns are of date
 type.   
 I have formatted date to "DD-MM-". 
   I am unable to sort these
 columns.   
 Can you please suggest mesome method that can be used to sort the datagrid columns of type "Date". 
   Thanks
 andRegards,  Yasu.
		 Yahoo! FareChase - Search multiple travel sites in one click.

 

 





--
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] Poll: Flex developer US$ rate?

2005-11-18 Thread Aldo Bucchi
Hi all,

Any ideas on what a Flex developer is currently charging in the US?


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


 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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: Job: Flex Developer

2005-11-18 Thread Clint Modien



Just appending my post...

We're looking for developers in the U.S., Canada, or Mexico.

Thanks again,
Clint Modien
On 11/18/05, Clint Modien [EMAIL PROTECTED] wrote:

Job Title : FLEX Developer.Location :Farmington Hills, Michigan (30 miles northwest ofDetroit)Duration : 4 Months ( High possibility of extension)Rate :$50 - $70 /hr depends on experience
The company I work for needs a resource who is a Macromedia FLEX developer.We need someonewhohas at least one flex project under there belt. I would greatly appreciate if you could inform your availability for this project while sending your updated resume in word format along with expected compensation and day/evening contact no. 
I cansend you the job details after we've spoken.

Thanks,
Clint Modien






--
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] Re: handling empty(null) in CellRenderer

2005-11-18 Thread keishichi2001
Thx Michael,

With your suggestion, i used following code, then it worked perfectly !

mx:Link label={dataObject.day==null?'':dataObject.day}
enabled={dataObject.day==null?false:true} /


Thanks again,
Keishichi


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

 how about something like:
 
 mx:Link label={dataObject.day==null?'':dataObject.day} /
 
 cheers
 -michael
 
 
 On 11/18/05, keishichi2001 [EMAIL PROTECTED] wrote:
 
   (flex2.0)
 
  When i pass empty XML element into CellRenderer, and handle it like
  followed, it shows as 'null' - String.
 
  (in the CellRenderer)
  ...
  mx:Link label={dataObject.day} /
  ...
 
  I want it to be shown real empty(which means, show nothing) if empty
  XML element given.
 
  Does anyone run into same issue?
  And how did u solved this?
 
 
  Best Regards,
  Keishichi
 
 
 
 
 
 
 
 
   --
  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
developmenthttp://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ
 Computer
  software
developmenthttp://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw
 Software
  design and
developmenthttp://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ
  Macromedia
 
flexhttp://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw
 Software
  development best
practicehttp://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw
   --
  YAHOO! GROUPS LINKS
 
 
 - Visit your group
flexcodershttp://groups.yahoo.com/group/flexcoders
 on the web.
  - To unsubscribe from this group, send an email to:

[EMAIL PROTECTED][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 fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Manish Jethani
On 11/17/05, Niklas Richardson [EMAIL PROTECTED] wrote:

 Basically, I want to change the icon for a specific accordion header
 depending on a certain state of that child.


Okay, so I think that depends on the icon of the child container. 
Does changing the icon of the child not work?

Manish


 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/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] Flex2 : databinding itemrenders

2005-11-18 Thread Manish Jethani
On 11/18/05, Michael Hansen [EMAIL PROTECTED] wrote:

  The thumbnail.mxml consists of an vbox with an image and a label like so:

  mx:Vbox
  mx:Image source=./{dataObject.file  /
  mx:Label text={dataObject.file}/
  /mx:VBox

  My problem is that if I change the underlying model(ItemList) for the 
 HorizontalList, the label text in the thumbnail render does not reflect the 
 change!?

The Alpha 1 build has a bug: dataObject is not bindable (aren't you
getting a warning?).  I believe we've fixed it now, but for the time
being you have to write a setter for the 'dataObject' property in your
custom cell renderer.

Manish


 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Date column sorting in datagrid

2005-11-18 Thread Manish Jethani
On 11/18/05, yasovardhan [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 I have a datagrid in which out of five columns 3 columns are of date type.

 I have formatted date to DD-MM-.

 I am unable to sort these columns.

I think you have to write a sortFunction

Manish


 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
$100

- Original Message - 
From: Aldo Bucchi [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, November 18, 2005 9:43 AM
Subject: [flexcoders] Poll: Flex developer US$ rate?


Hi all,

Any ideas on what a Flex developer is currently charging in the US?


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



 



 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
Additionally, I know of those getting $40 to $70 as well.  Depends on 
experience, the company, and budget as well.

- Original Message - 
From: Aldo Bucchi [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, November 18, 2005 9:43 AM
Subject: [flexcoders] Poll: Flex developer US$ rate?


Hi all,

Any ideas on what a Flex developer is currently charging in the US?


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







 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Niklas Richardson
You are da man! :)

Sweet.  Must be some weird instantiation thing why .icon didn't work?

Cheers

Niklas


On 18/11/05, Philippe Maegerman [EMAIL PROTECTED] wrote:
 Have you tried accd.getHeaderAt(0)['icon'] ?

 

 From: flexcoders@yahoogroups.com on behalf of Niklas Richardson
 Sent: Fri 18/11/2005 12:32
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Accordion Header Icons - Changing during runtime


 Hi Jim,

 I gave that a shot and still to no avail.  Still get the error:

 There is no property with the name 'icon'.

 Oh well.  Perhaps I need to figure out these custom header classes!

 Thanks for the help.

 Cheers

 Niklas



 On 17/11/05, Jim Phelan [EMAIL PROTECTED] wrote:
 
 
 
  The custom class might not benefit you (it has some other features like a
  close button), but try this:
 
 
 
  Button(accd.getHeaderAt(0)).icon
 
 
 
   
 
 
  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
  Behalf Of Niklas Richardson
   Sent: Thursday, November 17, 2005 11:51 AM
 
   To: flexcoders@yahoogroups.com
   Subject: Re: [flexcoders] Accordion Header Icons - Changing during runtime
 
 
 
  Unfortunately I tried:
 
   accd.getHeaderAt(0).icon
 
   and it doesn't work.  It says icon does not exist.  I think that's
   because getHeaderAt() returns a UIComponent object.
 
   Would you be willing to share your custom header class?
 
   Thanks
 
   Niklas
 
   On 17/11/05, Jim Phelan [EMAIL PROTECTED] wrote:
   
   
   
Hey Niklas,
   
   
   
I've done this before. I'm accomplishing it with a custom class for the
header, but if all you need is the icon you should be able to use
  something
like accd.getHeaderAt(0).icon = iconLinkage Since AccordianHeader is a
subclass of Button, it should work just fine.
   
   
   
Jim
   
   
   
 
   
   
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Niklas Richardson
 Sent: Thursday, November 17, 2005 11:24 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Accordion Header Icons - Changing during
  runtime
   
   
   
Crapola!  So you'd need some custom header class huh?
   
 Thanks.
   
 Niklas
   
 On 17/11/05, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote:
   The icon is embedded at compile time and may not be changed
  dynamically.
   But then I could be wrong!
 
   Sree
 
 
   Niklas Richardson wrote:
   Hi all,
 
   I have hunted high and low for an answer to this and I've played
   around with accordion.getHeaderAt(), getChildAt(), but to no avail.
 
   Basically, I want to change the icon for a specific accordion header
   depending on a certain state of that child.
 
   There doesn't seem to be a way at runtime to change the icon.
 
   Does anyone know a solution to this?
 
   Thanks.  Your help is much appreciated.
 
   Cheers
 
   Niklas
 
 
 
   --
   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.
 
   
 
   
   
 --
 Niklas Richardson
 Prismix Ltd
   
 Flex and ColdFusion Experts!
   
   
   
 --
 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.
   
 
   
   
   
 
 
   --
   Niklas Richardson
   Prismix Ltd
 
   Flex and ColdFusion Experts!
 
 
 
   --
   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.
 
   
 
 
 


 --
 Niklas Richardson
 Prismix Ltd

 Flex and ColdFusion Experts!


 --
 Flexcoders Mailing List
 FAQ: 

Re: [flexcoders] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Niklas Richardson
Thanks Philippe!

On 18/11/05, Niklas Richardson [EMAIL PROTECTED] wrote:
 You are da man! :)

 Sweet.  Must be some weird instantiation thing why .icon didn't work?

 Cheers

 Niklas


 On 18/11/05, Philippe Maegerman [EMAIL PROTECTED] wrote:
  Have you tried accd.getHeaderAt(0)['icon'] ?
 
  
 
  From: flexcoders@yahoogroups.com on behalf of Niklas Richardson
  Sent: Fri 18/11/2005 12:32
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders] Accordion Header Icons - Changing during runtime
 
 
  Hi Jim,
 
  I gave that a shot and still to no avail.  Still get the error:
 
  There is no property with the name 'icon'.
 
  Oh well.  Perhaps I need to figure out these custom header classes!
 
  Thanks for the help.
 
  Cheers
 
  Niklas
 
 
 
  On 17/11/05, Jim Phelan [EMAIL PROTECTED] wrote:
  
  
  
   The custom class might not benefit you (it has some other features like a
   close button), but try this:
  
  
  
   Button(accd.getHeaderAt(0)).icon
  
  
  

  
  
   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
   Behalf Of Niklas Richardson
Sent: Thursday, November 17, 2005 11:51 AM
  
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Accordion Header Icons - Changing during 
   runtime
  
  
  
   Unfortunately I tried:
  
accd.getHeaderAt(0).icon
  
and it doesn't work.  It says icon does not exist.  I think that's
because getHeaderAt() returns a UIComponent object.
  
Would you be willing to share your custom header class?
  
Thanks
  
Niklas
  
On 17/11/05, Jim Phelan [EMAIL PROTECTED] wrote:



 Hey Niklas,



 I've done this before. I'm accomplishing it with a custom class for the
 header, but if all you need is the icon you should be able to use
   something
 like accd.getHeaderAt(0).icon = iconLinkage Since AccordianHeader is 
   a
 subclass of Button, it should work just fine.



 Jim



  


 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Niklas Richardson
  Sent: Thursday, November 17, 2005 11:24 AM
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders] Accordion Header Icons - Changing during
   runtime



 Crapola!  So you'd need some custom header class huh?

  Thanks.

  Niklas

  On 17/11/05, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote:
The icon is embedded at compile time and may not be changed
   dynamically.
But then I could be wrong!
  
Sree
  
  
Niklas Richardson wrote:
Hi all,
  
I have hunted high and low for an answer to this and I've played
around with accordion.getHeaderAt(), getChildAt(), but to no avail.
  
Basically, I want to change the icon for a specific accordion 
   header
depending on a certain state of that child.
  
There doesn't seem to be a way at runtime to change the icon.
  
Does anyone know a solution to this?
  
Thanks.  Your help is much appreciated.
  
Cheers
  
Niklas
  
  
  
--
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.
  

  


  --
  Niklas Richardson
  Prismix Ltd

  Flex and ColdFusion Experts!



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

  



  
  
--
Niklas Richardson
Prismix Ltd
  
Flex and ColdFusion Experts!
  
  
  
--
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.
  

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread Aldo Bucchi
Hi Jesse,

And how does that compare to the old school Flash RIA samurais, like yourself?

On 11/18/05, JesterXL [EMAIL PROTECTED] wrote:
 Additionally, I know of those getting $40 to $70 as well.  Depends on
 experience, the company, and budget as well.

 - Original Message -
 From: Aldo Bucchi [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Friday, November 18, 2005 9:43 AM
 Subject: [flexcoders] Poll: Flex developer US$ rate?


 Hi all,

 Any ideas on what a Flex developer is currently charging in the US?


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








 --
 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 ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Niklas Richardson
Manish - nope, it says it can't find it.  However, the solution
Philippe suggested works great.

The only thing you need to do is to have a 1x1 pixel transparent
spacer to remove the icon as setting the icon to null or undefined
doesn't remove the icon.

Well, that was my hack anyways! ;)

Thanks again for all the help everyone!


On 18/11/05, Niklas Richardson [EMAIL PROTECTED] wrote:
 Thanks Philippe!

 On 18/11/05, Niklas Richardson [EMAIL PROTECTED] wrote:
  You are da man! :)
 
  Sweet.  Must be some weird instantiation thing why .icon didn't work?
 
  Cheers
 
  Niklas
 
 
  On 18/11/05, Philippe Maegerman [EMAIL PROTECTED] wrote:
   Have you tried accd.getHeaderAt(0)['icon'] ?
  
   
  
   From: flexcoders@yahoogroups.com on behalf of Niklas Richardson
   Sent: Fri 18/11/2005 12:32
   To: flexcoders@yahoogroups.com
   Subject: Re: [flexcoders] Accordion Header Icons - Changing during runtime
  
  
   Hi Jim,
  
   I gave that a shot and still to no avail.  Still get the error:
  
   There is no property with the name 'icon'.
  
   Oh well.  Perhaps I need to figure out these custom header classes!
  
   Thanks for the help.
  
   Cheers
  
   Niklas
  
  
  
   On 17/11/05, Jim Phelan [EMAIL PROTECTED] wrote:
   
   
   
The custom class might not benefit you (it has some other features like 
a
close button), but try this:
   
   
   
Button(accd.getHeaderAt(0)).icon
   
   
   
 
   
   
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Niklas Richardson
 Sent: Thursday, November 17, 2005 11:51 AM
   
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Accordion Header Icons - Changing during 
runtime
   
   
   
Unfortunately I tried:
   
 accd.getHeaderAt(0).icon
   
 and it doesn't work.  It says icon does not exist.  I think that's
 because getHeaderAt() returns a UIComponent object.
   
 Would you be willing to share your custom header class?
   
 Thanks
   
 Niklas
   
 On 17/11/05, Jim Phelan [EMAIL PROTECTED] wrote:
 
 
 
  Hey Niklas,
 
 
 
  I've done this before. I'm accomplishing it with a custom class for 
the
  header, but if all you need is the icon you should be able to use
something
  like accd.getHeaderAt(0).icon = iconLinkage Since AccordianHeader 
is a
  subclass of Button, it should work just fine.
 
 
 
  Jim
 
 
 
   
 
 
  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
  Behalf Of Niklas Richardson
   Sent: Thursday, November 17, 2005 11:24 AM
   To: flexcoders@yahoogroups.com
   Subject: Re: [flexcoders] Accordion Header Icons - Changing during
runtime
 
 
 
  Crapola!  So you'd need some custom header class huh?
 
   Thanks.
 
   Niklas
 
   On 17/11/05, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote:
 The icon is embedded at compile time and may not be changed
dynamically.
 But then I could be wrong!
   
 Sree
   
   
 Niklas Richardson wrote:
 Hi all,
   
 I have hunted high and low for an answer to this and I've played
 around with accordion.getHeaderAt(), getChildAt(), but to no 
avail.
   
 Basically, I want to change the icon for a specific accordion 
header
 depending on a certain state of that child.
   
 There doesn't seem to be a way at runtime to change the icon.
   
 Does anyone know a solution to this?
   
 Thanks.  Your help is much appreciated.
   
 Cheers
   
 Niklas
   
   
   
 --
 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.
   
 
   
 
 
   --
   Niklas Richardson
   Prismix Ltd
 
   Flex and ColdFusion Experts!
 
 
 
   --
   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 

[flexcoders] default sorting for DataGrid

2005-11-18 Thread Drew Hite
Hi,
I'm using a remote object to populate a DataGrid with
an array of custom java objects.  When the DataGrid is
first rendered, I want to sort its records using an
int field from the java object.  However, this grid is
always initially sorted as if the int field were of
type String.  Clicking on the column header rectifies
this problem so the DataGrid seems to realize that the
values in that column are numeric.  Additionally, I've
verified that the remote object gets a properly sorted
array.  Can anyone tell me what's going on?  Any
suggestions on how to solve this problem?  I've
experimented with adding functions to sort the grid
after certain events, but I can't find the right data
grid event.  I'm a newbie.  My apologies in advance
for my ignorance.

Thanks,
Drew




__ 
Start your day with Yahoo! - Make it your home page! 
http://www.yahoo.com/r/hs


 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Flex2 : databinding itemrenders

2005-11-18 Thread Michael Hansen



Thank you Manish!

I'm not getting any warnings. :(

I don't quite follow your suggestion. Sorry for being stupid, but all
this is semi new to me :) Could you elaborate a bit on your
answer?

Also do you guys have a public bug tracking running somewhere. I would
save us all (both you and me) some time. (i also got found 7 or 8 bugs
i would like verify, before submitting)

Thanks again, and have a nice weekend.

cheers

-michael


On 11/18/05, Manish Jethani [EMAIL PROTECTED] wrote:




On 11/18/05, Michael Hansen [EMAIL PROTECTED] wrote:

 The thumbnail.mxml consists of an vbox with an image and a label like so:

 mx:Vbox
 mx:Image source=./{dataObject.file /
 mx:Label text={dataObject.file}/
 /mx:VBox

 My problem is that if I change the underlying
model(ItemList) for the HorizontalList, the label text in the thumbnail
render does not reflect the change!?

The Alpha 1 build has a bug: dataObject is not bindable (aren't you
getting a warning?). I believe we've fixed it now, but for the time
being you have to write a setter for the 'dataObject' property in your
custom cell renderer.

Manish







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



  









Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
Not sure; Flash got more and more complex in the amount of markets it went 
into, so rather than stabilizing, it work got worse.

I've heard of rates from $20/hr; I myself have worked for less on cool as 
hell projects to the flipside of salaries exceeding 100k.  So... no clue, 
bro.

Flex is a lot more straightforward, so easier to price.  You either have 
experience, or don't, you've either done Flex projects or you haven't. 
Black and white terms make things easier to price.

- Original Message - 
From: Aldo Bucchi [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, November 18, 2005 10:28 AM
Subject: Re: [flexcoders] Poll: Flex developer US$ rate?


Hi Jesse,

And how does that compare to the old school Flash RIA samurais, like 
yourself?

On 11/18/05, JesterXL [EMAIL PROTECTED] wrote:
 Additionally, I know of those getting $40 to $70 as well.  Depends on
 experience, the company, and budget as well.

 - Original Message -
 From: Aldo Bucchi [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Friday, November 18, 2005 9:43 AM
 Subject: [flexcoders] Poll: Flex developer US$ rate?


 Hi all,

 Any ideas on what a Flex developer is currently charging in the US?


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








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



--
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 ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/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] Poll: Flex developer US$ rate?

2005-11-18 Thread David Mendels
Hi,

I know of folks charging from $150-$300 per hour for design and
architecture work on Flex projects.

Rates vary very widely it seems.

-David



 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL
 Sent: Friday, November 18, 2005 10:14 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Poll: Flex developer US$ rate?
 
 Additionally, I know of those getting $40 to $70 as well.  
 Depends on experience, the company, and budget as well.
 
 - Original Message -
 From: Aldo Bucchi [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Friday, November 18, 2005 9:43 AM
 Subject: [flexcoders] Poll: Flex developer US$ rate?
 
 
 Hi all,
 
 Any ideas on what a Flex developer is currently charging in the US?
 
 
 --
 : 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
 
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- 
 Get fast access to your favorite Yahoo! Groups. Make Yahoo! 
 your home page
 http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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 ~-- 
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/VpTY2A/lzNLAA/yQLSAA/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: This *really* Sucks!

2005-11-18 Thread joao_m_fernandes
Hi,
 
I just want to share with you that we managed to fix the MSI
installation for Flash Player 8 when upgrading from FP7.
 
The problem was related to some reg keys missing during the upgrade.
We made upgrades from 6 to 8 without problems but from FP7 to FP8m 6
keys were missing.
 
Here is our reg file to fix it.
 
Windows Registry Editor Version 5.00
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6D5140C1-7436-11CE-8034-00AA006009FA}]
@=IServiceProvider
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6D5140C1-7436-11CE-8034-00AA006009FA}\NumMethods]
@=4
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6D5140C1-7436-11CE-8034-00AA006009FA}\ProxyStubClsid32]
@={B8DA6310-E19B-11D0-933C-00A0C90DCAA9}
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A6EF9860-C720-11D0-9337-00A0C90DCAA9}]
@=IDispatchEx
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A6EF9860-C720-11D0-9337-00A0C90DCAA9}\NumMethods]
@=15
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A6EF9860-C720-11D0-9337-00A0C90DCAA9}\ProxyStubClsid32]
@={C5598E60-B307-11D1-B27D-006008C3FBFB}
 
Hope it can help,
 
João Fernandes

Secção de Desenvolvimento

Departamento de Informática





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

 Er, based on the errors it's one of the Flash8's, so is it debug or
 release?
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Matt Chotin
 Sent: Friday, October 28, 2005 10:44 AM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] This *really* Sucks!
 
  
 
 I've gotten some engineers involved and will keep you guys posted.
 
  
 
 Do you have the Flash85.ocx sitting in
 c:\windows\system32\Macromed\Flash?  If so make sure to regsvr32 /u
 Flash85.ocx and then try regsvr32 Flash.ocx again.
 
  
 
 Also please remind me which OCX you're trying to install: Flash 7
 Release, Flash 7 Debug, Flash 8 Release, Flash 8 Debug?
 
  
 
 Matt
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Robert Thompson
 Sent: Thursday, October 27, 2005 8:38 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] This *really* Sucks!
 
  
 
 I'm getting very frustrated with not being able to
 test a production site this evening in IE.
 
 I need to test in all browsers and IE simply will not
 work any longer for the Flash Control.
 
 If you could have the group you were referring to Matt
 that is checking into this get back to this list I'd
 appreciate it.
 
 Thanks!  If I was in the market for investing, I'd be
 buying Adobe/Macromedia stock...I just think you guys
 are a great company.
 
 
   
 
 __ 
 Yahoo! Mail - PC Magazine Editors' Choice 2005 
 http://mail.yahoo.com
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 
 
 
 
 SPONSORED LINKS 
 
 Web site design development
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+
 site+design+developmentw2=Computer+software+developmentw3=Software+des
 ign+and+developmentw4=Macromedia+flexw5=Software+development+best+prac
 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=Software
 +design+and+developmentw4=Macromedia+flexw5=Software+development+best+
 practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ  
 
 Macromedia flex
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+
 developmentw2=Computer+software+developmentw3=Software+design+and+deve
 lopmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=1
 66.sig=OO6nPIrz7_EpZI36cYzBjw  
 
 Software development best practice
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practice;
 w1=Web+site+design+developmentw2=Computer+software+developmentw3=Softw
 are+design+and+developmentw4=Macromedia+flexw5=Software+development+be
 st+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw  
 
  
 
  
 
 
 
 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 ~-- 
1.2 

RE: [flexcoders] This *really* Sucks!

2005-11-18 Thread João Fernandes





Hi,

I just want to share with you that we managed to fix the 
MSI installation for Flash Player 8 when upgrading from FP7.

The problem was related to some reg keys missing during the 
upgrade. We made upgrades from 6 to 8 without problems but from FP7 to FP8m 6 
keys were missing.

Here is our reg file to fix it.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6D5140C1-7436-11CE-8034-00AA006009FA}]@="IServiceProvider"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6D5140C1-7436-11CE-8034-00AA006009FA}\NumMethods]@="4"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6D5140C1-7436-11CE-8034-00AA006009FA}\ProxyStubClsid32]@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A6EF9860-C720-11D0-9337-00A0C90DCAA9}]@="IDispatchEx"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A6EF9860-C720-11D0-9337-00A0C90DCAA9}\NumMethods]@="15"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A6EF9860-C720-11D0-9337-00A0C90DCAA9}\ProxyStubClsid32]@="{C5598E60-B307-11D1-B27D-006008C3FBFB}"

Hope it can help,


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



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Matt 
ChotinSent: sexta-feira, 28 de Outubro de 2005 18:44To: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] This *really* 
Sucks!


I’ve gotten some 
engineers involved and will keep you guys posted.

Do you have the 
Flash85.ocx sitting in c:\windows\system32\Macromed\Flash? If so make sure 
to regsvr32 /u Flash85.ocx and then try regsvr32 Flash.ocx 
again.

Also please remind me 
which OCX you’re trying to install: Flash 7 Release, Flash 7 Debug, Flash 8 
Release, Flash 8 Debug?

Matt





From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert ThompsonSent: Thursday, October 27, 2005 8:38 
PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] This *really* 
Sucks!

I'm getting very frustrated with not being able 
totest a production site this evening in 
IE.I need to test in all 
browsers and IE simply will notwork 
any longer for the Flash Control.If you could have the group you were referring to 
Mattthat is checking into this get 
back to this list I'dappreciate 
it.Thanks! If I was in 
the market for investing, I'd bebuying Adobe/Macromedia stock...I just think you 
guysare a great 
company.   
__ 
Yahoo! Mail - PC Magazine Editors' 
Choice 2005 http://mail.yahoo.com





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





  




  
  
  YAHOO! GROUPS LINKS



  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] Poll: Flex developer US$ rate?

2005-11-18 Thread Carson Hager
This is more in line with what we see.  Experience is key here.  If you
don't have a number of deployed applications in production with a proven
and repeatable methodology for getting there, these rates won't happen.
Clearly it also depends upon the kind of customer you're dealing with.
This is attainable with large, private sector companies.  In the public
sector, unless you're the vendor, GSA and others like it will simply
reject your labor categories and tell you they need a better price.


Carson


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

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of David Mendels
Sent: Friday, November 18, 2005 8:07 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Poll: Flex developer US$ rate?

Hi,

I know of folks charging from $150-$300 per hour for design and
architecture work on Flex projects.

Rates vary very widely it seems.

-David



 -Original Message-
 From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL
 Sent: Friday, November 18, 2005 10:14 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Poll: Flex developer US$ rate?
 
 Additionally, I know of those getting $40 to $70 as well.  
 Depends on experience, the company, and budget as well.
 
 - Original Message -
 From: Aldo Bucchi [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Friday, November 18, 2005 9:43 AM
 Subject: [flexcoders] Poll: Flex developer US$ rate?
 
 
 Hi all,
 
 Any ideas on what a Flex developer is currently charging in the US?
 
 
 --
 : 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
 
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- Get fast access to your favorite Yahoo! 
 Groups. Make Yahoo!
 your home page
 http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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 ~--
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/VpTY2A/lzNLAA/yQLSAA/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 ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/u8TY5A/tzNLAA/yQLSAA/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] Date column sorting in datagrid

2005-11-18 Thread Sreejith Unnikrishnan






This has been answered before on this forum.
Try a search on http://www.mail-archive.com/flexcoders%40yahoogroups.com

Anyways, read the solution at http://weblogs.macromedia.com/mesh/archives/2005/04/sorting_date_fi.cfm

yasovardhan [EMAIL PROTECTED] wrote:

  Hi All,
  
  I have a datagrid in which out of five columns 3
columns are of date type.
  
  I have formatted date to "DD-MM-".
  
  I am unable to sort these columns.
  
  Can you please suggest mesome method that can be
used to sort the datagrid columns of type "Date".
  
  Thanks andRegards,
  Yasu.
   
   Yahoo!
FareChase - Search multiple travel sites in one click.








--
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] New Flex version of web site, and whitepaper available

2005-11-18 Thread Dave Wolf
There have been a fair number of threads recently looking for examples
of Flex web applications and sites.  That's pretty natural given how
nascent this area is and how the technology is so deeply focused on
the user experience that people crave to be able to experience it
themselves.

We've been working very hard over the last couple of weeks to get as
many of our projects online and available for folks to look at.  As a
first step we wanted to point folks to our own website.  The site was
built in Flex, has both a public face as well as an entire
internal/support facing component.  The site shows off security
integration, single sign on across apps, dynamic data driven
presentation etc.

http://www.cynergysystems.com

But experiencing a demo is only solves half the problem.  The next
logical question is *how* did you build it, and what can I learn from
that.  To help out we've posted a whitepaper on our site that walks
through how we designed it, how it works, code snippets etc.

http://www.cynergysystems.com/pages/how/technologies/flex/index.html

We're not done though.  We're actively settling down our demo machine
and will be posting sanitized versions of some of the Flex
applications we've developed for our clients.  We should have that up
and going in a week maybe.  In the meantime we did also post some
Captivate movies we did of some of the applications.  The first one we
have is LifeCoach which was a MAX award finalist.

http://www.cynergysystems.com/pages/how/case/videos/crisiscoach/crisiscoach.html?inframe=

I'll post again very soon when we get the live demo server up.  I
think the community needs to have access to see what's possible, and
then to learn from what's been already done.  We're very committed to
making that happen.

-- 
Dave Wolf
Cynergy Systems, Inc.
Macromedia Flex Alliance Partner
http://www.cynergysystems.com

Email:  [EMAIL PROTECTED]
Office: 866-CYNERGY





 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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: Adding Item to a ComboBox

2005-11-18 Thread yaagcur
Thanks Manish. I appreciate your logic re the prompt and am keen to do
it the 
 model-view architecture way. I just do not know how to handle the
result of the CF query
As I explained at the beginning of the thread I want to replace my
current 
mx:ArrayCollection id=cities
source={mx.utils.ArrayUtil.toArray(ContactService.getCities.result)} /
approach with one that allows me to do addItem

My attempts to date have ended in failure
e.g.

public function citiesResultHandler(result:Object) {

public var myIList:IList = new
ArrayCollection({mx.utils.ArrayUtil.toArray(ContactService.getCities.result)});

// The function to change the collection, and therefore the Array.
myIList.addItemAt(All Cities, 0);

}

Any chance you could point out the errors in the above function

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

 On 11/18/05, yaagcur [EMAIL PROTECTED] wrote:
 
  Several points of clarification please
 
  1) OK so as I understand it, in the final version of Flex 2 prompt
will
  just be for info and will not be bindable, right?
  If so, is it being replaced by an alternative for easy addition of
  another item?
 
 Yes, you can call addItem on the ComboBox's data provider.  That's the
 easiest way.
 
  2) Using the current alphs I can add an item e.g. 'All States'
 However, when I try to add it to a combobox which has been
  populated from a webservice and uses a labelField=STATE then I get
  the error
  'Property STATE not found on Object and there is no default value'
 
 Yes, that's a bug I've seen and fixed.  The fix was to make the prompt
 property behave like a prompt rather than like a call to addItem.
 
  3) Is it possible to add more than one prompt e.g Western States,
  Eastern States and if so how
 
 What's the use case?  There's only enough space to display one prompt
 on the ComboBox.  You _could_ have a multiline prompt if you want, but
 it's going to be one prompt in the end (not multiple prompts).
 
  4) Would I be better off going back to using a function and ,if so,
  how does the post in my original code need to be amended
 
 If you want to add an item to the ComboBox, you have to add one to the
 data provider.  That's the model-view architecture, that's how it
 works.
 
 Manish







 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/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] Poll: Flex developer US$ rate?

2005-11-18 Thread Tim Beynart
Jesse, $20/hr is what I pay people to dig holes in my yard! Anyone in
the US with development skills working for that is depressing the market
and seriously shortchanging themselves.

Since FLEX is aimed directly at the enterprise market and is
fundamentally a presentation-tier platform, you could use Java/.NET UI
developer rates as a rough guide. As I investigate the FLEX market, it
appears to be closely tied to the Java market since many Java guys are
adopting FLEX. I just took a FLEX class where I was the only Flash guy
in a room full of Java people, and the assumption was that a FLEX
developer would have deep Java experience.  

As one of the old school Flash guys, I see FLEX paying more than Flash
development for someone who knows AS2.0 inside and out. Flash seems to
top out at about $85 an hour for contract in the US on large projects,
and Flex trumps that just in the few jobs I have looked at (for the NYC
area).

Of course salary is a whole other beast, and I have no experience there
due to my allergy to W2 forms.

Tim


 Yahoo! Groups Sponsor ~-- 
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/VpTY2A/lzNLAA/yQLSAA/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: Sho - anything wrong with a Class Example app like BeatPort -- RE: [flexcoders] Re: Links to Nice-looking Flex Apps

2005-11-18 Thread Jason Weiss










I guess best should be a
relative term and put into context. The Fortune 1500 companies that we
work with would likely be very disappointed if we presented them with a UI like
BeatPort for a mission critical enterprise-class application. 



Let me stress upfront that my point is not
to detract from what surely was a lot of work by the developers of BeatPort, work
Im sure they are proud of, but to point out that different class
applications expect different levels of sophistication and standards. For
an application focused a niche music market, the BeatPort UI might be
categorized as a best-in-class solution, especially if it were compared to the
rest of its competitive field. Im not familiar with their target
market nor am I interested in the value-proposition that their site offers, so
before flaming me please take that into account.



However, as a published author, lecturer
and software architect on systems in production that have literally generated
billions of dollars in revenue for my clients, including Crisis Coach that was
nominated for a MAX award at this years conference, my experience and client
interactions give me the insight to believe that enterprise customers will lean
toward the other end of the UI spectrum. Our customers insist on clean and
functional interfaces. Soothing color schemes, not neon green.
Breadcrumbs and navigational cues- not things that look like buttons that serve
no apparent purpose (like the sub-navigation button on their main
screen). With this in mind, a multi-national billion dollar+ insurance
company or financial institution looking to write a customer facing application
would neither consider the BeatPort UI as a standard nor as a target to aim
for. The interface is far too busy for Joe Customer who
looks to the banks online services to get things done, like pay bills. 



Enterprises respect simple and intuitive
interfaces for a reason- theyve spent millions over the years on case
studies and focus groups that back up their position. Again, Im
speaking constructively and in-context of the customers we service and not
trying to detract from the hard work of the BeatPort developers. But
before we lay a blanket statement out there that BeatPort is the best example
of Flex development we should consider where Macromedia is targeting Flex and
where the growth in the Flex market will come fromFortune 1500 customers
writing customer facing applications. In this context, BeatPort is a poor
representation in my opinion of what Flex is truly capable of. As a final
example to support my premise, consider the Flex application development by Yahoo!
Maps. Very clean lines. Very distinct functions, soothing color
scheme and an interface that is very functional, yet still sexy enough to
scream lets see you do this with DHTML baby. Thats
the UI goal I shoot for when I work with my customers, and to me, a Yahoo! Maps
or a Crisis Coach UI sets the bar for how Flex UIs should be written.



Just one mans opinion 



Jason Weiss







__ 
Jason Weiss 
Cynergy Systems, Inc. 
Macromedia Flex Alliance
Partner 
http://www.cynergysystems.com 


Email: jasonDOTweissATcynergysystemsDOTcom__nospam 
Office: 866-CYNERGY 















From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Thompson
Sent: Thursday, November 17, 2005
5:39 PM
To: flexcoders@yahoogroups.com
Subject: Sho - anything wrong with
a Class Example app like BeatPort -- RE: [flexcoders] Re: Links to
Nice-looking Flex Apps







Very, very nice application.











I think this is the kind of Standard of Quality we are all shooting
for.











The more Video Tutorials Sho and others do that allow us to keep a
standards practice formula for shooting for this kind of quality in each our
own specific target applications, the better the barrage of FLEX2 apps that
will promote the technology.











This is the first complete app. I've seen that I can understand,
conceptually, it's back-pinnings. I saw harley davidson and that's very
nice too. HD and BeatPort -- the best examples thus far.











Anything wrong with a Class Example app. like Mickey,
sorry, Microsoft has done in the past when trying to promote a new technology
(i.e. they came up with the online Winter Sports store I believe and it was a
pretty good example of ASP and Commerce server when it first came out a number
of years ago; granted Commerce Server was ridiculously overly complex; more
than it needed to be).











-r






Merrill,
Jason [EMAIL PROTECTED] wrote:









Sweet  thanks!













Jason Merrill | E-Learning
Solutions | icfconsulting.com 





























From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com] On Behalf Of edeustace
Sent: Thursday, November 17, 2005
3:27 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Links to
Nice-looking Flex Apps













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

 

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread Aldo Bucchi
Ok, this is one of those comments that usually get me pointed out as
non-serious. But, I am not serious at all, so who cares...

I believe that these pricing differences will be sustained over time,
and probably even increase. That's exactly why i asked the question...
I wanted to see the current range.

My bet is that this happens when the craftsman is not limited by the
technology ( which would draw a common line for the vast majority ),
but is presented with a vast horizon and draws his own boundaries.
Much like music, or movies.

Eventually, we will see geniality show trough in this new era of the
web than ever before, when we were all consumed at some point while
climbing up the wall of div's, action's, jsession,
createMovieClip(), quirksmode, etc.

So, I invite you guys to call yourselves Flex Artists!
I don't see any wall in close range
Unless, of course, me or my team could score an A in all of the
following aspects:

- At least one heay weight server side tech
- Usability
- UI design
- Relevant development methodologies
- XML, CSS and other accessories
- Team work
- MVC and other patterns
- Creativity, Vision ( and the ability to bring it to the ground )
- Assertivity, communicational, and educational skills ( to wipe off
10 years of obsolete webpage paradigm from the customer's mind,
without scaring him off, and get to the real requirements )
- Graphical talent
- Video / Media expertise
- Flex / Flash platform technical expertise
- Am I leaving something out?

PS. granted that the market still has to configure itself. But, hey,
I'm just skipping the boring part ;)

jaja
this is my no-coffee state, after lunch, falling asleep

On 11/18/05, JesterXL [EMAIL PROTECTED] wrote:
 $100

 - Original Message -
 From: Aldo Bucchi [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Friday, November 18, 2005 9:43 AM
 Subject: [flexcoders] Poll: Flex developer US$ rate?


 Hi all,

 Any ideas on what a Flex developer is currently charging in the US?


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








 --
 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 ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
...well, there goes that assumption...  :: bangs head ::

- Original Message - 
From: Carson Hager [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, November 18, 2005 11:39 AM
Subject: RE: [flexcoders] Poll: Flex developer US$ rate?


This is more in line with what we see.  Experience is key here.  If you
don't have a number of deployed applications in production with a proven
and repeatable methodology for getting there, these rates won't happen.
Clearly it also depends upon the kind of customer you're dealing with.
This is attainable with large, private sector companies.  In the public
sector, unless you're the vendor, GSA and others like it will simply
reject your labor categories and tell you they need a better price.


Carson


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

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of David Mendels
Sent: Friday, November 18, 2005 8:07 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Poll: Flex developer US$ rate?

Hi,

I know of folks charging from $150-$300 per hour for design and
architecture work on Flex projects.

Rates vary very widely it seems.

-David



 -Original Message-
 From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL
 Sent: Friday, November 18, 2005 10:14 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Poll: Flex developer US$ rate?
 
 Additionally, I know of those getting $40 to $70 as well.  
 Depends on experience, the company, and budget as well.
 
 - Original Message -
 From: Aldo Bucchi [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Friday, November 18, 2005 9:43 AM
 Subject: [flexcoders] Poll: Flex developer US$ rate?
 
 
 Hi all,
 
 Any ideas on what a Flex developer is currently charging in the US?
 
 
 --
 : 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
 
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- Get fast access to your favorite Yahoo! 
 Groups. Make Yahoo!
 your home page
 http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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 ~--
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/VpTY2A/lzNLAA/yQLSAA/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



 



 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
If I went to NYC, I'd double my rates; I couldn't survive on 85 an hour 
there... at least, from what I've seen from cost of living.

- Original Message - 
From: Tim Beynart [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, November 18, 2005 12:17 PM
Subject: RE: [flexcoders] Poll: Flex developer US$ rate?


Jesse, $20/hr is what I pay people to dig holes in my yard! Anyone in
the US with development skills working for that is depressing the market
and seriously shortchanging themselves.

Since FLEX is aimed directly at the enterprise market and is
fundamentally a presentation-tier platform, you could use Java/.NET UI
developer rates as a rough guide. As I investigate the FLEX market, it
appears to be closely tied to the Java market since many Java guys are
adopting FLEX. I just took a FLEX class where I was the only Flash guy
in a room full of Java people, and the assumption was that a FLEX
developer would have deep Java experience.

As one of the old school Flash guys, I see FLEX paying more than Flash
development for someone who knows AS2.0 inside and out. Flash seems to
top out at about $85 an hour for contract in the US on large projects,
and Flex trumps that just in the few jobs I have looked at (for the NYC
area).

Of course salary is a whole other beast, and I have no experience there
due to my allergy to W2 forms.

Tim



--
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 ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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: Cairngorm is bad?

2005-11-18 Thread Anatole Tartakovsky





Mykola,

There is a very thin line in the process between 
methodology and outcome. More often then not "how to think" becomes "what to 
think". I am merely making a point that creative people should choose the tools 
to automate labor then the thinking itself - even ifthe later 
iseasier.

 Let us distance it in unrelated 
area - the one I actually witnessed recently 

You watch high-tech medical 
doctor lately doing diagnosis. Heasks series of questions, fills the 
answers into computer and prescribes drugs / reads diagnosis that were generated 
by "expert system". From the practice owner prospective he does what he suppose 
to do minimizing insurance and other risks with possible ineffectiveness - but 
in very predictable, easy to schedule process. Best of all, he is easily 
replaceable. And yes, the process is very clean, repeatable (assuming that the 
patient's spec, ie his ability to diagnose himself, does not improve/change), 
guaranteed tocover everything(patient told you that he can not think 
of anything else, and neither can or should the doctor), supported by unit 
testing of few key parameters like blood test, etc. Furthermore, you can scale 
it, separate question asking process from data entry from diagnosis sign-off, 
etc making process as as formal as it could and arguably should be. 


And yet some people 
whohave some unexplained trust to "service networks"or have 
historically been in the "process" too longoption for "old way" - 
with custom tailored diagnostics, fewer drugs, non-traditional treatments - all 
based on experience / consensus of contradictory methodologies? There are huge 
disadvantages inmanaging these people and the process!

 It is a matter of preference. 
Everything else follows. I have seen extremely capable programmers falling in 
love with patterns/frameworks. That coincided with Internet revolution when 
instead of "surgical teams" of 5-6 people they had to lead 50-60 "bodies" in 
rapidly growing bodyshops. Most of them reverted to the previous model after the 
bust, however, the created structures are on the pattern/framework path as the 
only way they know and that undeniably works. It's a big world with enough 
places for everyone, as long as"methodology" is not enforced as a religion 
or such.

 Next, testing methodology. It bases actually has been 
explored in 70s before "structural programming" came around (and that was before 
"object-oriented" programming). At that time 2 most populare methodologies of 
coding where "full permutation" and "what if not" approaches. All possible cases 
were suppose to be enumerated and coded with "if" (framework 1) or "if not" 
(framework 2) statements. Research on which structural programming was done 
showed that grood programmers whould write those "if" statements correctly in 
51% of the cases and bad programmers would get49% right. And of course 
there is "Murphy law" that "the only one case happening in the reality is one 
not covered". One of theoutcomes of structural programming that is that 
reliable programs have to contain the least amount of "if" statements 
(preferably 0) (hence structured) - the whole frameworks basis was essentially 
denounced. (Of course, structural programming was denounced by OO, and so on). 
The point being that there are limitation to the unit testing and they have been 
exceeded in 70s.

 Unit testing is more of 
assurance/progress managementtool for the management then anything. It 
does catch crude bugs (like refactoring ones within relativel small unit) - the 
ones that are based on negligence and human factors listed in "if" 
methodology.It does not solve bigger problem that manifests itself in 
large scaleapps.You need system test on the largest user base 
possible as a real measurement - andto make surethat "all 
permutation" approach on event driven really RICH application will work you need 
disproportional amount of testers/time. While I would make strong case to have 
at least 2 testers for large systems - preferably with no programming or subject 
matter experience - per developer, in reality testingof large systems has 
not been guaranteed by any means. It takes automated bug reporting, 
maintenance teams, time, effort, commitment, money - and I would strongly 
recommend automating bug tracking from real users in software over any other 
method of collecting information.

Finally, refactoring 
in AS.Let us see all the places in recent Java programs that use hash 
maps. Let us make sure that names of objects are not known in advance and are 
not in constants. Wrap each use ofreturned values from hashmap in Try{} 
finally{} statement.How comfortableis thatnow? Will 
unitcatch all these errors? Does the need for better "hashmap" seem more 
plausable?


Sincerely,
Anatole
[EMAIL PROTECTED]

- Original Message - 

  From: 
  Mykola 
  Paliyenko 
  To: flexcoders@yahoogroups.com 
  Sent: Friday, November 18, 2005 3:33 
  AM
  Subject: Re: [flexcoders] Re: Cairngorm 
  

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
Besides, kind of hard to ask for $300 an hour when you have... oh, NOTHING 
on your resume to prove yo don't suck.  I'll do whatever it takes to 
succeed, and if that meant taking jack money to get some cool projects on my 
resume, so be it.  Today, I don't need anymore, but back then, I'd seriously 
question wtf else you expected me to do.

- Original Message - 
From: Tim Beynart [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, November 18, 2005 12:17 PM
Subject: RE: [flexcoders] Poll: Flex developer US$ rate?


Jesse, $20/hr is what I pay people to dig holes in my yard! Anyone in
the US with development skills working for that is depressing the market
and seriously shortchanging themselves.

Since FLEX is aimed directly at the enterprise market and is
fundamentally a presentation-tier platform, you could use Java/.NET UI
developer rates as a rough guide. As I investigate the FLEX market, it
appears to be closely tied to the Java market since many Java guys are
adopting FLEX. I just took a FLEX class where I was the only Flash guy
in a room full of Java people, and the assumption was that a FLEX
developer would have deep Java experience.

As one of the old school Flash guys, I see FLEX paying more than Flash
development for someone who knows AS2.0 inside and out. Flash seems to
top out at about $85 an hour for contract in the US on large projects,
and Flex trumps that just in the few jobs I have looked at (for the NYC
area).

Of course salary is a whole other beast, and I have no experience there
due to my allergy to W2 forms.

Tim



--
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 ~-- 
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/VpTY2A/lzNLAA/yQLSAA/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] Poll: Flex developer US$ rate?

2005-11-18 Thread Hans Omli
Rates vary widely depending on type of gig (consulting, contractor, or
employee), industry, location, depth of knowledge in software engineering,
experience with flash and other related technologies, and so on.  I'd expect
a highly experienced Flex developer that runs a consulting firm to bring in
$150 to $300/hr or more.  On the other hand, I'd expect a college student
using Flex to create a web app for a local small business to make $15 to
$30/hr.
 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Aldo Bucchi
Sent: Friday, November 18, 2005 6:44 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Poll: Flex developer US$ rate?

Hi all,

Any ideas on what a Flex developer is currently charging in the US?


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


 Yahoo! Groups Sponsor ~-- Get
fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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 ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Defining default value for missing dynamic properties (doesNotUnderstand:)?

2005-11-18 Thread jruud68
For a dynamic object 'MyObject', does actionscript support returning a 
default value for missing properties? For example, I'd like:
MyObject.MissingProperty to return there is no such property, if 
MissingProperty has not been added to MyObject.

(This would be similar to implementing a 'doesNotUndertand:' method, 
that would be invoked if the property is missing, in Smalltalk)

Thanks, John





 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] How do you convert a .pdf file to an .swf file

2005-11-18 Thread nostra72




Do you just save the .pdf file as a .swf file or do you do something else?






--
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] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
Dude, I want to run a firm now.

- Original Message - 
From: Hans Omli [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, November 18, 2005 1:55 PM
Subject: RE: [flexcoders] Poll: Flex developer US$ rate?


Rates vary widely depending on type of gig (consulting, contractor, or
employee), industry, location, depth of knowledge in software engineering,
experience with flash and other related technologies, and so on.  I'd expect
a highly experienced Flex developer that runs a consulting firm to bring in
$150 to $300/hr or more.  On the other hand, I'd expect a college student
using Flex to create a web app for a local small business to make $15 to
$30/hr.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Aldo Bucchi
Sent: Friday, November 18, 2005 6:44 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Poll: Flex developer US$ rate?

Hi all,

Any ideas on what a Flex developer is currently charging in the US?


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


 Yahoo! Groups Sponsor ~-- Get
fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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







 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/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: Poll: Flex developer US$ rate?

2005-11-18 Thread Renaun Erickson
I'll join, hehe

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

 Dude, I want to run a firm now.
 
 - Original Message - 
 From: Hans Omli [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Friday, November 18, 2005 1:55 PM
 Subject: RE: [flexcoders] Poll: Flex developer US$ rate?
 
 
 Rates vary widely depending on type of gig (consulting, contractor, or
 employee), industry, location, depth of knowledge in software
engineering,
 experience with flash and other related technologies, and so on. 
I'd expect
 a highly experienced Flex developer that runs a consulting firm to
bring in
 $150 to $300/hr or more.  On the other hand, I'd expect a college
student
 using Flex to create a web app for a local small business to make $15 to
 $30/hr.
 
 
 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Aldo Bucchi
 Sent: Friday, November 18, 2005 6:44 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Poll: Flex developer US$ rate?
 
 Hi all,
 
 Any ideas on what a Flex developer is currently charging in the US?
 
 
 --
 : Aldo Bucchi :
 mobile (56) 8 429 8300
 
 
  Yahoo! Groups Sponsor
~-- Get
 fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
 http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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







 Yahoo! Groups Sponsor ~-- 
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/VpTY2A/lzNLAA/yQLSAA/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 do you convert a .pdf file to an .swf file

2005-11-18 Thread Johannes Nel



soemthing else i can assure youOn 11/18/05, [EMAIL PROTECTED] [EMAIL PROTECTED]
 wrote:





Do you just save the .pdf file as a .swf file or do you do something else?






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




  








-- j:pn 






--
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] How do you convert a .pdf file to an .swf file

2005-11-18 Thread JesterXL





If you have FlashPaper installed, right click on it, convert. 
Schweetness!

- Original Message - 
From: [EMAIL PROTECTED] 

To: flexcoders@yahoogroups.com 
Sent: Friday, November 18, 2005 1:59 PM
Subject: [flexcoders] How do you convert a .pdf file to an .swf 
file

Do you just save the .pdf file as a .swf file or do you do something 
else?






--
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] Poll: Flex developer US$ rate?

2005-11-18 Thread Tariq Ahmed
I love of course how recruiters and companies want people with the 
latest and greatest skills. I had a recruiter send me a requisition back 
in June looking for someone with 5 years of Flex 2 and Flash 8 Pro 
experience. Uh ya.


David Mendels wrote:

Hi,

I know of folks charging from $150-$300 per hour for design and
architecture work on Flex projects.

Rates vary very widely it seems.

-David

  






 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Jim Phelan










Hey Niklas,



Heres a quick and dirty example:



?xml
version=1.0 encoding=utf-8?

mx:Application
xmlns:mx=http://www.macromedia.com/2003/mxml width=100%
height=100% 



mx:Script

![CDATA[

[Embed(plus.png)]

var
plusIcon:String;

[Embed(minus.png)]

var
minusIcon:String;



function
changeIcons():Void {

 

 for
(var i:Number = 0; i  acdIcons.numChildren; i++)
mx.controls.Button(acdIcons.getHeaderAt(i)).icon = plusIcon;

 mx.controls.Button(acdIcons.getHeaderAt(acdIcons.selectedIndex)).icon
= minusIcon;

}



]]

/mx:Script

mx:Accordion
width=200 height=400 change=changeIcons()
id=acdIcons

mx:Form
icon={plusIcon}/

mx:Form
icon={plusIcon}/

mx:Form
icon={plusIcon}/

/mx:Accordion

/mx:Application



Naturally youd need files named
plus.png and minus.png to make it work.



Let me know if this helps.



Jim













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Niklas Richardson
Sent: Friday, November 18, 2005
6:33 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
Accordion Header Icons - Changing during runtime





Hi Jim,

I gave that a shot and still to no avail.
Still get the error:

There is no property with the name
'icon'.

Oh well. Perhaps I need to figure out these
custom header classes!

Thanks for the help.

Cheers

Niklas



On 17/11/05, Jim Phelan
[EMAIL PROTECTED] wrote:



 The custom class might not benefit you (it
has some other features like a
 close button), but try this:



 Button(accd.getHeaderAt(0)).icon



 


 From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
 Behalf Of Niklas Richardson
 Sent: Thursday, November 17, 2005 11:51
AM

 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Accordion
Header Icons - Changing during runtime



 Unfortunately I tried:

 accd.getHeaderAt(0).icon

 and it doesn't work. It says
icon does not exist. I think that's
 because getHeaderAt() returns a
UIComponent object.

 Would you be willing to share your
custom header class?

 Thanks

 Niklas

 On 17/11/05, Jim Phelan
[EMAIL PROTECTED] wrote:
 
 
 
  Hey Niklas,
 
 
 
  I've done this before. I'm
accomplishing it with a custom class for the
  header, but if all you need is the
icon you should be able to use
 something
  like accd.getHeaderAt(0).icon =
iconLinkage Since AccordianHeader is a
  subclass of Button, it should work
just fine.
 
 
 
  Jim
 
 
 
 

 
 
  From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
  Behalf Of Niklas Richardson
  Sent: Thursday, November 17,
2005 11:24 AM
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders]
Accordion Header Icons - Changing during
 runtime
 
 
 
  Crapola! So you'd need some
custom header class huh?
 
  Thanks.
 
  Niklas
 
  On 17/11/05, Sreejith
Unnikrishnan [EMAIL PROTECTED] wrote:
   The icon is
embedded at compile time and may not be changed
 dynamically.
   But then I could
be wrong!
  
   Sree
  
  
   Niklas Richardson
wrote:
   Hi all,
  
   I have hunted
high and low for an answer to this and I've played
   around with
accordion.getHeaderAt(), getChildAt(), but to no avail.
  
   Basically, I want
to change the icon for a specific accordion header
   depending on a
certain state of that child.
  
   There doesn't
seem to be a way at runtime to change the icon.
  
   Does anyone know
a solution to this?
  
   Thanks.
Your help is much appreciated.
  
   Cheers
  
   Niklas
  
  
  
   --
   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.
  
  

  
 
 
  --
  Niklas Richardson
  Prismix Ltd
 
  Flex and ColdFusion Experts!
 
 
 
  --
  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.
 
 

 
 
 


 --
 Niklas Richardson
 Prismix Ltd

 Flex and ColdFusion Experts!



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

RE: Sho - anything wrong with a Class Example app like BeatPort -- RE: [flexcoders] Re: Links to Nice-looking Flex Apps

2005-11-18 Thread Robert Thompson



Well, I believe I did comment that the particular "look" of BeatPort is one thing, while the integration of a Summary Home Page, Membership Signup, Forums, Areas, is another. Surely someone as good as Sho can demonstrate a "Bare Bones" if you will, but recommended standard of practice in terms of the base artitechural considerations when developing an app.So by "class" app. I mean the most typical a Flex developer would deal with when dealing with _not_ the look, but more of the feel; using accordian controls and the various sorts.I'm still trying to understand Cairngorm (sp?) and MFC (model view architecture)I got so much going I only have so much time to get up to speed in these...and I guess all in all what I'm saying iswith some vendors, they come with a small series of start apps that server as good ways to analyze good practice for any general class of app 
   And with the Great Video Tutorials Sho and others have done, I'm just saying it would evangelgize more apps in a lesser time frame...thus more feedback, more "examplars" to show...the whole Flex2 culture will spread quicker.Gone are the days IMHO, where you run a script on documentation and just tell the developer to "dig into it" -- No that doesn't promote propogation of a technology, that muddies it up.-r  Jason Weiss [EMAIL PROTECTED] wrote:I guess “best” should be a relative term and put into context. The Fortune 1500 companies that we work with would likely be very disappointed if we presented them with a UI like BeatPort for a mission critical enterprise-class application. Let me stress upfront that my
 point is not to detract from what surely was a lot of work by the developers of BeatPort, work I’m sure they are proud of, but to point out that different class applications expect different levels of sophistication and standards. For an application focused a niche music market, the BeatPort UI might be categorized as a best-in-class solution, especially if it were compared to the rest of its competitive field. I’m not familiar with their target market nor am I interested in the value-proposition that their site offers, so before flaming me please take that into account.However, as a published author, lecturer and software architect on systems in production that have
 literally generated billions of dollars in revenue for my clients, including Crisis Coach that was nominated for a MAX award at this years conference, my experience and client interactions give me the insight to believe that enterprise customers will lean toward the other end of the UI spectrum. Our customers insist on clean and functional interfaces. Soothing color schemes, not neon green. Breadcrumbs and navigational cues- not things that look like buttons that serve no apparent purpose (like the sub-navigation ‘button’ on their main screen). With this in mind, a multi-national billion dollar+ insurance company or financial institution looking to write a customer facing application would neither consider the BeatPort UI as a standard nor as a target to aim for. The interface is far too busy for “Joe Customer” who looks to the bank’s online services to get things done, like pay bills. Enterprises respect simple and intuitive interfaces for a reason- they’ve spent millions over the years on case studies and focus groups that back up their position. Again, I’m speaking constructively and in-context of the customers we service and not trying to detract from the hard work of the BeatPort developers. But before we lay a blanket statement out there that BeatPort is the best example of Flex development we should consider where Macromedia is targeting Flex and where the growth in the Flex market will come from—Fortune 1500 customers writing customer facing applications. In this context, BeatPort is a poor representation in my opinion of what Flex is truly capable of. As a final example to support my
 premise, consider the Flex application development by Yahoo! Maps. Very clean lines. Very distinct functions, soothing color scheme and an interface that is very functional, yet still sexy enough to scream “let’s see you do this with DHTML baby.” That’s the UI goal I shoot for when I work with my customers, and to me, a Yahoo! Maps or a Crisis Coach UI sets the bar for how Flex UIs should be written.Just one man’s opinion… Jason Weiss__ Jason Weiss Cynergy Systems, Inc. Macromedia Flex Alliance Partner http://www.cynergysystems.com Email: jasonDOTweissATcynergysystemsDOTcom__nospam Office:
 866-CYNERGY   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert ThompsonSent:
 Thursday, November 17, 2005 5:39 PMTo: flexcoders@yahoogroups.comSubject: Sho - anything wrong with a "Class Example" app like BeatPort -- RE: [flexcoders] Re: Links to Nice-looking Flex Apps  Very, very nice application.I think this is the kind of Standard of Quality we are all 

[flexcoders] Conditional data-binding (if UI control is visible)?

2005-11-18 Thread jruud68
Our application consists of multiple pages, and I don't want the 
queries on non-visible pages to run until they become selected 
(visible). 

Are there any patterns or frameworks that deal with this issue? I 
think the ideal solution would be if Flex 1.5 or 2.0 data-binding 
would be delayed until some event occured (i.e. a control becomes 
visible), but I'd be very interested to hear if somebody has had any 
luck with a more manually controlled approach as well.

Thanks, John





 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/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] Conditional data-binding (if UI control is visible)?

2005-11-18 Thread Sreejith Unnikrishnan






You should read on the well-documented "creationPolicy" feature of the
containers.

jruud68 wrote:

Our application consists of multiple pages, and I don't want the 
queries on non-visible pages to run until they become selected 
(visible). 
  
Are there any patterns or frameworks that deal with this issue? I 
think the ideal solution would be if Flex 1.5 or 2.0 data-binding 
would be delayed until some event occured (i.e. a control becomes 
visible), but I'd be very interested to hear if somebody has had any 
luck with a more manually controlled approach as well.
  
Thanks, John
  
  
  
  









--
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] Flex App not loading

2005-11-18 Thread Mehdi, Agha
Title: Flex App not loading







Hi all,

I have run into a strange problem. Here at the company, we have two different networks and we outsource our hosting. Our group that owns one network can access flex apps from the remote server fine. The other network can't load the same apps even though it has access. It'll run other cf and html files on the same server but not the flex apps. 

Is there any additional security setup needs to be in place?

Thanks

Agha Mehdi

IDT - eBusiness Program Manager

Work: 408.284.8239

Cell : 209.275.0482

Fax : 408.284.2766









--
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] Conditional data-binding (if UI control is visible)?

2005-11-18 Thread Sreejith Unnikrishnan






Sorry, I take back the comment!

Sreejith Unnikrishnan wrote:

  
  
You should read on the well-documented "creationPolicy" feature of the
containers.
  
jruud68 wrote:
  Our
application consists of multiple pages, and I don't want the 
queries on non-visible pages to run until they become selected 
(visible). 

Are there any patterns or frameworks that deal with this issue? I 
think the ideal solution would be if Flex 1.5 or 2.0 data-binding 
would be delayed until some event occured (i.e. a control becomes 
visible), but I'd be very interested to hear if somebody has had any 
luck with a more manually controlled approach as well.

Thanks, John




  









--
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] Java ArrayList

2005-11-18 Thread Greg Morphis
 Hi, I'm working on a Flex project with a Java backend.
I'm making a JSP page (or trying to) that will output a schedule in an
HTML table.
I cant seem to get it to work

I import all of my classes, no problem there..

I declare my variables, no problem there..
It seems to be in the while loop..

Here's my code:

%@ page import=java.sql.Date %
%@ page import=java.text.SimpleDateFormat %
%@ page import=java.util.Iterator %
%@ page import=java.util.ArrayList %

%@ page import=com.alltel.rapid.aopscheduler.dao.* %
%@ page import=com.alltel.rapid.aopscheduler.business.SchedulerDelegate %
%@ page import=com.alltel.rapid.aopscheduler.vo.WeeklyRowObject %
%@ page import=com.alltel.rapid.aopscheduler.vo.ActivityVO %
%@ page import=com.alltel.rapid.aopscheduler.vo.DailyScheduleVO %
%@ page import=com.alltel.rapid.aopscheduler.vo.ScheduleEntryVO %
%@ page import=com.alltel.rapid.aopscheduler.vo.WeeklyScheduleSearchVO %
%@ page import=com.alltel.rapid.aopscheduler.vo.WeeklyScheduleVO %

... HTML CODE ...

%
String l = request.getParameter(location);
String date = request.getParameter(date);

Date d = new Date(105, 10, 5);
WeeklyScheduleDAO dao;
dao = new WeeklyScheduleDAO();
WeeklyScheduleSearchVO ws = new WeeklyScheduleSearchVO();
SimpleDateFormat s = new SimpleDateFormat(MM/dd/);
SimpleDateFormat hhmm = new SimpleDateFormat(hh:mm);

ws.setLocation(4096);
ws.setWeekEndDate(d);

WeeklyScheduleVO W = dao.getWeeklySchedule( ws );

ArrayList days = W.getScheduleDays();
//String[] days = W.getScheduleDays();


out.println(table border='1');
out.println( tr);
out.println(  thEmployee/th);
out.println(  thTitle/th);
out.println(  thSunday/th);
out.println(  thMonday/th);
out.println(  thTuesday/th);
out.println(  thWednesday/th);
out.println(  thThursday/th);
out.println(  thFriday/th);
out.println(  thSaturday/th);
out.println( /tr);
//out.println(/table);

Iterator daysIT = days.iterator();
int i = 1;
while(daysIT.hasNext())
{
 DailyScheduleVO day = (DailyScheduleVO)daysIT.next();
 //get the entries in day i+1
 ArrayList entries = day.getEntries();
 //iterate over the entries
 Iterator it = entries.iterator();


 int j = 1;
 while(it.hasNext())
 {
  //get an entry
  ScheduleEntryVO entry = (ScheduleEntryVO)it.next();

  //now get the activities in the entry
  ArrayList acts = entry.getActivities();
  //iterate over the list if it has length
  Iterator itt = acts.iterator();
  if(day.getDay() == 1)
  {
   out.println( tr);
   out.println(  td(+ i + , + j + )  +
entry.name +/td);
   out.println(  td+ entry.jobTitle +/td);
  }
  out.println(  td(+ i + , + j + )  +
entry.timespan +/td);
  /*
  while(itt.hasNext())
  {
   //get an activity
   ActivityVO act = (ActivityVO)itt.next();
   if(i == 1) {
   }
  }
  */
 j++;
 out.println( /tr);
 }

 i++;


}
out.print(/table);


%


It doesnt work... it prints the 1st and 2nd and 3rd columns fine, but
the rest it prints below, and it prints only a single column
You can see an example here..
http://home.alltel.net/omen/printws2.html

I've tried what seems to be everything and no matter what I try I
can't seem to get it to work!

Any help you can offer would be appreciated.

Thanks!


--
Auxilium meum a Domino


 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/u8TY5A/tzNLAA/yQLSAA/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] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Jignesh Dodiya



i think some modification required in the code like inclusion of import command and to modify the function 
On 11/18/05, Jim Phelan [EMAIL PROTECTED] wrote:


Hey Niklas,

Here's a quick and dirty example:

?xml version=1.0 encoding=utf-8?

mx:Application xmlns:mx=
http://www.macromedia.com/2003/mxml width=100% height=100% 

mx:Script
![CDATA[
[Embed(plus.png)]
var plusIcon:String;
[Embed(minus.png)]
var minusIcon:String;

function changeIcons():Void {
 
 for (var i:Number = 0; i  acdIcons.numChildren; i++) mx.controls.Button(acdIcons.getHeaderAt(i)).icon = plusIcon;

 mx.controls.Button(acdIcons.getHeaderAt(acdIcons.selectedIndex)).icon = minusIcon;

}

]]
/mx:Script
mx:Accordion width=200 height=400 change=changeIcons() id=acdIcons

mx:Form icon={plusIcon}/

mx:Form icon={plusIcon}/

mx:Form icon={plusIcon}/

/mx:Accordion
/mx:Application

Naturally you'd need files named plus.png and minus.png to make it work.

Let me know if this helps.

Jim






From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Niklas RichardsonSent: Friday, November 18, 2005 6:33 AM 
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Accordion Header Icons - Changing during runtime



Hi Jim,I gave that a shot and still to no avail. Still get the error:
There is no property with the name 'icon'.Oh well. Perhaps I need to figure out these custom header classes!
Thanks for the help.CheersNiklas
On 17/11/05, Jim Phelan [EMAIL PROTECTED] wrote:
 The custom class might not benefit you (it has some other features like a
 close button), but try this:
 Button(accd.getHeaderAt(0)).icon
 
 From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Niklas Richardson Sent: Thursday, November 17, 2005 11:51 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Accordion Header Icons - Changing during runtime
 Unfortunately I tried: 
accd.getHeaderAt(0).icon and it doesn't work. It says icon does not exist. I think that's
 because getHeaderAt() returns a UIComponent object. Would you be willing to share your custom header class?
 Thanks Niklas
 On 17/11/05, Jim Phelan 
[EMAIL PROTECTED] wrote:   
  Hey Niklas,   
  I've done this before. I'm accomplishing it with a custom class for the  header, but if all you need is the icon you should be able to use
 something  like accd.getHeaderAt(0).icon = iconLinkage Since AccordianHeader is a
  subclass of Button, it should work just fine.   
  Jim   
    
  From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On  Behalf Of Niklas Richardson  Sent: Thursday, November 17, 2005 11:24 AM
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders] Accordion Header Icons - Changing during runtime 
Crapola! So you'd need some custom header class huh? 
  Thanks.   Niklas
   On 17/11/05, Sreejith Unnikrishnan [EMAIL PROTECTED]
 wrote:   The icon is embedded at compile time and may not be changed dynamically.
   But then I could be wrong! Sree  
 Niklas Richardson wrote:   Hi all,
 I have hunted high and low for an answer to this and I've played
   around with accordion.getHeaderAt(), getChildAt(), but to no avail. Basically, I want to change the icon for a specific accordion header
   depending on a certain state of that child. There doesn't seem to be a way at runtime to change the icon.
 Does anyone know a solution to this?  
   Thanks. Your help is much appreciated. Cheers
 Niklas  
   --   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.
   
--  Niklas Richardson
  Prismix Ltd   Flex and ColdFusion Experts!
 --
  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.
    
   --
 Niklas Richardson Prismix Ltd Flex and ColdFusion Experts!
 --
 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 

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread John C. Bland II



Heh, have you tried free Jesse? :-) I knocked out a few solid free one's in my early days to get something on there then was doing full database driven sites for $500. :-) Its all about the portfolio when contracting until you get your name out there and solid.
On 11/18/05, JesterXL [EMAIL PROTECTED] wrote:




Besides, kind of hard to ask for $300 an hour when you have... oh, NOTHING 
on your resume to prove yo don't suck. I'll do whatever it takes to 
succeed, and if that meant taking jack money to get some cool projects on my 
resume, so be it. Today, I don't need anymore, but back then, I'd seriously 
question wtf else you expected me to do.

- Original Message - 
From: Tim Beynart [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, November 18, 2005 12:17 PM
Subject: RE: [flexcoders] Poll: Flex developer US$ rate?


Jesse, $20/hr is what I pay people to dig holes in my yard! Anyone in
the US with development skills working for that is depressing the market
and seriously shortchanging themselves.

Since FLEX is aimed directly at the enterprise market and is
fundamentally a presentation-tier platform, you could use Java/.NET UI
developer rates as a rough guide. As I investigate the FLEX market, it
appears to be closely tied to the Java market since many Java guys are
adopting FLEX. I just took a FLEX class where I was the only Flash guy
in a room full of Java people, and the assumption was that a FLEX
developer would have deep Java experience.

As one of the old school Flash guys, I see FLEX paying more than Flash
development for someone who knows AS2.0 inside and out. Flash seems to
top out at about $85 an hour for contract in the US on large projects,
and Flex trumps that just in the few jobs I have looked at (for the NYC
area).

Of course salary is a whole other beast, and I have no experience there
due to my allergy to W2 forms.

Tim



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



  









-- John C. Bland III do what I can do when I can do it. - Chris Tucker, Money Talkshttp://www.gotoandstop.org
 - Home of FMUG.az






--
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] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL





Oh yeah... done the free ones... problem was, I 
should of at least had royalties in a contract. One dude who paid me $500 
 a phat lunch to do this insanely cool map game over 2 months has now, 
after 2 years, become profitable. He was on CNN, etc. After the 
project was done, I was broke, savings drained and had to move back in with my 
parents... until I fought my way into IBM and things went up from 
there.

It was worth it, though, that + other pieces for my 
portfolio scored me later gigs.

- Original Message - 
From: John C. Bland 
II 
To: flexcoders@yahoogroups.com 
Sent: Friday, November 18, 2005 5:02 PM
Subject: Re: [flexcoders] Poll: Flex developer US$ rate?
Heh, have you tried free Jesse? :-) I knocked out a few solid 
free one's in my early days to get something on there then was doing full 
database driven sites for $500. :-) Its all about the portfolio when contracting 
until you get your name out there and solid. 
On 11/18/05, JesterXL 
[EMAIL PROTECTED] 
wrote:
Besides, 
  kind of hard to ask for $300 an hour when you have... oh, NOTHING on your 
  resume to prove yo don't suck. I'll do whatever it takes to succeed, 
  and if that meant taking jack money to get some cool projects on my 
  resume, so be it. Today, I don't need anymore, but back then, I'd 
  seriously question wtf else you expected me to do.- Original Message - From: "Tim Beynart" [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Friday, November 18, 
  2005 12:17 PMSubject: RE: [flexcoders] Poll: Flex developer US$ 
  rate?
  Jesse, $20/hr is what I pay 
  people to dig holes in my yard! Anyone inthe US with development skills 
  working for that is depressing the marketand seriously shortchanging 
  themselves.Since FLEX is aimed directly at the enterprise market and 
  isfundamentally a presentation-tier platform, you could use Java/.NET 
  UIdeveloper rates as a rough guide. As I investigate the FLEX market, 
  itappears to be closely tied to the Java market since many Java guys 
  areadopting FLEX. I just took a FLEX class where I was the only Flash 
  guyin a room full of Java people, and the assumption was that a 
  FLEXdeveloper would have deep Java experience.As one of the "old 
  school Flash guys", I see FLEX paying more than Flashdevelopment for 
  someone who knows AS2.0 inside and out. Flash seems totop out at about $85 
  an hour for contract in the US on large projects,and Flex trumps that just 
  in the few jobs I have looked at (for the NYCarea).Of course 
  salary is a whole other beast, and I have no experience theredue to my 
  allergy to W2 forms.Tim--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 . 
  
  
  -- John C. Bland 
II"I do what I can do when I can do it." - Chris Tucker, Money 
Talkshttp://www.gotoandstop.org 
- Home of FMUG.az 






--
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] Flex App not loading

2005-11-18 Thread Mehdi, Agha
Title: Flex App not loading










It does load the flash player but the app
doesnt launch





Agha Mehdi 
IDT - eBusiness Program Manager 











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Carson Hager
Sent: Friday, November 18, 2005
2:04 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex App
not loading





When you say that the other network can't
load the same apps, do you mean the pages don't come up at all or the pages
return but the application does not launch?




Carson



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

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















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mehdi, Agha
Sent: Friday, November 18, 2005
12:37 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex App not
loading

Hi all,

I have run into a strange problem. Here at the
company, we have two different networks and we outsource our hosting. Our group
that owns one network can access flex apps from the remote server fine. The
other network can't load the same apps even
though it has access. It'll run other cf and html files on the same
server but not the flex apps. 

Is there any additional security setup needs to
be in place?

Thanks

Agha Mehdi

IDT - eBusiness Program Manager

Work: 408.284.8239

Cell : 209.275.0482

Fax : 408.284.2766









--
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] Flex App not loading

2005-11-18 Thread Carson Hager
Title: Flex App not loading





Have you verified with the web server that the swf was 
returned to the client? I would look at the log and see what the http 
status code is for the request.

Carson

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



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Mehdi, 
AghaSent: Friday, November 18, 2005 2:24 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex App not 
loading


It does load the flash 
player but the app doesnt launch


Agha 
Mehdi 
IDT - eBusiness 
Program Manager 





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] 
On Behalf Of Carson 
HagerSent: Friday, November 
18, 2005 2:04 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex App not 
loading

When you say that the 
other network can't load the same apps, do you mean the pages don't come up at 
all or the pages return but the application does not 
launch?

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






From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] 
On Behalf Of Mehdi, 
AghaSent: Friday, November 18, 
2005 12:37 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Flex App not 
loading
Hi 
all,
I have run into a 
strange problem. Here at the company, we have two different networks and we 
outsource our hosting. Our group that owns one network can access flex apps from 
the remote server fine. The other network can't load the same apps 
even though it has access. It'll run other cf and html files on the 
same server but not the 
flex apps. 
Is there any 
additional security setup needs to be in place?
Thanks
Agha 
Mehdi
IDT - eBusiness 
Program Manager
Work: 
408.284.8239
Cell : 
209.275.0482
Fax : 
408.284.2766






--
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] Binding Data XML vs. AMFPHP

2005-11-18 Thread nextadvantage
We are traditional LAMP developers, currently digging into flex, we 
have been passing data via XML/PHP in our project, and have been 
reading about AMFPHP moving forward with Flex 2.0 what would be the 
quickest/ best performance method to bind our applications with MySQL?





 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] Title Panel Graphic in Flex Style Explorer anyone have it...

2005-11-18 Thread nextadvantage
I like the transparent title explorer graphic from the flex styles 
explorer.

http://weblogs.macromedia.com/mc/archives/FlexStyleExplorer.html

Does anyone have that file here? I'm lazy and don't want to re-create 
it... If someone has it can you email it to bidcars (at) gmail.com

Thanks





 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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: Binding Data XML vs. AMFPHP

2005-11-18 Thread Renaun Erickson
Flex 1.5
AMFPHP is just like any other gateway.  Just set up the gateway
correctly on your Apache/PHP server.  Then change the amf-gateway in
the flex-config.xml file to point to the AMFPHP gateway (example below).

Then use the mx:RemoteObject/ tag.  Like this:
mx:RemoteObject id=recordsDelegate
source=Company
showBusyCursor=true
/mx:RemoteObject

source is the name of your PHP class file and id is the identifier
 that you use to call the methods in source in flex.  So
recordsDelegate.getGroups() would call the getGroups function on the
Company PHP Class.

amf-gatewayhttp://localhost/amfphp/gateway.php/amf-gateway

Renaun


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

 We are traditional LAMP developers, currently digging into flex, we 
 have been passing data via XML/PHP in our project, and have been 
 reading about AMFPHP moving forward with Flex 2.0 what would be the 
 quickest/ best performance method to bind our applications with MySQL?







 Yahoo! Groups Sponsor ~-- 
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/VpTY2A/lzNLAA/yQLSAA/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] CellRenderer Bound DataProvider create/destroy issue

2005-11-18 Thread Renaun Erickson
I have a component that I am programmatically create and destroy
(createChild/destroyChild), call it ResultList.  ResultList has a
TileList that has a dataprovider that is bound to a static variable
Items.  

So the sequence looks like:
Create ResultList
Fill the array of Items (which in turn fills up the ResultList.TileList)
Destroy ResultList (I am not destroying Items)
Create new ResultList (on this step it hangs, the app becomes
non-responsive)

Anybody come across this or do I need to provide some code.

Renaun








 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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] StringValidator don't work

2005-11-18 Thread Matt Chotin










You cant use method calls for
validator fields, it has to be a property on an object that lives in the
document.  You might need a Model in the middle that you can use for binding
instead.



mx:Model id=proxy

  tdsc {ModelLocator.getInstance().nota.DE50NT==undefined
? '':ModelLocator.getInstance().nota.DE50NT}/tdsc

/mx:Model



mx:StringValidator field=proxy.tdsc 
listener=tdsc_1 /



Something like that,



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Devis
Sent: Thursday, November 17, 2005
4:46 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]
StringValidator don't work







Hi, i don't understand because my Validator return always
false plas help me.





Devis

















public function Salva():Void{

if(mx.validators.Validator.isStructureValid(this,'ModelLocator.getInstance().nota')==true)
 {
 if(ModelLocator.getInstance().nota==undefined)
 {
 var c:CNoteVO = new CNoteVO();

c.pk=new CNotePK();
 c.pk.STAGNT=pfvo.pfvopk.stagpf;
 c.pk.MODENT=pfvo.pfvopk.modepf;
 c.pk.MATENT=pfvo.pfvopk.matepf;
 c.DE50NT=tdsc_1.text;
 c.DE20NT=tdsc_2.text;


c.pk.POSINT=ModelLocator.getInstance().note.length+1;

ModelLocator.getInstance().note.addItem(c);


EventBroadcaster.getInstance().broadcastEvent(note_insert,c);

 

} 
 else
 {
 
EventBroadcaster.getInstance().broadcastEvent(note_insert,ModelLocator.getInstance().nota);
 
ModelLocator.getInstance().nota=undefined;
 } 

 }
 else
  mx.controls.Alert.show(Non posso salvare
informazioni non valide!!, Controllo di validità,

Alert.OK);
 
 
 }





















































?xml version=1.0
encoding=utf-8?
mx:Canvas xmlns:mx=http://www.macromedia.com/2003/mxml
height=100% width=100% visible=true
xmlns=*

mx:Script source=../as/StringEx.as/
mx:Script source=SchedaNoteViewer.as/











!-- NOTE --
mx:Binding source={ModelLocator.getInstance().nota.DE50NT==undefined
? '':ModelLocator.getInstance().nota.DE50NT}
destination=tdsc_1.text / 
mx:Binding source={ModelLocator.getInstance().nota.DE20NT==undefined
? '':ModelLocator.getInstance().nota.DE20NT} destination=tdsc_2.text
/ 
mx:Binding source=tdsc_1.text
destination=ModelLocator.getInstance().nota.DE50NT / 
mx:Binding source=tdsc_2.text
destination=ModelLocator.getInstance().nota.DE20NT / 











!--Imposto i campi obbligatori --
mx:StringValidator field=ModelLocator.getInstance().nota.DE50NT
minLength=1 maxLength=100
requiredFieldError=Campo obbligatorio tooLongError=Max
100 caratteri listener=tdsc_1 /
mx:StringValidator field=ModelLocator.getInstance().nota.DE20NT
minLength=1 maxLength=100
requiredFieldError=Campo obbligatorio
tooLongError=Max 100 caratteri
listener=tdsc_2/











 
 
mx:Panel id=panel6 width=100% 

panelBorderStyle=roundCorners

headerColors=[#7D8FA8,#FF]

title={PfVO(pfvo[0]).de50pf}













mx:DataGrid
dataProvider={ModelLocator.getInstance().note}
cellPress=ModelLocator.getInstance().nota=event.target.selectedItem
width=100% id=dgnote
mx:columns
mx:Array
mx:DataGridColumn columnName=DE50NT
headerText=Note per il laboratorio width=300/
mx:DataGridColumn columnName=DE20NT
headerText=Abb. Filo per ricamo width=300/
/mx:Array
/mx:columns
/mx:DataGrid
mx:Form width=100%












 mx:VBox 
 mx:FormItem label=Note
Laboratorio required=true 

mx:TextInput id=tdsc_1 width=300
text={ModelLocator.getInstance().nota.DE50NT}/
/mx:FormItem











 
 mx:FormItem
label=Abbinamento filo per ricamo required=true

mx:TextInput id=tdsc_2 width=300
text={ModelLocator.getInstance().nota.DE20NT}/
/mx:FormItem
 
 /mx:VBox 
 
/mx:Form

mx:ControlBar width=100%


mx:Spacer width=100%/













mx:Button
icon=@Embed('/images/icons/note_add.png')

label=Nuovo click=Nuovo()/











mx:Button
icon=@Embed('/images/icons/note_edit.png')

label=Salva click=Salva()/


 mx:Button label=Elimina icon=@Embed('/images/icons/note_delete.png')
 click=Delete()/











/mx:ControlBar











/mx:Panel
/mx:Canvas











--
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] Flex 2.0 - Loader - Error #2036 : Load Never Completed

2005-11-18 Thread Matt Chotin
Title: Flex 2.0 - Loader - Error #2036 : Load Never Completed










Ive heard of the Loader having some
problems in the alpha but are you sure that its really the right path
for the swf?  Did you compile MyComponent.mxml already into a SWF, remember you
dont have a server to do the compilation for you



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michel Bertrand
Sent: Thursday, November 17, 2005
11:27 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2.0 -
Loader - Error #2036 : Load Never Completed





Hello
! 

I
have tried to use mx.controls.Loader to load a simple MXML component, like:


public
class MyLoader extends Canvas { 

public
var source:String; 

public
function ioError(error:Object) : Void { 
Alert.show(Loader
ioError+ error.text); 
}


public
function securityError(error:Object) : Void { 
Alert.show(Loader
securityError+ error.text); 
} 

public
override function createChildren(): Void { 
this.width
= 0; 
this.height
= 0; 
this.visible
= false; 

loader
= new Loader(); 
loader.addEventListener(complete,
this.loadComplete); 
loader.addEventListener(ioError,
this.ioError); 
loader.addEventListener(securityError,
this.securityError); 
addChild(loader);

loader.load(source);


super.createChildren();

.

}

} 

The
property source contains the path to my MXML that is located at the
same directory of MyLoader, for example, 
source
content is MyComponent.mxml.swf. 

So,
I've ever had Error #2036 : Load Never Completed when running this
code. 

I'm
using Flash Player version 8,5,0,133. 

Any
idea ? 

Thanks
in advance ! 
Michel Bertrand | Desenvolvimento
| DATASUL Tecnologia
Acesse www.datasuldirect.com.br e conheça mais sobre os produtos e soluções de
tecnologia 










--
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 Embed XML file at compile time?

2005-11-18 Thread Matt Chotin










mx:Model id=xmlModel
source=data.xml /



Or if you want the XML to be brought in
raw use mx:XML source=data.xml format=e4x (or
format=xml for old-school) instead .



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stanislav Zayarsky
Sent: Friday, November 18, 2005
2:55 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] How to Embed
XML file at compile time?





Hello Guys,

Does anyone know how to Embed XML file at compile
time?

I'm trying to use this code:

 mx:Script
 ![CDATA[

 [Embed(data.xml)]
  

 var
xmldata:Object; 
 ]]
 /mx:Script
 
 mx:Model
id=xmlModel source={xmldata}/mx:Model

But the errors are:

1. Problem parsing external XML document
2. Model 'xmlModel' contains only scalar content -
this is currently unsupported

Best regards
Stanislav










--
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] iterate mx:Model data in CellRenderer

2005-11-18 Thread Matt Chotin










mx:Repeater id=rp_1
dataProvider={mx.utils.ArrayUtil.toArray(dataObject.daysch)}
/



Matt









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of keishichi2001
Sent: Thursday, November 17, 2005
11:06 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] iterate
mx:Model data in CellRenderer





i'm trying to display
mx:Model data in CellRenderer(within TileList).
The mx:Model has following format.

mx:Model id=monthdata
 obj
 item

date1/date

day0/day
 daysch

titleSales MTG/title
 titlePresentation/title
 /daysch
 /item
 item

date2/date

day1/day
 daysch

titlesomething to do/title
 /daysch
 /item
 /obj
/mx:Model

daysch element may have multiple nested
elements.
Above data will be passed into dataProvider of
TileList.

mx:TileList columnCount=7
rowCount=6 borderStyle=none
dataProvider={monthdata.obj.item}
listItemRenderer=adayCellRenderer

Then, the CellRenderer should be able to get item
data by itself.

1: mx:Link
label={dataObject.date}/
2: mx:VBox 
3: mx:Repeater id=rp_1
dataProvider={dataObject.daysch}
4: mx:Link
label={rp_1.currentItem.title}/
5: /mx:Repeater
6: /mx:VBox

I've confirmed that line1({dataObject.date}) has
no problem, it works
as i expected.
However, line3-5 doesn't work.
When I run this application, i got following error
dialog.

TypeError: Error #1034: Type Coersion failed:
cannot convert
mx.utils::[EMAIL PROTECTED] to
mx.collections.ArrayCollection
 at
mx.binding::Binding/execute()
 at
mx.binding::Binding/watcherFired()
 at
mx.binding::Watcher/notifyListeners()
 at
mx.binding::PropertyWatcher/handleEvent()
 at
flash.events::EventDispatcher/dispatchEvent()
 at
mx.core::Container/set dataObject()
 at
mx.controls.listclasses::TileBase/calculateHeight()
 at
mx.controls.listclasses::ListBase/measure()
 at
mx.core::UIComponent/UIComponent$480$private::measureSizes()
 at
mx.core::UIComponent/validateSize()
 at
mx.managers::LayoutManager/validateSize()
 at
mx.managers::LayoutManager/LayoutManager$1689$private::doPhasedInstantiation()
 at
mx.core::UIComponent/UIComponent$480$private::callLaterDispatcher2()
 at
mx.core::UIComponent/UIComponent$480$private::callLaterDispatcher()


I hope someone correct me...


Best Regards,
Keishichi














--
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] link in new window

2005-11-18 Thread thisdudenamedjon
I have some links to some static html pages that I want to popup in a 
new window so I don't exit the flex everytime I click it. Does anyone 
know about this kind of funtionality?

Jon







 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/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] Title Panel Graphic in Flex Style Explorer anyone have it...

2005-11-18 Thread Jason Weiss










There are no graphics that I see there. There
is text and a link bar. Are you mistaking the link bar for a graphic?











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of nextadvantage
Sent: Friday, November 18, 2005
7:01 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Title Panel
Graphic in Flex Style Explorer anyone have it...





I like the transparent title explorer graphic from the flex styles 
explorer.

http://weblogs.macromedia.com/mc/archives/FlexStyleExplorer.html

Does anyone have that file here? I'm lazy and
don't want to re-create 
it... If someone has it can you email it to
bidcars (at) gmail.com

Thanks











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





  




  
  
  YAHOO! GROUPS LINKS



  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] Flex App not loading

2005-11-18 Thread Mehdi, Agha
Title: RE: [flexcoders] Flex App not loading







1) Yes, the exact same URL
2) It does load the Player but not the app
3) I am running multiple instances and one of them is Flex not integrated with CF.



Agha Mehdi
IDT - eBusiness Program Manager



-Original Message-
From: João Fernandes [mailto:flexcoders@yahoogroups.com] On Behalf Of João Fernandes
Sent: Friday, November 18, 2005 2:31 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex App not loading



1)Are both accessing the same URL?
2)Does the application show anything or if you right click it says movie not loaded?
3)Are you running a CF+Flex integraded instance?


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


-Original Message-
From: flexcoders@yahoogroups.com on behalf of Mehdi, Agha
Sent: Fri 18-Nov-05 10:23 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex App not loading

It does load the flash player but the app doesn't launch





Agha Mehdi 
IDT - eBusiness Program Manager 


 _ 


From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of Carson Hager
Sent: Friday, November 18, 2005 2:04 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex App not loading





When you say that the other network can't load the same apps, do you mean
the pages don't come up at all or the pages return but the application does
not launch?






Carson


 
 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com http://www.cynergysystems.com/ 
 
Email: mailto:[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 866-CYNERGY
Mobile: 1.703.489.6466 
 
 








 _ 


From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of Mehdi, Agha
Sent: Friday, November 18, 2005 12:37 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex App not loading


Hi all,


I have run into a strange problem. Here at the company, we have two
different networks and we outsource our hosting. Our group that owns one
network can access flex apps from the remote server fine. The other network
can't load the same apps even though it has access. It'll run other cf and
html files on the same server but not the flex apps. 


Is there any additional security setup needs to be in place?


Thanks


Agha Mehdi


IDT - eBusiness Program Manager


Work: 408.284.8239


Cell : 209.275.0482


Fax : 408.284.2766




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





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
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!
http://docs.yahoo.com/info/terms/ Terms of Service. 





 _ 



 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/u8TY5A/tzNLAA/yQLSAA/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 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] Webservice operations with more than 3 parameters

2005-11-18 Thread Matt Chotin










Does the webservice have overloaded
methods, methods with the same name that take different numbers of parameters?
Flex doesnt really support that unfortunately, youd need to get a
separate WSDL that eliminates the ones that you dont want to use.



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Bryngfors Nils
Sent: Friday, November 18, 2005
2:38 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Webservice
operations with more than 3 parameters





Hi!

I've encountered a strange problem when calling
webservices from Flex
2.0. When I'm calling a .NET webservice that takes
4 parameters, all
strings, I got the following error:

HTTP request error
#2032: Stream Error

The strange thing is that when I modify the
webservice to only take 3
parameters everything runs fine. Any takes?

/Nisse Bryngfors








--
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] Defining default value for missing dynamic properties (doesNotUnderstand:)?

2005-11-18 Thread Matt Chotin










Is this Flex 1.5 youre talking about?
Check out __resolve: http://livedocs.macromedia.com/flex/15/flex_docs_en/1622.htm
and it should get you on your way.



Matt









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jruud68
Sent: Friday, November 18, 2005
10:56 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Defining
default value for missing dynamic properties (doesNotUnderstand:)?





For a dynamic object 'MyObject', does actionscript support returning a 
default value for missing properties? For example,
I'd like:
MyObject.MissingProperty to return there is
no such property, if 
MissingProperty has not been added to MyObject.

(This would be similar to implementing a
'doesNotUndertand:' method, 
that would be invoked if the property is missing,
in Smalltalk)

Thanks, John











--
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] link in new window

2005-11-18 Thread Matt Chotin










Just use a window of _blank
in getURL I think.



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of thisdudenamedjon
Sent: Friday, November 18, 2005
5:29 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] link in new
window





I have some links to some static html pages that I want to popup in a 
new window so I don't exit the flex everytime I
click it. Does anyone 
know about this kind of funtionality?

Jon













--
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] link in new window

2005-11-18 Thread Jason Weiss










getURL(www.someurl.com, _blank);











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of thisdudenamedjon
Sent: Friday, November 18, 2005
7:29 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] link in new
window





I have some links to some static html pages that I want to popup in a 
new window so I don't exit the flex everytime I
click it. Does anyone 
know about this kind of funtionality?

Jon













--
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] link in new window

2005-11-18 Thread Dekayd Media Inc.
getURL('yourURL.htm', '_blank')




-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of thisdudenamedjon
Sent: Friday, November 18, 2005 8:29 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] link in new window

I have some links to some static html pages that I want to popup in a 
new window so I don't exit the flex everytime I click it. Does anyone 
know about this kind of funtionality?

Jon








--
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 ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/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 2.0 - AS3] E4X problem when parsing tags with hyphen

2005-11-18 Thread Mike Chambers
Yes. Basically the compiler thinks you are trying to subtract things. 
This may end up being a Fact of Life (FOL).

mike chambers

[EMAIL PROTECTED]

Manish Jethani wrote:
 On 11/18/05, Xavi Beumala [EMAIL PROTECTED] wrote:
 
 
   // this is failing at compile time
trace (xml.xslNS::template.xslNS::[EMAIL PROTECTED]);
 
 
   trace (xml.xslNS::template.xslNS::[call-template[EMAIL PROTECTED]);
 
 Manish
 
 
 
 --
 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 ~-- 
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/VpTY2A/lzNLAA/yQLSAA/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/