[flexcoders] Flex 4 Language Reference

2010-03-23 Thread Jonathan Bezuidenhout
Hi,

Does anyone know the new online location for the Flex 4 Language reference?


The old one (http://help.adobe.com/en_US/Flex/4.0/langref/) does not work
anymore.

Thank you.

Jonathan


Re: [flexcoders] Flex 4 Language Reference

2010-03-23 Thread Jonathan Bezuidenhout
Thanks Andriy,

I will try that out.

On Tue, Mar 23, 2010 at 7:32 AM, Andriy Panas a.pa...@gmail.com wrote:



 Hi Jonathan,

 Have a look at this page:
 http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/

 --
 Best regards,
 Andriy Panas




 On 23 March 2010 16:25, Jonathan Bezuidenhout flex...@gmail.com wrote:



 Hi,

 Does anyone know the new online location for the Flex 4 Language
 reference?

 The old one (http://help.adobe.com/en_US/Flex/4.0/langref/) does not work
 anymore.

 Thank you.

 Jonathan


  



[flexcoders] DataGrid with content spanning several columns

2006-11-03 Thread Jonathan Bezuidenhout



Hi All,I need a DataGrid with the ability to have a row where some of the contents span across columns. It might sound a bit odd - here is maybe a bit more of a concrete example.The first column contains a zip code, 2nd column contains the name of a town, underneath both columns - 
i.e. spanning them - there is an address.
So I still want the ability to e.g. sort on zip code etc, and all the nice things that the DataGrid gives me - drag and drop columns etc.Any ideas how to accomplish this? I have thought of maybe doing something in the drawRowBackgrounds() - but maybe there is a better or easier way.
ThanksJonathan


__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






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

  




__,_._,___



Re: [flexcoders] Re: DataGrid with content spanning several columns

2006-11-03 Thread Jonathan Bezuidenhout



thanks very much for the pointerj.On 11/3/06, ben.clinkinbeard [EMAIL PROTECTED] wrote:













  



http://www.cynergysystems.com/blogs/page/andrewtrice?entry=gantt_charts_in_flex_datagrids


--- In flexcoders@yahoogroups.com, Jonathan Bezuidenhout

[EMAIL PROTECTED] wrote:

 Hi All,
 
 I need a DataGrid with the ability to have a row where some of the
contents
 span across columns.  It might sound a bit odd - here is maybe a bit
more of
 a concrete example.
 
 The first column contains a zip code, 2nd column contains the name of a
 town, underneath both columns - i.e. spanning them - there is an
address.
 
 So I still want the ability to e.g. sort on zip code etc, and all
the nice
 things that the DataGrid gives me - drag and drop columns etc.
 
 Any ideas how to accomplish this?  I have thought of maybe doing
something
 in the drawRowBackgrounds() - but maybe there is a better or easier way.
 
 Thanks
 
 Jonathan



  















__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






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

  




__,_._,___



Re: [flexcoders] Flex release version: XML attribute string too long

2006-07-06 Thread Jonathan Bezuidenhout



Hi,No nasty characters - just escaped ones.It turns out that it is not that the string is too long - it is because it contains some escape sequences - it just happens to be that these strings are extra long.
Something like lt;ligt; makes it break - amp; works though.
Also, something like #60; fails. If you have something like #13; in your XML the app cannot even compile. All of these are perfectly good XML!The above is using the mx:XML source.../ construct where the XML is sucked in at compile time and the AS structure is created.
Jonathan



__._,_.___





--
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 release version: XML attribute string too long

2006-07-06 Thread Jonathan Bezuidenhout



Loading a XML file via mx:XML... source= is pretty much the same as having it inline - it is converted into an AS structure at compile time and that is where things go wrong.It is easy to show that it fails.
mx:XML id=test root  test1 desc=this little piggy does work amp; /  test2 desc=this little piggy does NOT work lt;ligt; for a list item at runtime /
  test3 desc=this little piggy does NOT even compile #13; / /root/mx:XMLIt works fine with loading the XML via HTTPService using the exact same XML - so I think it is a bug with the XML being converted at compile time. I think I remember there was a similar bug at the begining of time - like version 
1.0 or something very very long ago.J.
On 7/6/06, Paul BH [EMAIL PROTECTED] wrote:














  



hmm interesting - I wonder if this happens because its xml source sucked in (ie it escaped characters get parsed when it gets sucked it)what happens if you have that sort of stuff inline as opposed to pulled in from a file?
just curious...PBHOn 7/6/06, Jonathan Bezuidenhout 

[EMAIL PROTECTED] wrote:













  



Hi,No nasty characters - just escaped ones.It turns out that it is not that the string is too long - it is because it contains some escape sequences - it just happens to be that these strings are extra long.
Something like lt;ligt; makes it break - amp; works though.
Also, something like #60; fails. If you have something like #13; in your XML the app cannot even compile. All of these are perfectly good XML!The above is using the mx:XML source.../ construct where the XML is sucked in at compile time and the AS structure is created.
Jonathan



  















  
















__._,_.___





--
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 release version: XML attribute string too long

2006-07-05 Thread Jonathan Bezuidenhout



Hi,I have XML that worked fine up to Beta 3 - the one attribute contains a long string - not exceptionally long - but not short - too lazy to count the number of characters.The released version of Flex does not seem to parse this string anymore, and tells me the following:
TypeError: Error #1095: XML parser failure: Unterminated attribute. at Main/::_XML1_i() at Main$iinit() at mx.managers::SystemManager/create() at mx.managers::SystemManager/::initializeTopLevelWindow
() at mx.managers::SystemManager/::frameEndHandler()I guess it is unable to see the end of the string. Maybe this is a player problem with the XML.Anyone else seen this and any ideas how to allow long strings?
ThanksJonathan

__._,_.___





--
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] context-menu in flex...

2006-06-13 Thread Jonathan Bezuidenhout



Hi everyone,OK, I really need to have a right click context menu coming up in a tree - either my own or the Flash one.It seems the Flash one cannot be done without some other stuff in it that we do not want. Has anyone found a way to maybe fake it so that the built in one does not come up? All the reading I have found on the subject involved previous versions of the player or involved bringing up other Alerts and stuff, but not a context menu.
I have considered maybe bringing up a context menu upon double clicking on a line in the tree - but that is just not the way these interfaces would normally work. I am trying to simulate sort of an explorer type action on files in a tree. Hightlight an item, then right click to do copy, paste, delete etc.
Any ideas?ThanksJonathanOn 4/24/06, Matt Chotin [EMAIL PROTECTED] wrote:



Look for the ContextMenu class in the ASDoc (and reference). You can't
disable the right-click menu completely, the most you can do is remove
some of the settings.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On
Behalf Of Rajni
Sent: Monday, April 24, 2006 8:03 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] context-menu in flex...


Hi,

Can anybody tell me that how to customize the context-menu in flex?
or how to disable right-click menu in flex?

Thanks
-Rajni




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

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

Yahoo! Groups Links



 








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

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






  




  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.

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



  












__._,_.___





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








   






  
  
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 and e-forms

2006-06-09 Thread Jonathan Bezuidenhout



Hi everyone,I know this question is a bit nebulous - but not as bad as how long is a piece of string.Has anyone had any experience of integrating e-forms with Flex? In our case, we want our users to be able to create their own forms, fill them in, and display that info back to them - and also be able to extract some of that info. Oh yes, and also seamlessly integrate that with our Flex app.
For example, Adobe LifeCycle is one of these products - it uses HTML/PDF:http://www.adobe.com/products/livecycle/Any ideas/suggestions for other approaches?
ThanksJonathan

__._,_.___





--
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 Beta 3 - Tree with funky XML

2006-05-10 Thread Jonathan Bezuidenhout



Hi all,

I am receiving XML which is sort of in this format:

node label=aaa
  node label=bbb/
 node label=ccc/
  another nolabel=ddd/
 /node

 another nolabel=eee//node

The problem is that when the Tree is bound to this, the element with nolabel shows up as an empty row in the Tree (because there is no label attribute).

Those nolabel ones should not show up in the Tree. I have tried looking at filter functions and label functions andacustom renderer - but I do not really get it working properly.

My question is, is there an easy/preferred way to deal with this? Maybe using DataDescriptor class? That seems very complicated.

Thanks very much

Jonathan






--
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] Flash custom components in Flex 2

2006-03-23 Thread Jonathan Bezuidenhout



Hi everyone,In the Flex 1.5 docs there was a section on how to make a custom component in Flash and how to export it etc for use in Flex. I have noticed that this content is missing from the new Flex 2 docs.
Is this not encouraged anymore or have they just not been included?I have tried to make a swc component using the directions in the old docs. I am not very good with Flash at all - but here is what I did:
I am trying something simple - I create a graphic in Flash - in the library, I make the graphic to be a component called Navigator and I have an associated .as class file like this:class Navigator extends 
mx.core.UIComponent { static var symbolName:String=Navigator; static var symbolOwner:Object=Navigator; var className:String=Navigator; function Navigator() { 
 } function init() {  super.init();  invalidate(); }}I then export this as a swc and call it Navigator.swc. I place this swc file in the root of my app - the same place where the mxml files are. In my 
main.mxml I then try and instantiate it as Navigator /The Flex Builder compiler then says 'Could not resolve Navigator to be a component implementation.Do I need to do anything else?
The end result needs (I guess once I have the basic thing above working) is to have a graphic with a bunch of objects of different shapes that are actually buttons - but they do not look like buttons - they have irregualr edges and I need to be able to disable/enable them from Flex and monitor in Flex when they get clicked etc.
Any idea as to where I am going wrong?ThanksJonathan






--
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: XMLList as dataProvder for TileList

2006-03-09 Thread Jonathan Bezuidenhout



Excellent - that worked.Thanks!JonathanOn 3/9/06, bhaq1972 [EMAIL PROTECTED] wrote:




without looking at your code, i'll take a big guess. try putting 
your XMLList into a XMLLIstCollection
eg

var xlc:XMLListCollection = new XMLListCollection(yourXMLList);
yourTileList.dataProvider = xlc;








--
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] XMLList as dataProvder for TileList

2006-03-08 Thread Jonathan Bezuidenhout



Hi,I create a XMLList result from a query by using the e4x method - and I would like to use this as the data provider for a TileList.In the TileList I create a custom component as a listItemRenderer, and in that component I use 
e.g. [EMAIL PROTECTED] to try and display the value of my attribute.The weird thing is that I get a TileList created with only one row in it (the XML has 5), and all the values for each field is concatenated.
So instead of seeing rows with values145I see one row with value 145.Hopefully this makes sense. Is there any trick to make this work?ThanksJonathan






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

2005-09-29 Thread Jonathan Bezuidenhout



It DOES affect the developer - few companies can afford the high prices and you are out of a job.

I think at the moment pointless for any developer to learn Flex with
the few limited opportunities. The place I am currently working
is the only one in town that does this work. I think if you look
on any of the job boards there will be next to nothing. To them
Flex still means a working condition (i.e. flex hours!)

Unless an open source/hosting environment can be established, I think
it is doomed. So far Flex is far too niche to have any
traction. The open source community/IBM seems to have chosen
Laszlo.

Microsoft and Sparkle is on its way. Macromedia has wasted the
head-start they had. Once the Microsoft propaganda machine kicks
into gear...

Just having a superior product does not translate into a viable product.

my 2c
On 9/28/05, Tracy Spratt [EMAIL PROTECTED] wrote:




The issue of cost doesn't affect the developer since you can get the
perpetual developer license for free.

The cost is a major issue when you go to put a commercial application in
production, and there is currently no alternative (if using Flex)

You can apply for a non-commercial license if that is your situation.

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On
Behalf Of Anupam
Sent: Tuesday, September 27, 2005 10:32 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Server Alternatives

Hi all,
 Is there any alternative to Flex server, except the (very expensive)
one provided by MM?
 Are there any other options? Have all the members of this group who
are using Flex bought
it/evaluating it? Or is there any other option like a compatible
freeware? 

 I know freeware versions of Flash Remoting do exist, is there anything
for Flex?

Thanks,
Anupam.


__
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
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



 











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



  









Re: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-19 Thread Jonathan Bezuidenhout
On a slightly different note.

I can tell you that in our multibillion dollar organization Flex is
most likely about to be thrown out.  We were going to buy something
like 8 or 14 additional licenses to the multitude we already have, and
the pricing is just totally ridiculous for what we need it for.

Management is ready to cut their losses and redevelop with something
non-proprietary and we (the ones that really wanted Flex) have egg on
our faces.

I think we have come to the point where MM has priced Flex totally out
of the market.

Jonathan


--
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: If I buy a flex license can I host other peoples apps on the license?

2005-07-19 Thread Jonathan Bezuidenhout
Hi,

If you have ever worked for a large corp, you will know that in the
end, things are made up of small depts with maybe small pots of
budgets.  Only difference is that there are people that make
decisionson how the pot of money is spent.

And then there are committees that make decisions (e.g. corporate
architecture) - unless you have buy-in from all of those, they will
not go to bat for you.  Each of those have a voice in the end.  The
people that negotiate pricing is one of those groups.  If you end up
with several groups against you, then you are in trouble.

In our case, our app is considered important, but not critical by all
means. It was however the first one to use Flex and would have been an
example of what can be done.  Since we started working on it, the
corporate IT has taken a very different direction and large parts of
work is being sourced out to outside vendors.

We need many licenses because we have so many environments - we have
clustered weblogic instances over many different geographic regions -
for each of those, we have development, testing, staging and
production systems - they very quickly add up.  Unfortunately due to
the nature of what we do, you cannot just share a bunch of systems on
a single unix box or watever to save on licenses.

The fact that MM has just been taken over by Adobe is also not helping
the situation as it is creating more uncertainty.  They are not sure
if Flex is going to disappear or what the commitment is to it.  In our
case, other than selling us something, I do not believe anyone from MM
has ever contacted us again to try and maintain an ongoing
relationship (from what I know).

So all these things start to add up.  The fact that we can make
changes very quickly and create a very good quality product is not
necessarily the determining factor at the end of the day.

I think a big part of the problem is that we have a 'I told you so'
situation now.  We went for something proprietary, and now that we
need to expand, we are basically held to ransom.  That kind of thing
scares companies.  Flex did not go through the same amout of scrutiny
as other products to be officially approved and considered a strategic
direction.

We can sit here and postulate for hours and hours about how stupid all
of this is and how this is a drop in the bucket - and I agree. 
Unfortunately we are not the ones writing the cheque at the end of the
day.

Apparantly the sales person we are dealing with now is new to us -
maybe he will come up with something creative.

Jonathan


--
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: Flash Player 8 Beta - found problem??!!

2005-07-14 Thread Jonathan Bezuidenhout
I have not found any problems in our apps.  Performance is improved.

Jonathan


--
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] PieChart label

2005-05-25 Thread Jonathan Bezuidenhout
Hi,

How do I make a pie chart show its label even if it is 100% for one
item (i.e. only one slice for the whole pie)?  At the moment the
labels only show up when there is more then one slice present.

Thanks

Jonathan


 
Yahoo! Groups Links

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

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

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




Re: [flexcoders] Re: Flex on the Web

2005-05-20 Thread Jonathan Bezuidenhout
I can attest to this.

Our app has been developent for well over a year, and in production
for about 10 months, yet no-one on the outisde has ever seen it. 
Large companies have all kinds of business/competitive reasons for
releasing (or not as in our case) stuff to the outside world.

Also I can tell you that in our case, a typical (short) release cycle
lasts about 3 months, at least two of which is spent testing and about
3 weeks for development.  We connect to so many complex back-end
systems that testing is very difficult.  We have had about 4 releases
with Flex.

I think at any time we probably have 4 different environments with
stuff on the go at different stages and versions with development,
testing, staging, production.  Everything is spread out over several
different geographical regions.  Load balancers, hardware encryption
and tunneling, clusters for all of those.  So obviously we have more
than one Flex license ;)

Freqequent changes in requirements is where Flex really shines.  We
can make major changes on the Flex side in hours/days, whereas the
guys doing back-end systems often take days/weeks to do the equivalent
thing or whatever is needed to keep up with us.

Oops - I think I am beginning to sound like a salesman, but I thought
I would give a little view into my world.

Jonathan

On 5/20/05, David Mendels [EMAIL PROTECTED] wrote:
snip
  But many more are longer term projects.  I am aware of many
  Flex customers with development teams that have a 6-18 month development
  and testing cycle for large and complex applications. 
/snip


 
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: Announcing Flex Style Explorer

2005-05-18 Thread Jonathan Bezuidenhout
Excellent - I found how to set a style in LinkBar that I have never
been able to find.

Thanks

Jonathan


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

2005-05-13 Thread Jonathan Bezuidenhout
Thanks very much Matt, that did the trick.

On 5/12/05, Matt Chotin [EMAIL PROTECTED] wrote:
  
  
 
 You also need to set the thousandsSeparator to something other than , so
 that it doesn't interfere. 
 
   
  
  
  
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of jonbez
  Sent: Thursday, May 12, 2005 8:14 AM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] CurrencyFormatter 
  
 
   
 
 Hi Everyone,
  
  I need to be able to display an amount in the following format:
  
  15,99$
  
  I use the following currency formatter, but it does not seem to work.
  
  mx:CurrencyFormatter id=priceFormat precision=2
  rounding=nearest alignSymbol=right decimalSeparatorFrom=.
  decimalSeparatorTo=,/
  
  (The original amount comes in as 15.99).
  
  The above formatter works fine if I change the decimalSeperatorTo to
  . (which is of course not what I want).
  
  Any ideas?
  
  Thank you
  
  Jonathan
  
  
  
  
  
  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 the Yahoo! Terms of Service.


 
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 app re-packaged in a war and the flexbootstrap class path

2005-05-10 Thread Jonathan Bezuidenhout
Romain,

We had/have the same problem - I did some research at the time.

(I believe) the Flex server code uses a call with known compatibility
issues e.g. ServletContext.getRealPath(WEB-INF)...  this will work
fine on an exploded directory, but not necessarily in a war file -
depending on your app server.  (Of course I am assuming here - since I
have not seen their actual code).

I have put in a bug request for this many months ago, I would suggest
you do the same.

For now our deployment guys have to unexplode our war files on
multiple servers - and this is not acceptable in our clustered
environment as it requires manual intervention and they do not like it
and it makes Flex (an of course our app) look bad.

WebLogic is one of the main enterprise platforms, so I would expect
Flex to use internal server code that works properly on it.

Maybe someone else has found a different workaround.

Jonathan


 
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] XMLDecoder class

2005-05-04 Thread Jonathan Bezuidenhout
Matt,

We tried to convert the XMLObjectOutput (even with the help of MM
support) and we still ended up with something that was only about 97%
compatible.  You can always find cases of XML that it does not give
the same results for.

The danger is that if you guys change the internals of how HTTPService
does the deserialization, the our code will be old and out of sync.

I think it would be good if this code can be called externally (then
we do not have to see your gnarly code!).  Make it a public function.

Thanks

Jonathan

On 5/3/05, Matt Chotin [EMAIL PROTECTED] wrote:
  
  
 
 I do J  It's pretty gnarly so we haven't exposed it.  What are you trying to
 do?  The XMLObjectOutput class in the extras does a pretty decent
 deserialization job.  You could adjust that as appropriate to suit your
 needs I'm guessing. 
 
   
 
 Matt 
 
   
  
  
  
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Todd Matthews
  Sent: Tuesday, May 03, 2005 4:58 AM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] XMLDecoder class 
  
 
   
 
 Does anyone have the actual source for XMLEncode/XMLDecode method that
  the HTTPService implements?
  
  
  
  
  
  
  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 the Yahoo! Terms of Service.


 
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] crimson.jar flex runtime

2005-05-04 Thread Jonathan Bezuidenhout
I am sure it can - we just had the same problem with batik.jar.

In fact, to see weirdness being even weirder, copy the exact batik jar
files from the flex/jars into your regular WEB-INF/jars - you would
think duplicate but OK - unfortunately Flex does not like that.  As
soon as you access mxml pages that need to be recompiled, it gives
weird error messages like being unable to find global.css etc.

Jonathan

On 5/4/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  
 Hi, 
   
 Our flex application shares it's web app with another application that
 requires crimson.jar in the WEB-INF/lib directory. I found that this creates
 a conflict for the parser required for the mxmlc compiler  the compiler
 fails. If I exclude crimson.jar from the classpath during compile time, I am
 able to compile the swf. 
   
 My question is, does anyone know if having crimson.jar live in the flex web
 app could create other conflicts with flex during runtime? I am able to run
 the application with no problems that I can see, but am not sure what is
 going on under the hood and if there are other gotchas that I should be
 aware of. 
   
 thanks in advance for your help, 
   
 Laura 
  
  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 the Yahoo! Terms of Service.


 
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 with HitBox (HBX)

2005-03-30 Thread Jonathan Bezuidenhout

It is software to track people's beahviour and analyzes it

http://www.websidestory.com/services-solutions/hbx/overview.html

http://www.macromedia.com/macromedia/proom/pr/2001/websidestory.html

e.g. if you go to a page, and stay there for a couple of mins, or
click on certain things it can track it - so if you have a link or
something that is very popular and another thing that is not, they can
tell if it is popular or not etc.


On Wed, 30 Mar 2005 16:29:46 +0200, Robert Stuttaford
[EMAIL PROTECTED] wrote:
  You're going to have to tell us what a hit box is, first :)
  
  -Original Message-
  From: jonbez [mailto:[EMAIL PROTECTED] 
  Sent: 30 March 2005 04:24 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Flex with HitBox (HBX)
  
  
  
  Hi there,
  
  I have just received a request from our marketing dept to have HitBox
  included into our Flex app.  I know very little (OK - nothing) about
  it - so I wonder if anyone has any pearls of wisdom to share.
  
  I believe it is possible to connect it to ActionScript somehow, and
  use it that way.  Does anyone know if there is a better way to maybe
  integrate that with URLs/RemoteObjects or whatever.
  
  Thanks
  
  Jonathan
  
  
  
  
  
  
  Yahoo! Groups Links
  
  
  
  
  
  
  
  
  
  
  Yahoo! Groups Sponsor 
  
  ADVERTISEMENT
  
  
  
  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 the Yahoo! Terms of Service.


 
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 with HitBox (HBX)

2005-03-30 Thread Jonathan Bezuidenhout

Thanks very much Steven - great link.

Yes, we are looking at Cairngorm - however I am dealing with a one
year old legacy Flex app - yes there is such a thing - so radical
changes are not always easy.

Jonathan


On Wed, 30 Mar 2005 16:44:45 +0100, Steven Webster
[EMAIL PROTECTED] wrote:
 
 What you are actually asking about then is how to integrate with
 an analytics too; most analytics tools actually work by using
 Javascript or by exposing an XML over HTTP(s) or SOAP API.
 
 Rather than try and embed a hidden image (the common trick for
 analytics) you should look to see what integration technologies
 your particular analytics vendor supports (WebSideStory for
 instance, uses Cookies and JavaScript).
 
 There's an article on integrating with Omniture, which also
 uses a JavaScript and Cookie tracking mechanism, here:
 
 http://www.macromedia.com/devnet/flex/articles/analytic_app_print.html
 
 That's probably the starting point you are looking for.
 
 We have just (about) completed a major Flex app that has
 analytics requirements, and a piece of advice is that you
 need to have your customer (marketing dept) think very
 carefully about what information they want OUT of the
 analytics engine.with an RIA we break free of the
 concept of page-impressions, and analytics allows us to
 gain much more powerful metrics, by tracking significant
 business events that convey much more meaning about
 how users are using and not using your application, than
 page impressions can signify (ie if someone refreshes
 a page several times on online banking application, is
 it because they made seven bill payments, or is it because
 they failed seven times to pay one bill ?).
 
 If you just want to churn lots of guff out into the logs
 however, and impress a marketing department that will never
 actually use the info, just ask for it, then you should
 look to extending the Cairngorm Controller class to
 log events + corresponding data for every user-gesture.
 
 Good luck,
 
 Steven
 
 --
 Steven Webster
 Technical Director
 iteration::two
 
 This e-mail and any associated attachments transmitted with it may contain
 confidential information and must not be copied, or disclosed, or used by
 anyone other than the intended recipient(s). If you are not the intended
 recipient(s) please destroy this e-mail, and any copies of it, immediately.
 
 Please also note that while software systems have been used to try to ensure
 that this e-mail has been swept for viruses, iteration::two do not accept
 responsibility for any damage or loss caused in respect of any viruses
 transmitted by the e-mail. Please ensure your own checks are carried out
 before any attachments are opened.
 
 
  -Original Message-
  From: Jonathan Bezuidenhout [mailto:[EMAIL PROTECTED]
  Sent: 30 March 2005 16:27
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders] Flex with HitBox (HBX)
 
 
  It is software to track people's beahviour and analyzes it
 
  http://www.websidestory.com/services-solutions/hbx/overview.html
 
  http://www.macromedia.com/macromedia/proom/pr/2001/websidestory.html
 
  e.g. if you go to a page, and stay there for a couple of
  mins, or click on certain things it can track it - so if you
  have a link or something that is very popular and another
  thing that is not, they can tell if it is popular or not etc.
 
 
  On Wed, 30 Mar 2005 16:29:46 +0200, Robert Stuttaford
  [EMAIL PROTECTED] wrote:
You're going to have to tell us what a hit box is, first :)
  
-Original Message-
From: jonbez [mailto:[EMAIL PROTECTED]
Sent: 30 March 2005 04:24 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex with HitBox (HBX)
  
  
  
Hi there,
  
I have just received a request from our marketing dept to
  have HitBox
   included into our Flex app.  I know very little (OK -
  nothing) about
   it - so I wonder if anyone has any pearls of wisdom to share.
  
I believe it is possible to connect it to ActionScript
  somehow, and
   use it that way.  Does anyone know if there is a better way
  to maybe
   integrate that with URLs/RemoteObjects or whatever.
  
Thanks
  
Jonathan
  
  
  
  
  
  
Yahoo! Groups Links
  
  
  
  
  
  
  
  
  
  
Yahoo! Groups Sponsor
  
ADVERTISEMENT
  
  

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 the Yahoo! Terms of Service.
 
 
 
  Yahoo! Groups Links
 
 
 
 
 
 
  --
  No virus found in this incoming message.
  Checked by AVG Anti-Virus.
  Version: 7.0.308 / Virus Database: 266.8.5 - Release Date: 29/03/2005
 
 
 
 --
 No virus found in this outgoing message.
 Checked by AVG Anti-Virus.
 Version: 7.0.308 / Virus Database: 266.8.5 - Release Date: 29/03/2005
 
 
 Yahoo! Groups Links
 
 
 
 



 
Yahoo

Re: [flexcoders] Performance testing Flash-J2EE applications

2005-03-09 Thread Jonathan Bezuidenhout
I used the (free) Microsoft web application stress tool - it can record AMF.

http://www.microsoft.com/downloads/details.aspx?FamilyID=E2C0585A-062A-439E-A67D-75A89AA36495displaylang=en

You are getting the error because flashproxy only allows binary
communication - it is the servlet that is used to communicate with the
Flex back-end. OpenSTA cannot record binary content (AFAIK).

Jonathan


On Mon, 07 Mar 2005 20:31:59 -, t_msreddy [EMAIL PROTECTED] wrote:
 
 Hi
 I am trying to test the performance of my application which involves 
 flex mxml, actionscript classes which call backend J2EE code. What 
 are the tools out in the market which allows me to test this similar 
 to the test load test that we do on web applications.
 
 I tried OpenSTA but and tried to capture and play the test but I got 
 this error:
 -
 Error: Request received was not Flash-based (not of the binary AMF 
 protocol). 
 -
 
 Any ideas on what this error might be. Or if you know any tool let 
 me know.
 Thanks
 Madhu
 
 
 
 
 
 Yahoo! Groups Sponsor 
 
 ADVERTISEMENT
 
 
 
 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 the Yahoo! Terms of Service.




Re: [flexcoders] random flexcoders notes

2005-03-07 Thread Jonathan Bezuidenhout
I have been trying to get aroud the search problem by using a gmail
account and let everything just accumulate in there - then I can
search them. After many months my account is up to 5% usage, so there
is still a lot of space left.

Of course this only helps if you have a long history of topics saved.

Jonathan




getURL POST problems

2004-05-08 Thread Jonathan Bezuidenhout



Hi 
all,

I have the 
following problem. My Flex app gets to a point where its work is done, and 
it needs to pass control to a legacy CGI application which needs to receive 
several variables as a POST. Some of these variables exceed the limitthat 
you can have in a GET, so it must be done with a POST.

I think that 
getURL is the only way that I can pass control from a Flex app to a regularCGI 
app. HTTPService seems like it would have been ideal, but the problemis 
that the result that gets sent back cannot be used as HTML 
display.

So I am 
trying to get getURL to do a POST and send these variables, but it seems rather 
unwilling. At best it seems it only wants to do a GET. 


I have tried 
a variety of methods such as getURL('SnoopServlet.jsp, "_self", "POST") 
according the docs that I can find - but then how do I deal with the 
parameters? If I add them to the url as in 
getURL("SnoopServlet.jsp?aaa=bbb", "_self", "POST") then the compiler complains 
that "There is no property with name 'GET'"...

Can someone 
please give me a snippet of the proper way to do this or suggest a proper way to 
achieve this?

Thank 
you

Jonathan


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.679 / Virus Database: 441 - Release Date: 5/7/2004