[flexcoders] Flex and Vista 64

2008-08-18 Thread mvbaffa
Hi All,

Does Flex Builder 3.0 works with Vista x64

Thanks in advance



[flexcoders] Re: Flex and Vista 64

2008-08-18 Thread mvbaffa
Thank you all.

Is there any kind of parameters, something like to run in Windows XP 
compatibility and anything else 

I have 8Gb of memory and I want to use it and only Vista 64 allow me 
to do this.

Thanks again

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

 Flex Builder 3.0 works great on Vista Ultimate x64.
 John
 
 mvbaffa wrote:
  Hi All,
 
  Does Flex Builder 3.0 works with Vista x64
 
  Thanks in advance
 





[flexcoders] Re: Flex and Vista 64

2008-08-18 Thread mvbaffa
Thank you All very much

--- In flexcoders@yahoogroups.com, Claudio M. E. Bastos Iorio 
[EMAIL PROTECTED] wrote:

 Btw, keep in mind that for some kind of projects (working with IIS
 directories for example) you will need to run Flex as administrator.
 
  
 
 _
 
 Claudio M. E. Bastos Iorio
 
  http://www.blumer.com.ar/ http://www.blumer.com.ar
 
  
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of mvbaffa
 Sent: Monday, August 18, 2008 5:08 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Flex and Vista 64
 
  
 
 Hi All,
 
 Does Flex Builder 3.0 works with Vista x64
 
 Thanks in advance





[flexcoders] Re: AIR Features

2008-07-10 Thread mvbaffa
Thanks Jim, It worked Ok 


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

 Not in AIR natively.
 
 Have a look at http://aperture.fluorinefx.com/ though (Windows 
only).
 
 
 
 -Original Message-
 From: flexcoders@yahoogroups.com on behalf of Dimitrios Gianninas
 Sent: Wed 09/07/2008 20:00
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] AIR Features
  
 What you are asking in Windows specific and AIR is cross-platform, 
so this is not possible.
  
 Dimitrios Gianninas
 RIA Developer and Team Lead
 Optimal Payments Inc.
  
 
 
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of mvbaffa
 Sent: Wednesday, July 09, 2008 12:46 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] AIR Features
 
 
 
 Hi All,
 
 I have some experience in Flex but I wil develop my first 
application 
 in AIR. The are some features that I need and I do not know if they 
are 
 available in AIR, they are:
 
 - Call a COM object
 - Execute (shell) a DOS application
 
 Are these features avaiable in AIR 
 
 Thanks in advance
 
 
 
  
 
 -- 
 WARNING
 ---
 This electronic message and its attachments may contain 
confidential, proprietary or legally privileged information, which is 
solely for the use of the intended recipient.  No privilege or other 
rights are waived by any unintended transmission or unauthorized 
retransmission of this message.  If you are not the intended 
recipient of this message, or if you have received it in error, you 
should immediately stop reading this message and delete it and all 
attachments from your system.  The reading, distribution, copying or 
other use of this message or its attachments by unintended recipients 
is unauthorized and may be unlawful.  If you have received this e-
mail in error, please notify the sender.
 
 AVIS IMPORTANT
 --
 Ce message électronique et ses pièces jointes peuvent contenir des 
renseignements confidentiels, exclusifs ou légalement privilégiés 
destinés au seul usage du destinataire visé.  L'expéditeur original 
ne renonce à aucun privilège ou à aucun autre droit si le présent 
message a été transmis involontairement ou s'il est retransmis sans 
son autorisation.  Si vous n'êtes pas le destinataire visé du présent 
message ou si vous l'avez reçu par erreur, veuillez cesser 
immédiatement de le lire et le supprimer, ainsi que toutes ses pièces 
jointes, de votre système.  La lecture, la distribution, la copie ou 
tout autre usage du présent message ou de ses pièces jointes par des 
personnes autres que le destinataire visé ne sont pas autorisés et 
pourraient être illégaux.  Si vous avez reçu ce courrier électronique 
par erreur, veuillez en aviser l'expéditeur.
 
 
 
 
__
 This communication is from Primal Pictures Ltd., a company 
registered in England and Wales with registration No. 02622298 and 
registered office: 4th Floor, Tennyson House, 159-165 Great Portland 
Street, London, W1W 5PA, UK. VAT registration No. 648874577.
 
 This e-mail is confidential and may be privileged. It may be read, 
copied and used only by the intended recipient. If you have received 
it in error, please contact the sender immediately by return e-mail 
or by telephoning +44(0)20 7637 1010. Please then delete the e-mail 
and do not disclose its contents to any person.
 This email has been scanned for Primal Pictures by the MessageLabs 
Email Security System.
 
__





[flexcoders] Background Color of AdvancedDataGrid

2008-07-09 Thread mvbaffa
Hi All,

I am trying to change the background color of a row in response to a 
keyboard action. What I am doing is to drive the keyboard event and 
doing this:

 adgDatagrid.dataProvider[adgDatagrid.selectedIndex].verified = true;
 adgDatagrid.invalidateList();

When I call invalidateList the styleFunction defined in my 
AdvancedDataGrid is activated. This is working OK.

The styleFunction changes the foreground, because of another 
condition, perfectly. The problem is when I try to return a 
background style in the same styleFunction it does not change the 
backgroundColor. Below is my styleFunction code:


public function customStyleFunctionstyle(data:Object, 
col:AdvancedDataGridColumn):Object {
 try {
   if (data[source]) return {color:0x008000};
   if (data[verified]) return {backgroundColor:0x008000};
 }
 catch (err:Error) {}
return null;  
}


Can you help me !!!

Thanks in advance




[flexcoders] AIR Features

2008-07-09 Thread mvbaffa
Hi All,

I have some experience in Flex but I wil develop my first application 
in AIR. The are some features that I need and I do not know if they are 
available in AIR, they are:

- Call a COM object
- Execute (shell) a DOS application

Are these features avaiable in AIR 

Thanks in advance



[flexcoders] Re: Background Color of AdvancedDataGrid

2008-07-09 Thread mvbaffa
It worked !!!

Thank you very much

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

 --- In flexcoders@yahoogroups.com, mvbaffa mvbaffa@ wrote:
 
  Hi All,
  
  I am trying to change the background color of a row in response 
to 
 a 
  keyboard action. What I am doing is to drive the keyboard event 
and 
  doing this:
  
   adgDatagrid.dataProvider[adgDatagrid.selectedIndex].verified = 
 true;
   adgDatagrid.invalidateList();
  
  When I call invalidateList the styleFunction defined in my 
  AdvancedDataGrid is activated. This is working OK.
  
  The styleFunction changes the foreground, because of another 
  condition, perfectly. The problem is when I try to return a 
  background style in the same styleFunction it does not change the 
  backgroundColor. Below is my styleFunction code:
  
  
  public function customStyleFunctionstyle(data:Object, 
  col:AdvancedDataGridColumn):Object {
   try {
 if (data[source]) return {color:0x008000};
 if (data[verified]) return {backgroundColor:0x008000};
   }
   catch (err:Error) {}
  return null;  
  }
  
  
  Can you help me !!!
  
  Thanks in advance
 
 http://flexdiary.blogspot.com/2008/06/musings-on-advanceddatagrid-
 part-1.html





[flexcoders] Problem with showDataTips in LineChart

2007-06-15 Thread mvbaffa
Hi,

I have a LinheChart that simply does not show the Data Tips. I have 
already developed a dataTipFunction but it does not work. 

By the way the itemClick event does not work too

I cannot understand the dataTip and itemClick are working perfectly 
in a ColumnChart.

Did any of you had the same problem ???

See Code below

mx:LineChart x=27 y=64 id=annualChart height=379 
dataProvider={cotas} showDataTips=true
itemClick=annualChartClick(event) width=464
styleName=myLineChart axisTitleStyleName=titleStyle 
paddingLeft=0 paddingTop=0 dataTipFunction=showDataTip

mx:horizontalAxis
  mx:CategoryAxis dataProvider={cotas} categoryField=date 
labelFunction=dateLabel/
/mx:horizontalAxis

mx:horizontalAxisRenderer
  mx:AxisRenderer tickPlacement=none labelRotation=90
 canDropLabels=true canStagger=true
mx:axisStroke
  mx:Stroke color=#cc weight=3 alpha=.75/
/mx:axisStroke
  /mx:AxisRenderer
/mx:horizontalAxisRenderer

mx:verticalAxis
  mx:LinearAxis labelFunction=defineSaldo/
/mx:verticalAxis
  mx:verticalAxisRenderer
mx:AxisRenderer showLine=true styleName=verticalAxisStyle
mx:axisStroke
  mx:Stroke color=#cc weight=3 alpha=.75/
/mx:axisStroke
  /mx:AxisRenderer
/mx:verticalAxisRenderer
/mx:LineChart




[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-27 Thread mvbaffa
I am sure that no one has a solution so good as Flex. What will adobe 
do, wait for them to be close. 

I do not know what are Adobe plans, but if at this moment there is 
not a solution ready to use, I am afraid that this solution will only 
be avaiable when Microsoft will have Visual Studio 2007 ready to use 
and its technology ajusted and working well.

Two years ago Adobe had a lot of time. But now the clock is 
ticking 

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

 I think you are right that .NET support should be there, although I 
am
 not a .NET developer and probably never will be. I wonder if 
Microsoft
 could develop this solution? In theory they would have the best
 resources to understand .NET and enough people have figured out the
 protocols used in FDS that they should be able to develop this.
 
 Anyway, the big flaw in your argument is that Adobe doesn't need to
 built the solution when there is one on the market already.
 
 Paul
 
 
 --- In flexcoders@yahoogroups.com, mvbaffa mvbaffa@ wrote:
 
  I beleive that Adobe wants to increase its participation in 
  the software development market. .NET is very good and its number 
of 
  developers is huge. That's why they should not be fogotten. 
  
  This at least is naive.
  
  Adobe has one thing that Microsoft does not have, FLASH. This is 
the 
  key to success if it is well conducted. 
  
  I do not care about politics. I really do not care which is the 
winner 
  Microsoft or Adobe. The winner will be the one that can deploy 
good and 
  affordable products.
  
  --- In flexcoders@yahoogroups.com, Bjorn Schultheiss 
  bjorn.schultheiss@ wrote:
  
   Think again.
   
   
   
   On 27/04/2007, at 11:26 AM, mvbaffa wrote:
   
Everybody uses Windows, almost all the workstations are 
windows. 
  Macs
have IE working OK.
  
 





[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-27 Thread mvbaffa
You are rigth Jeffry. I am sure there are a lot of people that do not 
work with Windows. And that's OK. 

I just wanted to say that a lot of people works with Windows and 
Adobe is letting these developers with no support. I am sure you will 
agree that the number of windows developers is very high.

The first version of all releases of Flex are delivered first in ... 
WINDOWS.

I do not want to say that windows is better or worse than any other 
plataform. What I want to say is that they cannot be forgotten.

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

 
   I think this is true for many enterprises.  Not true for a lot of 
 developers.
 
 At 09:41 PM 4/26/2007, Bjorn Schultheiss wrote:
 
 Think again.
 
 
 
 On 27/04/2007, at 11:26 AM, mvbaffa wrote:
 
 Everybody uses Windows, almost all the workstations are windows. 
Macs
 have IE working OK.
 
 
 
 --
 Jeffry Houser, Software Developer, Writer, Songwriter, Recording 
Engineer
 AIM: Reboog711  | Phone: 1-203-379-0773
 --
 My Company: http://www.dot-com-it.com
 My Podcast: http://www.theflexshow.com
 My Blog: http://www.jeffryhouser.com
 Connecticut Macromedia User Group: http://www.ctmug.com





[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-26 Thread mvbaffa
FDS Express is free provided you use for one application per server 
and the server has only one CPU. 

This is not exactly what I would call free. In fact it seems to me 
that FDS Express was delivered this way to provide a way to develop 
and test applications, which is very good. 

With this kind of license agreement it can not be used in a 
production systems. Because if you need to upgrade your server you 
would pass from zero do US 6K. Or even if you use the same server and 
has two Flex application hosted you would be charged the same way.

The Big account maketing and commercial strategy of Adobe is very 
dangerous. Software is tipically constructed by small/medium companies
they are the ones that make things run. 

Remember IBM and its very good products. IBM is mainly devoted to big 
accounts, because of Mainframes, of course. They tried to transport 
this filosophy to Software, we all know what happened.

I hope Adobe knows what it is doing. If they are wrong we will loose 
Flex.


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

 On Monday 23 Apr 2007, mvbaffa wrote:
  And It's free !
 
 Isn't FDS Express free ?
 
  When Microsoft solves the restrictions for the XBAP sandbox, XAML
  Browser applications will be a true competitor of Flex.
 
 As long as you don't want to have small downloads. Or to work on 
Linux.
 
 -- 
 Tom Chiverton
 Helping to widespreadedly restore turn-key supply-chains
 on: http://thefalken.livejournal.com
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in 
England and Wales under registered number OC307980 whose registered 
office address is at St James's Court Brown Street Manchester M2 
2JF.  A list of members is available for inspection at the registered 
office. Any reference to a partner in relation to Halliwells LLP 
means a member of Halliwells LLP. Regulated by the Law Society.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named 
above and may be confidential or legally privileged.  If you are not 
the addressee you must not read it and must not use any information 
contained in nor copy it nor inform any person other than Halliwells 
LLP or the addressee of its existence or contents.  If you have 
received this email in error please delete it and notify Halliwells 
LLP IT Department on 0870 365 8008.
 
 For more information about Halliwells LLP visit www.halliwells.com.





[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-26 Thread mvbaffa
Everybody uses Windows, almost all the workstations are windows. Macs 
have IE working OK. The better solution was a cross plataform 
solution, that's why I've been working with Flex.

I expected, when I downloaded the alpha version of Flex 2.0, that at 
this moment Adobe would already havea .NET solution. But this it not 
true.

So maybe, and just maybe, it´s better to have a IE solution supported 
by a big company, like Microsoft, than to deploy an application 
constructed with Open Source solutions.

I would say that some of this Open Source solutions a very good, 
like, Fluorine, very well conducted by Zoltan. But what we need is a 
solution supported by another big company like Adobe.


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

 How will they become a true competitor when as I understand it, 
the XBAPs
 really only work in IE, so the whole cross-platform notion goes out 
the
 window, doesn't it?
 
 I think that WPF definitely has it's place... on the windows 
desktop. It is
 my opinion that it will be huge in making windows applications more 
rich and
 friendly experiences, but for now at least, I don't see it making 
the same
 headway in online applications.
 
 On 4/23/07, mvbaffa [EMAIL PROTECTED] wrote:
 
I would like to remember that Windows Communication Foundation 
has
  duplex, or callback services. That allows the server notify the
  clients of any server events. Sounds like FDS don't you think ???
 
  And It's free !
 
  FDS is still more easy to use and more complete. But WCF is 
getting
  there.
 
  When Microsoft solves the restrictions for the XBAP sandbox, XAML
  Browser applications will be a true competitor of Flex.
 
  --- In flexcoders@yahoogroups.com flexcoders%
40yahoogroups.com, dorkie
  dork from dorktown
 
  dorkiedorkfromdorktown@ wrote:
  
   you wrote,
   How many enterprise / companies do you know are shopping around 
for
   electronic forms built in PDF vs SAAS solutions? PDF is a danger
  in some
   organisations, it's something they want to put as much distance
  away from as
   possible and prefer to leave them buried in the Document 
Management
   Solution(s). I'm not saying it's not worth the persuit (I think
  MSFT has
   some stuff in this space as well, forgive me as I've not cared 
to
  look into
   what they are) but do so *NOT* at the expense of FLEX/RIA
  development
   world-wide.
  
   that's what i'm talking about! there is a goal here that i 
thought
  Flex/RIA
   was trying to address. i thought that was to make development 
and
  developers
   lives easier and add new and necessary features to progress 
that.
  
   i love flex. it is an amazing vehicle but i think we need to 
get the
   foundation built. the flex 2 framework is part of the 
foundation.
  the data
   services adapters on the server need to be part of that 
foundation.
  at least
   basic amf remoting deserializers / classes. half the benefit of
  flex is the
   data communications. client side *is* only half the application.
  
   flex builder - reasonably priced
   flex sdk - free (great for mass adoption)
   flex data services - out of reach for mass adoption of flex
  
   IMO that is the reason people would shop around to another 
solution.
  
   i don't see Silverlight's path in this market. if it does have
  something out
   of the box it will have a huge advantage.
  
  
   On 4/21/07, Scott Barnes scott.barnes@ wrote:
   
Paul,
   
How many enterprise / companies do you know are shopping 
around
  for
electronic forms built in PDF vs SAAS solutions? PDF is a 
danger
  in some
organisations, it's something they want to put as much 
distance
  away from as
possible and prefer to leave them buried in the Document
  Management
Solution(s). I'm not saying it's not worth the persuit (I 
think
  MSFT has
some stuff in this space as well, forgive me as I've not 
cared to
  look into
what they are) but do so *NOT* at the expense of FLEX/RIA
  development
world-wide.
   
2002 RIA Theory was written down, people bought it (I for one,
  hey he also
was the brains behind CF, so I owe my mortgage to his last 
idea,
  so figured
he'd be worth the second). It's 2007 and RIA is supposed to be
  bigger! Yet,
isn't as widespread.
   
So, Microsoft are looking to give developers access to three
  tiers of User
Experience through a more mature approach that goes beyond the
  runtime stck
with a focus on the developers initially, get them on firm
  footing, then go
look at the higher ends of town as by this point developers, 
whom
  are just
as important, have validated the substance of the technology 
on
  merit.
   
Good Experience
AJAX / HTML / CSS
   
Great Experience
Silverlight
   
Ultimate Experience
Windows Presentation Foundation
   
   
ASP.NET 2.0 has reduced effort by up to two-thirds since ASP 
1.0
  was
produced, I say this as being a Coldfusion

[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-26 Thread mvbaffa
I beleive that Adobe wants to increase its participation in 
the software development market. .NET is very good and its number of 
developers is huge. That's why they should not be fogotten. 

This at least is naive.

Adobe has one thing that Microsoft does not have, FLASH. This is the 
key to success if it is well conducted. 

I do not care about politics. I really do not care which is the winner 
Microsoft or Adobe. The winner will be the one that can deploy good and 
affordable products.

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

 Think again.
 
 
 
 On 27/04/2007, at 11:26 AM, mvbaffa wrote:
 
  Everybody uses Windows, almost all the workstations are windows. 
Macs
  have IE working OK.





[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-23 Thread mvbaffa
I would like to remember that Windows Communication Foundation has 
duplex, or callback services. That allows the server notify the 
clients of any server events. Sounds like FDS don't you think ??? 

And It's free !

FDS is still more easy to use and more complete. But WCF is getting 
there. 

When Microsoft solves the restrictions for the XBAP sandbox, XAML 
Browser applications will be a true competitor of Flex.

--- In flexcoders@yahoogroups.com, dorkie dork from dorktown 
[EMAIL PROTECTED] wrote:

 you wrote,
 How many enterprise / companies do you know are shopping around for
 electronic forms built in PDF vs SAAS solutions?  PDF is a danger 
in some
 organisations, it's something they want to put as much distance 
away from as
 possible and prefer to leave them buried in the Document Management
 Solution(s). I'm not saying it's not worth the persuit (I think 
MSFT has
 some stuff in this space as well, forgive me as I've not cared to 
look into
 what they are) but do so *NOT* at the expense of FLEX/RIA 
development
 world-wide.
 
 that's what i'm talking about! there is a goal here that i thought 
Flex/RIA
 was trying to address. i thought that was to make development and 
developers
 lives easier and add new and necessary features to progress that.
 
 i love flex. it is an amazing vehicle but i think we need to get the
 foundation built. the flex 2 framework is part of the foundation. 
the data
 services adapters on the server need to be part of that foundation. 
at least
 basic amf remoting deserializers / classes. half the benefit of 
flex is the
 data communications. client side *is* only half the application.
 
 flex builder - reasonably priced
 flex sdk - free (great for mass adoption)
 flex data services - out of reach for mass adoption of flex
 
 IMO that is the reason people would shop around to another solution.
 
 i don't see Silverlight's path in this market. if it does have 
something out
 of the box it will have a huge advantage.
 
 
 On 4/21/07, Scott Barnes [EMAIL PROTECTED] wrote:
 
Paul,
 
  How many enterprise / companies do you know are shopping around 
for
  electronic forms built in PDF vs SAAS solutions?  PDF is a danger 
in some
  organisations, it's something they want to put as much distance 
away from as
  possible and prefer to leave them buried in the Document 
Management
  Solution(s). I'm not saying it's not worth the persuit (I think 
MSFT has
  some stuff in this space as well, forgive me as I've not cared to 
look into
  what they are) but do so *NOT* at the expense of FLEX/RIA 
development
  world-wide.
 
  2002 RIA Theory was written down, people bought it (I for one, 
hey he also
  was the brains behind CF, so I owe my mortgage to his last idea, 
so figured
  he'd be worth the second). It's 2007 and RIA is supposed to be 
bigger! Yet,
  isn't as widespread.
 
  So, Microsoft are looking to give developers access to three 
tiers of User
  Experience through a more mature approach that goes beyond the 
runtime stck
  with a focus on the developers initially, get them on firm 
footing, then go
  look at the higher ends of town as by this point developers, whom 
are just
  as important, have validated the substance of the technology on 
merit.
 
  Good Experience
  AJAX  / HTML / CSS
 
  Great Experience
  Silverlight
 
  Ultimate Experience
  Windows Presentation Foundation
 
 
  ASP.NET 2.0 has reduced effort by up to two-thirds since ASP 1.0 
was
  produced, I say this as being a Coldfusion developer for 9 years 
I'm amazed
  at how fluent one is able to go from ASP to AJAX, so I can only 
hint that
  going from ASP.NET AJAX to Silverlight is going to be enormous in
  productivity gains and with the right tools, this hopefully 
should seem
  effortless. Steve.B looked like a loon when he jumped up and down 
about
  Developers, Developers, Developers but he was right, this is 
where the
  focus should be at the start of technology, expand when you get 
their
  blessing first and this is based off of uptake.
 
  Validating RIA? Hate to break the news to one and all, but 
Microsoft's
  focus is to stimulate the online/offline application market whom 
have been
  using DHTML solutions for years, to get more robust and scaleable 
by
  offering the above three tiers of experience potential. Flash has 
it's own
  agenda, and Microsoft isn't about to crush that - hence I why I 
echo, it's
  about co-existence not changing technology stacks.
 
  Adobe make great output, but I worry at times about the input as 
I know
  they can do better (similar with Microsoft, only reverse, great 
at input but
  at times need work on output). No two companies are perfect.
 
  I rant but I'm not buying Adobe's direction on this one - if I 
may say
  that clocked off MSFT's payroll and using Flex on my weekend(s).
 
 
  On 4/22/07, Paul DeCoursey [EMAIL PROTECTED] wrote:
  
 I agree that Adobe is ignoring a large market. The low cost 
remoting
   product kind of already exists 

[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-20 Thread mvbaffa
Adobe constructed a great product. The conception and architecture 
are excelent, but the comercial strategy is not so good.

Macromedia had something like 4 years ahead of Microsoft, since 
Flex 1.5, that was a very good product too. Macromedia insisted to 
to seel it for US$18 k, nobody bought it  Microsoft at that time 
did not exist in RIA Market.

Then Adobe came and Flex became more accessible. But Adobe charges 
FDS in US$ 20K and does not pay attention to .NET developers. Well it 
seems to me that this is another big mistake.

if Adobe continues with this kind of comercial strategy, i am afraid 
that our beloved Flex will loose the race.


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

 On 4/20/07, Michael Schmalle [EMAIL PROTECTED] wrote:
 
I have to put my 2 cents down for prosperity sake.
 
 4
 which is important :)
 
All you people that live in cities and constantly sicken 
yourselves by
  your own pollution, need to live on a mountain for a couple 
years, look back
  at what you say and see how hilarious it all is.
 
 
 I live near a desert? does that' coun't for isolation and freedom of
 thoughts? (Sorry in Australia, our mountains are hard to come by at 
times).
 
 
 
How many times can the battle of north and south be fought 
and... won?
  :)
 
 
 Until East  West figure out it's time to join in, and then we go on
 Springer... i got dibs on the chair throwing...
 
 
 
Listening to people engrossed in the politics of banter on the 
internet
  is much more funny than turning on the TV these days.
 
 
 They still have TV? you mean YouTube + TV can co-exist? next thing 
you'll
 say Silverlight and Flash can co-exist.. pft crazy talk.
 
 
 
Scott, your just a person that likes getting people talking 
regardless of
  the side your on. Your good at it to.
 
 
 Oh stop, you say that to all the Evangelists.. now you're making me 
blush
 *blush in ascii art*.
 
 
 
As far as Microsoft's world domination, I doubt it. No one 
ever 'wins'
  forever. I think most of the resistance you feel around your 
posts is
  exactly what Dave Wolf said... now theres options, people want 
choice. I
  guess that is what the market and developers 'against' Microsoft 
have been
  saying forever... WE WANT CHOICE!
 
 
 Watch what you wish for, you just may get it...
 
 
 
I think that is what being human is all about.
 
  Peace, Mike
 
 
 If I didn't have leg cramps right about now, i'd stand and applaud 
you :)
 (Seriously - Politics is bound to happen when you have to large 
corporations
 saying to all of you - try my stuff, no try mine, nooo try mine... 
and so
 on.. Adobe  Microsoft compete on a number of levels while at the 
same time
 - this will freak the kids out in the front row - without 
Microsoft, Adobe
 couldn't of gotten to where it is today. Without Microsoft Flash's
 penetration numbers wouldn't be where they are/were today (but its 
ok, no
 thanks required for the Updates / Default installs we put on the 
box when we
 ship etc). I should also mention sites like Honda, MySpace, YouTube 
and
 Movie Sites etc were also strong drivers in this space more so then 
us. Yet
 if i say this outloud then we could sober up a bit and no1 likes a 
buzz
 killer ;)
 
 Point: Lighten up folks, it's just technology - or should I say 
Silverlight,
 Light up the web! :)
 
 
 
 
 -- 
 Regards,
 
 Scott Barnes
 Developer Evangelist
 Microsoft - whom wrote this with GMAIL.. shhh, don't tell HQ or 
they'll dock
 my pay ...as Hotmail and GMAIl cannot co-exist at all! it's in the 
rules
 alongside Silverlight and Flash :)





[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-18 Thread mvbaffa
I've been working with Flex since its alpha version. Before the 
release version was avaiable I had an application with AMFPHP ready. 
That is I really love Flex and i have been working with it since it's 
1.5 version.

But I am a .NET developer, I have a huge legacy in .NET Framework 2.0 
and 1.1. I don't know why Adobe, up to this moment, is maintaining 
exclusive focus on Java. There are a lot of .NET developers that 
would like to have a server framework developed directly from Adobe.

Applications are not only Client, they need a strong and consistent 
server Framework. I beleive that if Adobe maintains its exclusive 
focus on java it will loose, very soon a good number of .NET 
developers. 

Communications Foundations is really good and it will be better very 
soon. And it's price is very good, it is free !

I am still working on the Microsoft framework. But I beleive that WPF 
and SilverLight can be very soon a real competitive alternative.

Marcus Baffa
NOVA Consulting

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

 Version 1 of Microsoft products have historically been slow,
 unapologizing in their copycat nature, and hampered by large numbers
 of major bugs and gaps in functionality.
 
 However, their astronomical cash reserves and relentless commitment 
to
 establish market share has almost always led to vastly improved
 products in version 2 and beyond.  So of course, Silverlight is no
 match for Flex - right now.  But if Microsoft sustains its 
commitment,
 it's not a question of *if* it could be almost as good as Flex -
 just a matter of when.
 
 I don't say this as a criticism of Microsoft (I use several of their
 products daily and love them), but rather to point out that they are
 more of a market force than a true software company - and so the
 relative success of Silverlight (or any other MS offering) is
 pre-ordained, so long as they decide that's what they want to do -
 it's independent of the present quality of the actual product.
 
 -Peter Demling
  Lexington, MA
 
 --- In flexcoders@yahoogroups.com, Scott Barnes scott.barnes@
 wrote:
 
  Claus,
  
  Yup, so that's why FLEX does have its unique offering vs 
SilverLight and
  once developers  designers unsubscribe from the notion it's 
a Flash
  Killer and do more of what you are doing (exploring it's upcoming
 release)
  you'll decide on what you think it's merits are vs aren't. It's
 early days
  yet, so wouldn't worry to much about it folks ;) just keep an 
open mind
  should you want to take it for a test-run post MIX07 :)
  
  WPF  SilverLight are going to have interesting prospects just 
like
 Apollo
  and FLEX will have it's own, I think the two will do different
 things for
  different people. Keep fingers in all barrels I'd say :)
  
  
  
  On 17 Apr 2007 03:30:22 -0700, Claus Wahlers claus@ wrote:
  
  
If you read FUD crap, ignore it on both sides and just be 
opened
 to the
idea that theres yet another channel of delivery in rich 
interactive
applications.
  
   Reading through the Silverlight docs, XAML looks to me like 
some weird
   kind of microsoftified SVG, spiced up with MP3 and WM codecs. 
I'm
 still
   searching but so far i couldn't find anything close to what Flex
 offers
   (what i found are some barely working and butt ugly component
   experiments). I'd guess that Silverlight will get some video 
market
   share, but it has a long way to go to enter the RIA market. My 2
 centavos.
  
   Cheers,
   Claus.
  
   --
   claus wahlers
   côdeazur brasil
   http://codeazur.com.br/
   http://wahlers.com.br/claus/blog/
   
  
  
  
  
  -- 
  Regards,
  Scott Barnes
  http://www.mossyblog.com
 





[flexcoders] Ownerdraw Panel Header

2007-04-17 Thread mvbaffa
Hi everybody 

I need to put buttons and a border in the Header of a Panel. In fact I 
need to simulate a Sliding Panel with a customized header. 

I have already found at Sho Kuwamoto a very good component that 
implements a sliding and floating panel. What I need now is to 
customize the header.

Can you help me 

Thanks in advance



[flexcoders] Re: Silent Download

2007-01-23 Thread mvbaffa
Hi Tom,

How can I do that 

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

 On Monday 22 January 2007 19:16, mvbaffa wrote:
  In fact Server 2 is a web server located in a Kiosk. The Flex 2 
App
  running at the Kiosk will have to show the movies on demand. So 
the
  movies will be downloaded from server 1 and stored on server 2.
 
 Your best having the Flex app ask the local server to fetch the 
file from the 
 remote server, and call some sort of callback (or poll until 
completed) when 
 it has arrived.
 
 -- 
 Tom Chiverton
 Helping to completely foster 24/365 functionalities
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in 
England and Wales under registered number OC307980 whose registered 
office address is at St James's Court Brown Street Manchester M2 
2JF.  A list of members is available for inspection at the registered 
office. Any reference to a partner in relation to Halliwells LLP 
means a member of Halliwells LLP. Regulated by the Law Society.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named 
above and may be confidential or legally privileged.  If you are not 
the addressee you must not read it and must not use any information 
contained in nor copy it nor inform any person other than Halliwells 
LLP or the addressee of its existence or contents.  If you have 
received this email in error please delete it and notify Halliwells 
LLP IT Department on 0870 365 8008.
 
 For more information about Halliwells LLP visit www.halliwells.com.





[flexcoders] How to Control an SWF movie

2007-01-23 Thread mvbaffa
Hi All,

How can I control an SWF movie, loaded by SWFLoader, as I do with an 
FLV file, loaded by VideoDisplay. With VideoDisplay I can be notified 
at the end of the movie, Cuepoints etc. 

I could not find events triggered by the SWFLoader control to monitor 
it's execution. Is there a way to do this 

Thanks in advance




[flexcoders] Re: Silent Download

2007-01-23 Thread mvbaffa
Thanks Tom,

I have a very good experience with the server side code. Specially 
in .NET. My Services are written in C#, with Fluorine.

Maybe I have to explain better my problem:

My application originally was designed to stream Flash Video Files. 
So The Kiosk would have only a browser. The application, services and 
SQL Server would be hosted in a contracted provider. The problem is 
that the cost for streaming was very high and it was not possible to 
used it.

So I am looking for another solution. 

My objective is to maintain the Kiosk functionally as thinner as I 
can. So I decided to install a web server on the Kiosk, with the Flex 
App running locally and maintain SQL Server and the services at the 
contracted provider. 

I understand that Kiosk App could call a local service asking to 
download the necessary FLV files but this solution would include more 
functionality at the client, and want to avoid it.

If there is not a better solution I beleive I will have to use this 
one, at least until Appollo is released.

Thank you very much Tom


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

 On Tuesday 23 January 2007 14:07, mvbaffa wrote:
  How can I do that 
 
 Do which bit ?
 It might also help if you explain any experience you have with 
server side 
 code.
 
 -- 
 Tom Chiverton
 Helping to ambassadorially build leading-edge portals
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in 
England and Wales under registered number OC307980 whose registered 
office address is at St James's Court Brown Street Manchester M2 
2JF.  A list of members is available for inspection at the registered 
office. Any reference to a partner in relation to Halliwells LLP 
means a member of Halliwells LLP. Regulated by the Law Society.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named 
above and may be confidential or legally privileged.  If you are not 
the addressee you must not read it and must not use any information 
contained in nor copy it nor inform any person other than Halliwells 
LLP or the addressee of its existence or contents.  If you have 
received this email in error please delete it and notify Halliwells 
LLP IT Department on 0870 365 8008.
 
 For more information about Halliwells LLP visit www.halliwells.com.





[flexcoders] Silent Download

2007-01-22 Thread mvbaffa
Hi all,

I have a Flex 2 app running in my intranet and I need to download 
SWF  files from an external server silently. 

That is I do not want to browse for a file source or destination. I 
already know what files must be downloaded and where to store them at 
my local web server. 

These are SWF files that will be stored in my local web server and 
will be loaded and played by a SWFLoader that is place in another 
Flex 2 app running in my intranet.

There two problems:

1) How can access and store files locally from a Flex 2 App;

2) How can I use FileReference without the dialog boxes that appear 
when I use the browse and download methods;

Thanks in advance



[flexcoders] Re: Silent Download

2007-01-22 Thread mvbaffa
Hi Daniel,

In fact Server 2 is a web server located in a Kiosk. The Flex 2 App 
running at the Kiosk will have to show the movies on demand. So the 
movies will be downloaded from server 1 and stored on server 2.

Maybe a better solution would be streaming the files, but this can be 
too much expensive for the project budget to contract a streaming 
hosting service.

Well thanks for you answer. I will download the files using the Flex 
App or any other development tool since FileReference cannot be used.

Thanks again

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

 If i understand this right, you want to copy a swf from server 1 to 
server 2
 and then have a client computer running an swf download the file 
from server
 2 into a flex app.
 
 I'd be shocked if you could use file reference silently because it 
would go
 against what i understand as the nature of the security model, but 
what you
 could do is call a webservice on the local web server that copies 
the files
 from the external server to the local web server and then have the 
swfloader
 load those files from the local web server.
 
 Tell me if I'm not understanding the problem correctly.
 
 - Dan
 
 On 1/22/07, mvbaffa [EMAIL PROTECTED] wrote:
 
Hi all,
 
  I have a Flex 2 app running in my intranet and I need to download
  SWF files from an external server silently.
 
  That is I do not want to browse for a file source or destination. 
I
  already know what files must be downloaded and where to store 
them at
  my local web server.
 
  These are SWF files that will be stored in my local web server and
  will be loaded and played by a SWFLoader that is place in another
  Flex 2 app running in my intranet.
 
  There two problems:
 
  1) How can access and store files locally from a Flex 2 App;
 
  2) How can I use FileReference without the dialog boxes that 
appear
  when I use the browse and download methods;
 
  Thanks in advance
 
   
 





[flexcoders] Flash Movie as Background of Flex App

2007-01-05 Thread mvbaffa
Hi All,

I need to use a flash movie as the background of a Flex component, 
Application or container, such as Panel.

Is it possible ?

Thanks in advance



[flexcoders] Cache of Flash Movies

2007-01-05 Thread mvbaffa
Hi,

I need to show flash movies in sequence, just like a slide show. The 
matter is that I am afraid that when the shown movie changes it can 
take a lot of time to start playing. There are some movies not so small.

I wonder if I can setup flash player or Flex 2.0 to define the a cache 
of movies so that I can maintain, at the client machine, a pre-defined 
working set, avoiding the constant download of swf's.

Does anyone had the same problem 

Thanks in advance



[flexcoders] Re: Embed or Load PDF File

2006-12-04 Thread mvbaffa
I will check the articles and try to convert the PDF's to FlashPaper.

Thanks to all of you

--- In flexcoders@yahoogroups.com, Darron J. Schall [EMAIL PROTECTED] 
wrote:

 If you would decide to take this approach, consider the recent 
articles 
 I've published on my weblog about FlashPaper and Flex 2 integration:
 
 How to load FlashPaper Documents in Flex 2 - 
 http://www.darronschall.com/weblog/archives/000249.cfm
 Batch Convert PDF files to FlashPaper 2 - 
 http://www.darronschall.com/weblog/archives/000250.cfm
 
 By converting the PDF to FlashPaper, you can load the FlashPaper 
 equivalent of the PDF report inside of a container in Flex 2.  It's 
not 
 exactly a trivial process, but it works well enough for my use 
cases so far.
 
 -d
 
 John Dowdell wrote:
 
  Options for similar effects:
 
  o Convert PDF to FlashPaper, which can be displayed in Adobe Flash
  Player, although I'm not sure offhand of invocation via Flex's 
MXML.
 





[flexcoders] Embed or Load PDF File

2006-12-01 Thread mvbaffa
Hi,

How can I load, on the fly, and/or embed a PDF in one of the Flex 2 
containers or loaders. I have a database of PDF's that should be 
displayed in my Flex 2 application.

I am now working with URL's pointing to these documents that are 
visualized directly in the browser, but I would like to show the them 
embeded in my flex container.

Can this be done 

Thansk in advance



[flexcoders] Re: Refreshing Model Locator Information

2006-11-27 Thread mvbaffa
Thanks Ralph,

I am already using the application structure defined by CairnGorm. It 
is really good, The problem is really the refreshing of the model. 

Well to maintain the client synchronized with the server, that is, to 
maintain the application state I presume the best situation is to 
develop some kind of server to client notification. 

This notification would, using sockets, notify the clients when some 
data is updated in the server, so that the client can ask for them 
when it is needed

Of all this is already done by FDS but if you are working with 
small/medium companies it cannot be used, for obviuos reasons. 

Because of some companies policies the firewall will block any kind 
of package that is comming from a port different than 80. So the 
best solution is to use HTTP to notify the client.

Services go from client to server and this kind of solution will need 
a server to client communication, which, I presume, it is built in 
Flex. So we must implement it.

Do you have already seen this kind of solution implemented before ??? 
Will sockets work ok with Flex 

Thanks,

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

 Hi.
 
 Here's how it should about work :
 The frontcontroller makes a call for the command you've sent out 
(let's say
 it's executed upon a user gesture), and will call the refresh 
action on the
 specific service. When the service gets updated the servicedelegate 
can
 handle the result, and put it in the model. Based on what it is, 
you need to
 enable binding on that property you set in the model, and have 
views binded
 to that.
 
 Let's say you are getting an xml from the service. The service 
delegate sets
 the resulting data set (let's say an arraycollection) on the model. 
With
 databinding you can bind to that property in the model, and the 
update would
 be handled.
 Now for a simple app this is all ok, but let's say your appstate 
changes,
 and your view should change state with that. Now that is something 
cairngorm
 is kind of open about; it's pretty much up to you on how you handle 
those
 kind of changes on the view.
 
 Regards,
 Ralph.
 
 On 11/23/06, mvbaffa [EMAIL PROTECTED] wrote:
 
Hi All,
 
  A have a new project that a I want to include the Model Locator.
  I have already developed other projects in Flex using the Front
  Controller, Commands and other patterns but I have not included 
the
  Model Locator.
 
  As far I could learn the Model Locator will store the state of the
  Application, and, as stated, the state must be maintained at
  the Client.
 
  Well that's OK, but what about the changes occured in the Database
  that needs to be refreshed. For instance, if I have a Datagrid 
that
  list all my orders, and a new order has been included by another
  user. How will this information be updated at the clients 
 
  I am not using Data Services, I am working with RPC, so I
  need manually refresh my client. Is there a suggested procedure 
to
  notify the clients that they must refresh their ArrayCollection,
  stored at the Model Locator 
 
  How do you take care of this refresh 
 
  Thanks in advance.
 
   
 
 
 
 
 -- 
 Ralph Hauwert
 FlashCoder





[flexcoders] Refreshing Model Locator Information

2006-11-23 Thread mvbaffa
Hi All,

A have a new project that a I want to include the Model Locator. 
I have already developed other projects in Flex using the Front 
Controller, Commands and other patterns but I have not included the 
Model Locator.

As far I could learn the Model Locator will store the state of the 
Application, and, as stated, the state must be maintained at 
the Client.

Well that's OK, but what about the changes occured in the Database 
that needs to be refreshed. For instance, if I have a Datagrid that 
list all my orders, and a new order has been included by another 
user. How will this information be updated at the clients 

I am not using Data Services, I am working with RPC, so I 
need manually refresh my client. Is there a suggested procedure to 
notify the clients that they must refresh their ArrayCollection, 
stored at the Model Locator 

How do you take care of this refresh 

Thanks in advance.






[flexcoders] Re: Convert Object to a Value Object

2006-11-03 Thread mvbaffa
Hi all,

Thanks for your help. I was out for a few days, but today I will 
try, using your advises, to solve the problem.

Thank you very much

--- In flexcoders@yahoogroups.com, Darron J. Schall [EMAIL PROTECTED] 
wrote:

 Interesting, Yahoo garbled most of the content of that message.  
Here's 
 what I actually sent:
 
 For those having trouble converting generic objects into class 
instances 
 (Value Objects), I've created an ObjectTranslator.objectToInstance 
 method to take care of the problem: 
 http://www.darronschall.com/weblog/archives/000247.cfm
 
 Essentially, it allows you to convert any plain old object into a 
class
 instance.  Usage is as follows:
 
 import com.darronschall.examples.vo.Book;
 import com.darronschall.serialization.ObjectTranslator;
 
 // Define an object with properties that mimic the variable names
 // inside of the Book class
 var bookObj:Object = { title: My Book title, pageCount: 10, 
inLibrary: true };
 
 // Convert the generic object into an instance of the Book class
 var book:Book = ObjectTranslator.objectToInstance( bookObj, Book ) 
as Book;
 
 
 Originally it was written so that JSON behaved more like 
RemoteObject 
 (returning class instances from the server instead of just plain 
 objects), but the method is generic enough to be useful in a lot 
of 
 situations.
 
 Hope that helps...
 
 -d
 
 Darron J. Schall wrote:
 
  Originally it was written so that JSON behaved more like 
RemoteObject 
  (returning class instances from the server instead of just plain 
  objects), but the method is generic enough to be useful in a lot 
of 
  situations.
 
  Hope that helps...
 
  -d
 
  mvbaffa wrote:
 
 
  - Type Coercion failed: cannot convert [EMAIL PROTECTED] to
  com.mvb.boe.vo.UserAccountVO.
 
 
 






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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Convert Object to a Value Object

2006-10-28 Thread mvbaffa
Hi All,

This is pretty basic but I cannot find the problem. I have service 
that returns a userAccountVO. When I receive the result I am trying 
to convert the event.result, that is an Object, to UserAccountVO and 
I receive an error:

- Type Coercion failed: cannot convert [EMAIL PROTECTED] to 
com.mvb.boe.vo.UserAccountVO.

Well the code is very simple like this:

var userAccount: UserAccountVO = new UserAccountVO();
userAccount = UserAccountVO(event.result);

In another application I had the same problem but solved it 
assigning the properties one by one.

What is the problem 

Thanks in advance.






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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Fill Color and Legend Scroll bars of ColumnChart

2006-10-21 Thread mvbaffa
Hi All,

I am using for the first time the ColumnChart. I need to do some 
things in ActionScript and could not find an example or explanation in 
the documentation. 

I need to:

1) Set the Fill color of a bar in ActionScript. I could not find a 
fill property or something like this

2) I need to define, in actionscript, a scroll policy to the legend so 
that I can view the name of the series when its number is bigger then 
the area reserved for the legend object.

Thansk in advance





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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: Flash 9 for PDAs and mobile cell phones

2006-09-27 Thread mvbaffa
Thanks you all
--- In flexcoders@yahoogroups.com, mvbaffa [EMAIL PROTECTED] wrote:

 Hi All,
 
 Is there a version of Flash 9 for PDAS and cell phones minibrowsers
 
 Thanks in advance








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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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




[flexcoders] Flash 9 for PDAs and mobile cell phones

2006-09-22 Thread mvbaffa
Hi All,

Is there a version of Flash 9 for PDAS and cell phones minibrowsers

Thanks in advance





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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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




[flexcoders] Flex Application Deployment Error

2006-07-28 Thread mvbaffa
Hi All,

I have a very strange deployment problem with my Flex 2.0 
application. I hope someone can help.

I have developed an application with AMFPHP. In my development 
machine my services reside in my 
wwwroot (I use IIS) directory and I have created a Virtual Directory 
pointing to it. 
My Flex application is in a directory in drive D:. 

Everything is working OK and now I have to move the application to 
my production server. I have put 
my services in wwwroot of this server and I have also created the 
virtual directory and my Flex 
application is in a directory in Drive C: 

The AMFPHP gateway is in my localhost so Flex application and 
services are in the same machine. But in my
production server the application is not running. Even when I have 
installed flex and run the application
from inside it I receive the same error.

The error is the following:

Error #2044: Unhandled SecurityErrorEvent:. text=Error #2048: 
Security sandbox violation: 
file://C:\XXX\YYY\bin\ZZZ.swf cannot load data from 
http://localhost/KKK/gateway.php.

Where XXX: is my Flex Applications Directory
  : is my Application Directory
  ZZZ: my Flex Application
  KKK: Virtual Directory where the services reside

To try to resolve the problem I have put a crossdomain.xml in the 
wwwroot directory of my IIS. The 
crossdomain content is listed below:

?xml version=1.0?

!DOCTYPE cross-domain-policy 
SYSTEM http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd;
cross-domain-policy
   allow-access-from domain=localhost /
   allow-access-from domain=127.0.0.1 /
   allow-access-from domain=172.16.10.38 /
/cross-domain-policy

And it is still with the same error. I don't know what to do.

Thanks in advance






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

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

* 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: Flex Application Deployment Error

2006-07-28 Thread mvbaffa
Dave It worked OK 

Thanks you very much 

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

 Since your SWF is being loaded from disk (as per the error message)
 adding localhost to the domain list won't help because localhost !=
 file:// URI.  Try just opening it all the way up for right now.
 
 
 ?xml version=1.0?
 
 !DOCTYPE cross-domain-policy SYSTEM
 http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd;
 cross-domain-policy
allow-access-from domain=* /
 /cross-domain-policy
 
 Does that work for you?
 
 -- 
 Dave Wolf
 Cynergy Systems, Inc.
 Adobe Flex Alliance Partner
 http://www.cynergysystems.com
 http://www.cynergysystems.com/blogs
 
 Email:  [EMAIL PROTECTED]
 Office: 866-CYNERGY
 
 --- In flexcoders@yahoogroups.com, mvbaffa mvbaffa@ wrote:
 
  Hi All,
  
  I have a very strange deployment problem with my Flex 2.0 
  application. I hope someone can help.
  
  I have developed an application with AMFPHP. In my development 
  machine my services reside in my 
  wwwroot (I use IIS) directory and I have created a Virtual 
Directory 
  pointing to it. 
  My Flex application is in a directory in drive D:. 
  
  Everything is working OK and now I have to move the application 
to 
  my production server. I have put 
  my services in wwwroot of this server and I have also created 
the 
  virtual directory and my Flex 
  application is in a directory in Drive C: 
  
  The AMFPHP gateway is in my localhost so Flex application and 
  services are in the same machine. But in my
  production server the application is not running. Even when I 
have 
  installed flex and run the application
  from inside it I receive the same error.
  
  The error is the following:
  
  Error #2044: Unhandled SecurityErrorEvent:. text=Error #2048: 
  Security sandbox violation: 
  file://C:\XXX\YYY\bin\ZZZ.swf cannot load data from 
  http://localhost/KKK/gateway.php.
  
  Where XXX: is my Flex Applications Directory
: is my Application Directory
ZZZ: my Flex Application
KKK: Virtual Directory where the services reside
  
  To try to resolve the problem I have put a crossdomain.xml in 
the 
  wwwroot directory of my IIS. The 
  crossdomain content is listed below:
  
  ?xml version=1.0?
  
  !DOCTYPE cross-domain-policy 
  SYSTEM http://www.macromedia.com/xml/dtds/cross-domain-
policy.dtd
  cross-domain-policy
 allow-access-from domain=localhost /
 allow-access-from domain=127.0.0.1 /
 allow-access-from domain=172.16.10.38 /
  /cross-domain-policy
  
  And it is still with the same error. I don't know what to do.
  
  Thanks in advance
 









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

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

* 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: Flex 2 .0 and .NET

2006-07-18 Thread mvbaffa
Thanks everybody

FDS is not a must. If I had a reliable remoting solution I would be 
very happy. 

I have already downloaded fluorine, I will try with some internal 
projects, maybe this is the solution.

Thanks again.

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

 I have had excellent results using the open source Fluorine 
project on
 several internal projects. It doesn't support all the features of 
FDS
 like WebORB but you do get full AMF3 remoting capabilities 
with .NET 1.1
 and 2.0.
 
  
 
 With the results I have had this far I will likely use Fluorine on 
more
 and more projects in the future. My only complaint so far is that
 ServiceCapture doesn't work with Fluorine but the maker of
 ServiceCapture seemed to be open to looking into this if I provide 
a
 test server and application for him.
 
  
 
 Hope this helps,
 
 Lance
 
  
 
 
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of Sajid Hussain
 Sent: Tuesday, July 18, 2006 1:22 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Flex 2 .0 and .NET
 
  
 
 Hi ,
 
 See these two links for .net remoting support in Flex ,its a open 
source
 project which allow  remoting support,well 
 
 I dint use htis ..but I read ..might be it could help u .
 
 if ur project suceed with this then let us Know 
 
 Thanks...
 
  
 
 http://fluorine.thesilentgroup.com/
 
 http://fluorine.thesilentgroup.com/fluorine/index.html
 
 - Original Message 
 From: mvbaffa [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Tuesday, July 18, 2006 3:01:31 AM
 Subject: [flexcoders] Flex 2 .0 and .NET
 
 Hi everybody,
 
 I have a huge legacy in C#, and I would like to use it with Flex 
2.0.
 As long as I know there only a few solutions still in alpha like 
 fluorine and some other, fot Remoting with .NET.
 
 I have worked with AMFPHP and it works OK, but I would like to 
have a 
 Remoting solution for .NET.
 
 WebORB seems to be OK but my project cannot afford it.
 
 I know this issue has been discussed some time ago, but as the 
time 
 passes some other new solutions may appear.
 
 Does anyone knows a good and reliable solution for Remoting 
with .NET 
 and Flex 2
 
 Thanks in advance








 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/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] Flex 2 .0 and .NET

2006-07-17 Thread mvbaffa
Hi everybody,

I have a huge legacy in C#, and I would like to use it with Flex 2.0.
As long as I know there only a few solutions still in alpha like 
fluorine and some other, fot Remoting with .NET.

I have worked with AMFPHP and it works OK, but I would like to have a 
Remoting solution for .NET.

WebORB seems to be OK but my project cannot afford it.

I know this issue has been discussed some time ago, but as the time 
passes some other new solutions may appear.

Does anyone knows a good and reliable solution for Remoting with .NET 
and Flex 2

Thanks in advance






 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/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: How Flex can be receive a Server Notification

2006-07-07 Thread mvbaffa
Hi All, Thanks all of you for your answers. 

I understand that FDS can notify the client when information is  
updated in the server. But I am not using FDS.

This application uses AMFPHP, so I will have to use another method 
for notification.

- Do you know any documentation for using sockets in Flex ???
- Is it possible ?
- Is there any other method 

Thanks


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

 Hi,
 
 This is one of the core goals of Flex Data Services:
 http://snipurl.com/FDS_DS
 
 -David 
 
  -Original Message-
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of mvbaffa
  Sent: Thursday, July 06, 2006 5:54 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] How Flex can be receive a Server 
Notification
  
  Hi All,
  
  I have a flex 2.0 application that need to be notified when 
  an event occurs at the server. 
  
  I could start a timer at the flex client and poll 
  periodically the server, but this can be too heavy for 
  specific tasks. The better solution is to notified.
  
  Maybe the solution is to listen to a socket and let the 
  server process connect to the flex client.
  
  - Is this the best solution 
  - If yes where should I look for examples of socket 
  programming in actionscript 
  
  Thanks in advance
  
  
  
  
  
  
   Yahoo! Groups Sponsor 
  ~-- Yahoo! Groups gets a make over. See 
  the new email design.
  http://us.click.yahoo.com/XISQkA/lOaOAA/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 ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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: How Flex can be receive a Server Notification

2006-07-07 Thread mvbaffa
Thanks,

I'll check it out

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

 PHP 4+ supports text sockets.  I've managed to get Flex to talk to 
PHP via 
 XMLSocket.  The problem is, all the professional (and open source) 
socket 
 servers out there are in Java.  The example I found in Google 
works, but... 
 it's only allowed me to connect.  Sending messages didn't work, 
but I akin 
 that to the fact I'm not a very good PHP coder.
 
 Check on Google for php xmlsocket flash and it should come up.
 
 - Original Message - 
 From: mvbaffa [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Friday, July 07, 2006 12:12 AM
 Subject: [flexcoders] Re: How Flex can be receive a Server 
Notification
 
 
 Hi All, Thanks all of you for your answers.
 
 I understand that FDS can notify the client when information is
 updated in the server. But I am not using FDS.
 
 This application uses AMFPHP, so I will have to use another method
 for notification.
 
 - Do you know any documentation for using sockets in Flex ???
 - Is it possible ?
 - Is there any other method 
 
 Thanks
 
 
 --- In flexcoders@yahoogroups.com, David Mendels dmendels@
 wrote:
 
  Hi,
 
  This is one of the core goals of Flex Data Services:
  http://snipurl.com/FDS_DS
 
  -David
 
   -Original Message-
   From: flexcoders@yahoogroups.com
   [mailto:[EMAIL PROTECTED] On Behalf Of mvbaffa
   Sent: Thursday, July 06, 2006 5:54 PM
   To: flexcoders@yahoogroups.com
   Subject: [flexcoders] How Flex can be receive a Server
 Notification
  
   Hi All,
  
   I have a flex 2.0 application that need to be notified when
   an event occurs at the server.
  
   I could start a timer at the flex client and poll
   periodically the server, but this can be too heavy for
   specific tasks. The better solution is to notified.
  
   Maybe the solution is to listen to a socket and let the
   server process connect to the flex client.
  
   - Is this the best solution 
   - If yes where should I look for examples of socket
   programming in actionscript 
  
   Thanks in advance
  
  
  
  
  
  
    Yahoo! Groups Sponsor
   ~-- Yahoo! Groups gets a make over. See
   the new email design.
   http://us.click.yahoo.com/XISQkA/lOaOAA/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








--
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 Flex can be receive a Server Notification

2006-07-06 Thread mvbaffa
Hi All,

I have a flex 2.0 application that need to be notified when an event 
occurs at the server. 

I could start a timer at the flex client and poll periodically the 
server, but this can be too heavy for specific tasks. The better 
solution is to notified.

Maybe the solution is to listen to a socket and let the server process 
connect to the flex client.

- Is this the best solution 
- If yes where should I look for examples of socket programming in 
actionscript 

Thanks in advance






 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/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: Flash player is not a debugger?

2006-06-30 Thread mvbaffa
Hi Matt

I have problems with debugging since I have installed version beta 
3. I had to install FireFox to debug, but for some reason, FireFox, 
some time later, began to crash.
My problem is that when I try to debug, with FireFox or IE, the 
browser crashes. 

YES IT CRASHES ! No message box or any other message.

And I realized that other persons have a similar problem. So I 
followed all the steps in the article indicated by you:

- I have unistalled the flash player. I checked it out and the 
  players, Active X and plug-in were really uninstalled;
- Downloaded the new flash player debug and installed the plug-in;
- To confirm if the player installed was the right one I followed
  the link www.adobe.com/products/flash/about/ and realized that 
  version installed is 9,0,16,0. Which is the standard version.

Is there any problem with the new debug version. When I install the 
new debug version, what is installed in fact is the standard version.

Can you help me 

Thanks

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

 Howdy all, go here:
 http://www.adobe.com/support/flashplayer/downloads.html and take a 
look
 at the tech note and resolution.  New debugger players are 
available for
 download.
 
  
 
 Thanks for your patience and sorry for the inconvenience, this one 
fell
 through the cracks...
 
  
 
 Matt
 
  
 
 
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of Matt Chotin
 Sent: Thursday, June 29, 2006 11:08 AM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] Re: Flash player is not a debugger?
 
  
 
 Hey folks, 
 
 I have some people on the Player team thinking about this and we 
have a
 theory that I'm not quite ready to share. Give us a few hours to 
work
 on this more internally, we think you're running into a security
 restriction.
 
 Thanks for your patience,
 
 Matt
 
 -Original Message-
 From: flexcoders@yahoogroups.com mailto:flexcoders%
40yahoogroups.com
 [mailto:flexcoders@yahoogroups.com mailto:flexcoders%
40yahoogroups.com
 ] On
 Behalf Of Tom Chiverton
 Sent: Thursday, June 29, 2006 8:44 AM
 To: flexcoders@yahoogroups.com mailto:flexcoders%
40yahoogroups.com 
 Subject: Re: [flexcoders] Re: Flash player is not a debugger?
 
 On Thursday 29 June 2006 16:26, Daniel Tuppeny wrote:
  you meant the clever stuff you see if you edit things like
 explorer.exe
  - they get copied back from a secret copy! (I even wiped that at 
the
 
 I thought that was that.
 
 Oh well. 
 
 Stupid O/S.
 
 -- 
 Tom Chiverton
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in 
England
 and Wales under registered number OC307980 whose registered office
 address is at St James's Court Brown Street Manchester M2 2JF. A 
list
 of members is available for inspection at the registered office. 
Any
 reference to a partner in relation to Halliwells LLP means a 
member of
 Halliwells LLP. Regulated by the Law Society.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named 
above and
 may be confidential or legally privileged. If you are not the 
addressee
 you must not read it and must not use any information contained in 
nor
 copy it nor inform any person other than Halliwells LLP or the 
addressee
 of its existence or contents. If you have received this email in 
error
 please delete it and notify Halliwells LLP IT Department on 0870 
365
 8008.
 
 For more information about Halliwells LLP visit www.halliwells.com.
 
 We are pleased to announce that Halliwells LLP has been voted AIM 
Lawyer
 of the Year at the 2005 Growth Company Awards
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
 http://www.mail-archive.com/flexcoders%40yahoogroups.com  
 Yahoo! Groups Links








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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: Cold Fusion And Flex 2

2006-06-30 Thread mvbaffa
Thanks to everybody

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

 The install is an update to CF, not additional software.  It 
include
 cumulative bug fixes to CF MX 7, so I expect most providers to 
install
 it early.
 
 Regards,
 David 
 
  -Original Message-
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Knudsen
  Sent: Saturday, June 17, 2006 9:08 AM
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders] Cold Fusion And Flex 2
  
  depends on how you want to retrieve your data.  If you use 
  WebServices or REST via HTTPService, no need to install 
  anything.  Only need the install if you want to use 
RemoteObjects.
  
  DK
  
  On 6/17/06, mvbaffa [EMAIL PROTECTED] wrote:
   Hi all,
  
   I am considering to use Flex and Cold Fusion for a new 
  application. It 
   seems that this is a very good integration and combination.
  
   The problem is that this application will run on a public 
provider 
   that already have Cold Fusion MX 7 installed. It is very 
  difficult to 
   find a provider that will accept to install any additional 
  software at 
   his production server
  
   Is it necessary that Cold Fusion/Flex Connectivity be 
  installed in the 
   production server or this is only a development plug-in 
  
   Thanks in advance
  
  
  
  
  
  
  
   --
   Flexcoders Mailing List
   FAQ: 
  http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
   Search Archives: 
   http://www.mail-archive.com/flexcoders%40yahoogroups.com
   Yahoo! Groups Links
  
  
  
  
  
  
  
  
  
  --
  Douglas Knudsen
  http://www.cubicleman.com
  this is my signature, like it?
  
  
   Yahoo! Groups Sponsor 
  ~-- 
  See what's inside the new Yahoo! Groups email.
  http://us.click.yahoo.com/2pRQfA/bOaOAA/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 ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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: Jason Hawryluk: Flash debug player - a workaround

2006-06-30 Thread mvbaffa
Hi Daniel,

I unistalled/reinstalled Flex Builder but I cannot find Flash9.ocx. 
In Windows/system32/Macromed/flash I can only find FlDbg9.ocx.

I cannot reinstall my machine now !!

Where are the files you are talking ?

Thanks

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

 For Jason Hawryluk, and anyone else that'd been having issues 
getting
 the debug player working, I've found a way, but it's not 
very nice...!
  
 I uninstalled/reinstalled anything with no joy, so I got the 
release
 player from the Adobe site, and made sure I can run Flex projects 
in Run
 mode, but get the error when trying in Debug mode.
  
 Then I renamed the Flash9.ocx file, and duplicated the debug 
version,
 and named it that. Now it loads the debug player in place of the 
release
 player all the time. Not ideal, but it means I can debug! Since all
 other machines are fine, we can still run it in the proper release
 player for testing elsewhere.
  
 It'll keep me going for today, and if there's no real fix from 
Adobe, my
 machine will be rebuilt next week.
  
 Danny
 
 The information contained in this e-mail and/or any attachments is 
confidential and intended only for the individual(s) to which it is 
addressed. If you are not named as an addressee you must not 
disclose, copy or take any action in reliance of this transmission. 
This e-mail and its attachments have been scanned for viruses by 
MessageLabs Ltd.
 
 
_
_
 This email has been scanned by the MessageLabs Email Security 
System.
 For more information please visit http://www.messagelabs.com/email 
 
_
_







 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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] Flex Debug - I am allmost giving up - this is my last message

2006-06-30 Thread mvbaffa
Hi everybody,

This is my last message about this problem. Flex is fantastic, I am 
using it since alpha version.

I have an application ready to deploy that I have finished without a 
debug (the older will remember old times when debugging was done 
with Alert boxes). 

I hoped that with the release version I could debug again, but this 
is not true. I cannot use a development tool that does not have a 
debugger and I cannot reinstall my development workstation everytime 
a new nersion is released.

I have downloaded the new debug version of Flash player 9, installed 
it and after that the version is still 16 (standard version), not 15 
(debug version).

And  the browser is still crashing.

The problem is occuring since I have installed beta 3 (two months 
ago). My problem is that the browser craches and Windows shows me a 
message box telling that IE encountered a problem with an add-on and 
needs to close. And the add-on is Fldbg9.ocx.

This is the fourth message and I beleive that Adobe should take care 
of it.

Thanks in advance








 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/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: Flex Debug - I am allmost giving up - this is my last message

2006-06-30 Thread mvbaffa
Thanks Jason,

I have only Unistalled Beta 3. But I have already run the flash 
player uninstaller before installing the new debug version of Flash 
9.

With Beta 2 it was working OK, When I have installed beta 3, IE 
stopped working and I have installed FireFox that worked for some 
time. 

I remember that just before a debugging session The Windows Firewall 
insformed that java was trying go out and asked me if I wanted to 
block it, and I choose to continue blocking. Since then the debugger 
stopped for FireFox too and I could not debug.

I am sure this is a security issue but I am not able to find it 

Thanks



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

 Did you uninstall flex b3, and did you run 
Player_B3_Uninstaller_05-08.exe
 before installing the final version?
 
 Also ensure that you have removed the older flash9.ocx from your 
computer?
 
 Jason
 
 
   -Message d'origine-
   De : flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] la
 part de mvbaffa
   Envoyé : vendredi 30 juin 2006 15:56
   À : flexcoders@yahoogroups.com
   Objet : [flexcoders] Flex Debug - I am allmost giving up - this 
is my last
 message
 
 
   Hi everybody,
 
   This is my last message about this problem. Flex is fantastic, I 
am
   using it since alpha version.
 
   I have an application ready to deploy that I have finished 
without a
   debug (the older will remember old times when debugging was done
   with Alert boxes).
 
   I hoped that with the release version I could debug again, but 
this
   is not true. I cannot use a development tool that does not have a
   debugger and I cannot reinstall my development workstation 
everytime
   a new nersion is released.
 
   I have downloaded the new debug version of Flash player 9, 
installed
   it and after that the version is still 16 (standard version), 
not 15
   (debug version).
 
   And  the browser is still crashing.
 
   The problem is occuring since I have installed beta 3 (two months
   ago). My problem is that the browser craches and Windows shows 
me a
   message box telling that IE encountered a problem with an add-on 
and
   needs to close. And the add-on is Fldbg9.ocx.
 
   This is the fourth message and I beleive that Adobe should take 
care
   of it.
 
   Thanks in advance








 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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: Flex Debug - I am allmost giving up - this is my last message

2006-06-30 Thread mvbaffa
I did

When I installed Beta 3 and realized that IE was craching and have I 
installed FireFox and it worked for sometime, then it began to crash 
too.

There is something wrong maybe in my registry and I don't know how 
to fix it

Baffa,

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

 Have you tried it on another machine? We've run FB2 and FB2 b3, 
and not
 encountered any problems like you're describing.
  
 I'd be leaning toward you having another plugin that's conflicting 
with
 FlashPlayer.
  
 If you don't have another machine, maybe try Firefox.
  
 Shan
 
_  
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of mvbaffa
 Sent: Friday, June 30, 2006 9:56 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Flex Debug - I am allmost giving up - this 
is my last
 message
 
 
 
 Hi everybody,
 
 This is my last message about this problem. Flex is fantastic, I 
am 
 using it since alpha version.
 
 I have an application ready to deploy that I have finished without 
a 
 debug (the older will remember old times when debugging was done 
 with Alert boxes). 
 
 I hoped that with the release version I could debug again, but 
this 
 is not true. I cannot use a development tool that does not have a 
 debugger and I cannot reinstall my development workstation 
everytime 
 a new nersion is released.
 
 I have downloaded the new debug version of Flash player 9, 
installed 
 it and after that the version is still 16 (standard version), not 
15 
 (debug version).
 
 And  the browser is still crashing.
 
 The problem is occuring since I have installed beta 3 (two months 
 ago). My problem is that the browser craches and Windows shows me 
a 
 message box telling that IE encountered a problem with an add-on 
and 
 needs to close. And the add-on is Fldbg9.ocx.
 
 This is the fourth message and I beleive that Adobe should take 
care 
 of it.
 
 Thanks in advance
 
 
 
  
 
 
 --
 No virus found in this incoming message.
 Checked by AVG Free Edition.
 Version: 7.1.394 / Virus Database: 268.9.5/377 - Release Date: 
6/27/2006
 
 
 
 -- 
 No virus found in this outgoing message.
 Checked by AVG Free Edition.
 Version: 7.1.394 / Virus Database: 268.9.5/377 - Release Date: 
6/27/2006








 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/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: Flex Debug - I am allmost giving up - this is my last message

2006-06-30 Thread mvbaffa
Yes I did

Thanks,

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

 
 
 Have you tried turning the Windows Firewall off while you test it? 
(If you're not behind a corporate firewall/nat, I'd disconnect from 
the web before you try).
  
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of mvbaffa
 Sent: 30 June 2006 15:59
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Flex Debug - I am allmost giving up - 
this is my last message
 
 Thanks Jason,
 
 I have only Unistalled Beta 3. But I have already run the flash 
player uninstaller before installing the new debug version of Flash 
9.
 
 With Beta 2 it was working OK, When I have installed beta 3, IE 
stopped working and I have installed FireFox that worked for some 
time. 
 
 I remember that just before a debugging session The Windows 
Firewall insformed that java was trying go out and asked me if I 
wanted to block it, and I choose to continue blocking. Since then 
the debugger stopped for FireFox too and I could not debug.
 
 I am sure this is a security issue but I am not able to find 
it 
 
 Thanks
 
 
 
 --- In flexcoders@yahoogroups.com, Jason Hawryluk jh@ wrote:
 
  Did you uninstall flex b3, and did you run
 Player_B3_Uninstaller_05-08.exe
  before installing the final version?
  
  Also ensure that you have removed the older flash9.ocx from your
 computer?
  
  Jason
  
  
-Message d'origine-
De : flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] la
  part de mvbaffa
Envoyé : vendredi 30 juin 2006 15:56
À : flexcoders@yahoogroups.com
Objet : [flexcoders] Flex Debug - I am allmost giving up - this
 is my last
  message
  
  
Hi everybody,
  
This is my last message about this problem. Flex is fantastic, 
I
 am
using it since alpha version.
  
I have an application ready to deploy that I have finished
 without a
debug (the older will remember old times when debugging was 
done
with Alert boxes).
  
I hoped that with the release version I could debug again, but
 this
is not true. I cannot use a development tool that does not 
have a
debugger and I cannot reinstall my development workstation
 everytime
a new nersion is released.
  
I have downloaded the new debug version of Flash player 9,
 installed
it and after that the version is still 16 (standard version),
 not 15
(debug version).
  
And  the browser is still crashing.
  
The problem is occuring since I have installed beta 3 (two 
months
ago). My problem is that the browser craches and Windows shows
 me a
message box telling that IE encountered a problem with an add-
on
 and
needs to close. And the add-on is Fldbg9.ocx.
  
This is the fourth message and I beleive that Adobe should take
 care
of it.
  
Thanks in advance
 
 
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
~-- Something is new at Yahoo! Groups.  Check out the enhanced 
email design.
 http://us.click.yahoo.com/SISQkA/gOaOAA/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
 
 
 
  
 
 
 
 [Inbound Mail Scanned by MessageLabs]
 
 
_
_
 This email has been scanned by the MessageLabs Email Security 
System.
 For more information please visit http://www.messagelabs.com/email 
 
_
_








 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/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] Flex 2 Trial not Debugging

2006-06-29 Thread mvbaffa
Hi All,

I have just installed Flex 2 Trial and when I start my application in 
debug mode both browsers, Internet Explorer or with Firefox, crash.

The same error was occuring in Beta 3. I cannot debug my application.

The Browsers are working OK, the problem occurs only with  Flex in 
debug mode.

Please Help me 

Thanks in advance






 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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] Cold Fusion And Flex 2

2006-06-17 Thread mvbaffa
Hi all,

I am considering to use Flex and Cold Fusion for a new application. It 
seems that this is a very good integration and combination.

The problem is that this application will run on a public provider 
that already have Cold Fusion MX 7 installed. It is very difficult to 
find a provider that will accept to install any additional software at 
his production server

Is it necessary that Cold Fusion/Flex Connectivity be installed in the 
production server or this is only a development plug-in 

Thanks in advance






 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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] Problems Debugging with Flex 2 Beta 3

2006-05-29 Thread mvbaffa



Hi All,

I have installed, a few days ago Flex 2 Beta 3. I have Internet 
Explorer installed in my machine. 

In Beta 3 when I try to debug I receive an error in FlDbg91.ocx. 

Then I installed FireFox. Well, it was working OK and then, yesterday, 
without any reason FireFox began to crash when I activate my 
application in debug mode.

Does any of you have an idea of what is happening 

PS: By the way with Beta 2 everything worked OK in debug mode.

Thanks in advance 










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








  
  
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] How to Debug Flex 2 Beta 3 with FireFox

2006-05-10 Thread mvbaffa



Hi All,

I have Internet Explorer and ForeFox installed, FireFox is my default
browser. When I ask Flex 2 Beta 3 to debug my application it allways
starts Internet Explorer.

The problem is that I can not debug with Beta 3, I have already posted
a message about that. So I would like to turn FireFox my debug browser. 

How can I do it ?

Thanks in advance









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








  
  
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: How to Debug Flex 2 Beta 3 with FireFox

2006-05-10 Thread mvbaffa



Thanks Michael,

I could make it work turning Firfox the default browser and boot the 
machine.

Do you have any information about the problem with the debug version 
of Flash 9 and Internet Explorer 

Thanks in advance

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

 Hi,
 
 Goto Window - Preferences - General - Web Browser;
 
 Check FireFox and that will do it ;-)
 
 Peace, Mike
 
 On 5/10/06, mvbaffa [EMAIL PROTECTED] wrote:
 
  Hi All,
 
  I have Internet Explorer and ForeFox installed, FireFox is my 
default
  browser. When I ask Flex 2 Beta 3 to debug my application it 
allways
  starts Internet Explorer.
 
  The problem is that I can not debug with Beta 3, I have already 
posted
  a message about that. So I would like to turn FireFox my debug 
browser.
 
  How can I do it ?
 
  Thanks in advance
 
 
 
 
 
  --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
 
 
 
  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=M
acromedia+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+developmentw
2=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+development
w2=Computer+software+developmentw3=Software+design+and+development
w4=Macromedia+flexw5=Software+development+best+practicec=5s=166.s
ig=1pMBCdo3DsJbuU9AEmO1oQ Macromedia
  flexhttp://groups.yahoo.com/gads?
t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+sof
tware+developmentw3=Software+design+and+developmentw4=Macromedia+fl
exw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZ
I36cYzBjw Software
  development best practicehttp://groups.yahoo.com/gads?
t=msk=Software+development+best+practicew1=Web+site+design+developm
entw2=Computer+software+developmentw3=Software+design+and+developme
ntw4=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]flexcoders-
[EMAIL PROTECTED]
 
  - Your use of Yahoo! Groups is subject to the Yahoo! Terms of
  Service http://docs.yahoo.com/info/terms/.
 
 
  --
 
 
 
 
 --
 What goes up, does come down.











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








  
  
SPONSORED LINKS
  
  
  

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: Beta 3 Debug Error

2006-05-10 Thread mvbaffa



I had to turn to Firefox to continue debgging my application. Flash 
9 and IE 6 does not work !

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

 Hi everybody,
 
 I have just downloded Beta 3 and when I try to debug a project I 
 receive an error:
 
 Internet Explorer has encountered an error with an add-on.
 File: FlDbg9a.ocx
 Company Name Adobe
 Description Adobe Flash 9.0 b296
 
 and Internet Explorer closes
 
 My Internet Explorer is version 6.0.2900 And windows XP SP2
 
 Does anyone knows how to fix this problem 
 
 Thanks in advance












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








  
  
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] Beta 3 Debug Error

2006-05-09 Thread mvbaffa



Hi everybody,

I have just downloded Beta 3 and when I try to debug a project I 
receive an error:

Internet Explorer has encountered an error with an add-on.
File: FlDbg9a.ocx
Company Name Adobe
Description Adobe Flash 9.0 b296

and Internet Explorer closes

My Internet Explorer is version 6.0.2900 And windows XP SP2

Does anyone knows how to fix this problem 

Thanks in advance












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








  
  
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] What happened with labs.macromedia ????

2006-04-25 Thread mvbaffa



I am trying to open the site and I receive a notification message !

Does anyone knows what hapenned 









--
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: Turn off Validators

2006-04-25 Thread mvbaffa



Thanks Tim, I will try it !!!

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

 
 If you just want to turn off the visual indication, you can clear 
the
 errorString property of the control. Tip: For custom validation, 
you
 can write your own error message to errorString. This will 
trigger the
 red border and error message to appear.
 
 As I understand the Flex framework, you have three states of 
validation.
 You can validate as-you-go and/or validate in response to a 
gesture
 (like clicking a search button). I like validating as-you-go when 
at
 all possible. It notifies the user immediately that they need to 
make a
 correction before proceeding. Usually, controls that always need 
to be
 validated should be validated as-you-go. In addition, you can 
create a
 catch-all function that selectively validates controls before
 submitting a request to the server. As a practical matter, you can
 choose to validate the as-you-go controls in this function as 
well. 
 This may be overkill, but I don't like embarrassing the 
application by
 asking the server an impossible question.
 
 For controls that may or may not need to be validated, depending 
on the
 state of other controls, you should try to organize the validation 
into
 functional groups/collections in the catch-all function. From 
here,
 you can manually control the error state of the controls. I'm sure
 that there is a possible reason for disabling a validator, but I 
prefer
 avoiding this approach. imho, I think that this creates code that 
is
 more difficult to maintain. Instead, I would move the validation 
to the
 catch-all function.
 
 I'm really not sure if this applies to your particular situation, 
but I
 hope that this helps you.
 
 Tim Hoff
 
 
 --- In flexcoders@yahoogroups.com, mvbaffa mvbaffa@ wrote:
 
  Hi everybody,
 
  I need to turn off or disable a validator.
 
  After an error is detected in the associated field I cannot 
turnoff
  the visual indication or the error message, even if I write  
to the
  textinput or set the enabled property of the valdator to false.
 
  When I first show the screen I make the validator disabled so 
that
  required fields can be blank and it worked. But at moment an 
error is
  detected I can only turnoff the validator if I set the textinput 
with
  a valid value, in this case a number.
 
  How can I make it work ?
 
  Thanks in advance
 











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








  
  
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: parseDateString and parseNumberString

2006-04-19 Thread mvbaffa



Thanks !!!

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

 parseDateString is a protected static method on the DateFormatter 
it
 appears. Which means you would need to write a subclass of
 DateFormatter and then you could call the static method from 
within it
 (via DateFormatter.parseDateString). 
 
 Matt
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of mvbaffa
 Sent: Saturday, April 15, 2006 3:00 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] parseDateString and parseNumberString
 
 Hi everybody,
 
 I am using Flex 2 Beta 2.
 
 I have a date formatter and a currency formatter they work fine 
when 
 I use the format method. When the form is submitted I have parse 
 these values to save a date and a number.
 
 I am trying to use parseDateString and parseNumberString. I tried:
 - DateFormatter.parseDateString(dateField);
 
 and Flex gives me the error:
 Attempted access of inaccessible method 'parseDateString' through 
 a reference with static type 'Class'
 
 Then I tried with the instance of the formatter and Flex gives the 
 error:
 Call to a possibly undefined method 'parseDateString' through a 
 reference with static type 'mx.formatters:DateFormatter'
 
 I need special formatting and I need to parse the values back. Can 
 anybody help me !
 
 Thanks in advance
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links











--
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] Turn off Validators

2006-04-19 Thread mvbaffa



Hi everybody,

I need to turn off or disable a validator. 

After an error is detected in the associated field I cannot turnoff 
the visual indication or the error message, even if I write  to the 
textinput or set the enabled property of the valdator to false.

When I first show the screen I make the validator disabled so that 
required fields can be blank and it worked. But at moment an error is 
detected I can only turnoff the validator if I set the textinput with 
a valid value, in this case a number.

How can I make it work ?

Thanks in advance










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





  




  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: How Users can Move Popup Windows

2006-04-16 Thread mvbaffa
Hi, 

Not really, My TitleWindow has a style like this:

.PopupHeader { 
   dropShadowEnabled: false;
   roundedBottomCorners: false;
   shadowDirection: center;
   textAlign: left;
   borderStyle: solid;
   borderAlpha: 0.17;
   highlightAlphas: 0.1, 0.16;
   headerColors: #cc, #ff;
} 

It is not transparent. I can cleary see it.

Thanks,

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

 hi,
 
 I think the problem lies in your mxml component, the default 
titleBar color
 is transparent, hence it's pretty hard to drag it, try something 
like this
 in your TitleWindow component:
 
 mx:TitleWindow xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=*
 layout=absolute borderAlpha=1
  width=200 height=100 headerColors=[0xff, 0xffeedd]
 mx:Button label=test /
 /mx:TitleWindow
 
 note the borderAlpha setting will make sure the tileBar of the 
panel is
 opaque, and setting random colors will ensure the window is easily
 draggable.
 
 I can use both method to create the pop up window (zz is the 
component
 above):
 
 1. var b:zz = new zz();
 PopUpManager.addPopUp(b, Application.application, false);
 
 2. PopUpManager.createPopUp(Application.application, zz, false);
 
 
 hth,
 jeremy.
 
 
 On 4/15/06, mvbaffa [EMAIL PROTECTED] wrote:
 
  Thanks Jeremy.
 
  I have tried Application.aplication as the parent and it did not
  work. I cannot drag the window.
 
  What is the difference between addPopup and createPopup 
 
  --- In flexcoders@yahoogroups.com, jeremy lu wade.lu@ wrote:
  
   write off my head, try this:
  
   w = PopUpManager.createPopUp(Application.application,
  EventsSettings,
   false);
  
   another way to do this would be extending Panel/TitleWindow 
then
  listens to
   titleBar events to implement drag and drop.
  
   jeremy.
  
  
   On 4/15/06, mvbaffa mvbaffa@ wrote:
   
I have created, in Flex 2 Beta 2, a non modal Popup, that 
has a
component for data entry inside it. I would like to allow the
  user
to drag the Popup Window around the screen and position it
  wherever
he wants.
   
I tried two approches:
   
1) The TitleWindow is defined in MXML, inside the component, 
as
  the
container of the data entry components.
2) The component does not have the TitleWindow and I create 
it in
actionscript.
   
In both cases I have a  TitleWindow as the container of all 
the
  data
entry controls.
   
The problem is that if I create the Popup with createPopUp 
with
  the
component that has the TitleWindow inside it, like this:
   
w = PopUpManager.createPopUp(this, EventsSettings,
  false);
   
It is not possible to drag the window. It works OK but it 
simply
cannot be dragged.
   
If I create the TitleWindow in actionscript, add the 
component,
  that
has only the data entry components, to the Titlewindow, and 
then
  use
the addPopUp method to show the PopUp with the TitleWindow 
like
  this:
   
public var settingsWindow:TitleWindow = new 
TitleWindow
  ();
settingsWindow.title = My Window Title;
settingsWindow.styleName=PopupHeader;
settingsWindow.showCloseButton = true;
settingsWindow.x = 300; settingsWindow.y = 300;
var ctl:EventsSettings = new EventsSettings();
settingsWindow.addChild(ctl);
PopUpManager.addPopUp(settingsWindow, this, false);
   
The created Popup can be dragged and everything works.
   
The problem is that is more comfortable to have the 
TitleWindow
in MXML, we can modify more easily the properties.
   
How Can I use createPopup and still be capable of dragging 
the
result Popup Window 
   
   
   
   
   
   
--
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
 
 
 
 
 
 
 








--
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] parseDateString and parseNumberString

2006-04-16 Thread mvbaffa
Hi everybody,

I am using Flex 2 Beta 2.

I have a date formatter and a currency formatter they work fine when 
I use the format method. When the form is submitted I have parse 
these values to save a date and a number.

I am trying to use parseDateString and parseNumberString. I tried:
   - DateFormatter.parseDateString(dateField);

and Flex gives me the error:
Attempted access of inaccessible method 'parseDateString' through 
a reference with static type 'Class'

Then I tried with the instance of the formatter and Flex gives the 
error:
Call to a possibly undefined method 'parseDateString' through a 
reference with static type 'mx.formatters:DateFormatter'

I need special formatting and I need to parse the values back. Can 
anybody help me !

Thanks in advance







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

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

* 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: How Users can Move Popup Windows

2006-04-15 Thread mvbaffa
Thanks Jeremy.

I have tried Application.aplication as the parent and it did not 
work. I cannot drag the window.

What is the difference between addPopup and createPopup 

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

 write off my head, try this:
 
 w = PopUpManager.createPopUp(Application.application, 
EventsSettings,
 false);
 
 another way to do this would be extending Panel/TitleWindow then 
listens to
 titleBar events to implement drag and drop.
 
 jeremy.
 
 
 On 4/15/06, mvbaffa [EMAIL PROTECTED] wrote:
 
  I have created, in Flex 2 Beta 2, a non modal Popup, that has a
  component for data entry inside it. I would like to allow the 
user
  to drag the Popup Window around the screen and position it 
wherever
  he wants.
 
  I tried two approches:
 
  1) The TitleWindow is defined in MXML, inside the component, as 
the
  container of the data entry components.
  2) The component does not have the TitleWindow and I create it in
  actionscript.
 
  In both cases I have a  TitleWindow as the container of all the 
data
  entry controls.
 
  The problem is that if I create the Popup with createPopUp with 
the
  component that has the TitleWindow inside it, like this:
 
  w = PopUpManager.createPopUp(this, EventsSettings, 
false);
 
  It is not possible to drag the window. It works OK but it simply
  cannot be dragged.
 
  If I create the TitleWindow in actionscript, add the component, 
that
  has only the data entry components, to the Titlewindow, and then 
use
  the addPopUp method to show the PopUp with the TitleWindow like 
this:
 
  public var settingsWindow:TitleWindow = new TitleWindow
();
  settingsWindow.title = My Window Title;
  settingsWindow.styleName=PopupHeader;
  settingsWindow.showCloseButton = true;
  settingsWindow.x = 300; settingsWindow.y = 300;
  var ctl:EventsSettings = new EventsSettings();
  settingsWindow.addChild(ctl);
  PopUpManager.addPopUp(settingsWindow, this, false);
 
  The created Popup can be dragged and everything works.
 
  The problem is that is more comfortable to have the TitleWindow
  in MXML, we can modify more easily the properties.
 
  How Can I use createPopup and still be capable of dragging the
  result Popup Window 
 
 
 
 
 
 
  --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
  Yahoo! Groups Links
 
 
 
 
 
 
 
 







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

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

* 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 Users can Move Popup Windows

2006-04-14 Thread mvbaffa
I have created, in Flex 2 Beta 2, a non modal Popup, that has a 
component for data entry inside it. I would like to allow the user 
to drag the Popup Window around the screen and position it wherever 
he wants. 

I tried two approches:

1) The TitleWindow is defined in MXML, inside the component, as the 
container of the data entry components.
2) The component does not have the TitleWindow and I create it in 
actionscript. 

In both cases I have a  TitleWindow as the container of all the data 
entry controls.

The problem is that if I create the Popup with createPopUp with the 
component that has the TitleWindow inside it, like this:

w = PopUpManager.createPopUp(this, EventsSettings, false);

It is not possible to drag the window. It works OK but it simply 
cannot be dragged.

If I create the TitleWindow in actionscript, add the component, that 
has only the data entry components, to the Titlewindow, and then use 
the addPopUp method to show the PopUp with the TitleWindow like this:

public var settingsWindow:TitleWindow = new TitleWindow();
settingsWindow.title = My Window Title;
settingsWindow.styleName=PopupHeader; 
settingsWindow.showCloseButton = true;
settingsWindow.x = 300; settingsWindow.y = 300;
var ctl:EventsSettings = new EventsSettings();
settingsWindow.addChild(ctl);
PopUpManager.addPopUp(settingsWindow, this, false);

The created Popup can be dragged and everything works.

The problem is that is more comfortable to have the TitleWindow 
in MXML, we can modify more easily the properties.

How Can I use createPopup and still be capable of dragging the 
result Popup Window 






--
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: Listening to Databind events

2006-04-05 Thread mvbaffa
Thanks Matt

When will this be avaiable  Can we use now 

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

 The event is going to be mx.events.PropertyChangeEvent which is in 
the
 ASDoc.
 
 Matt
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of mvbaffa
 Sent: Tuesday, April 04, 2006 5:03 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Listening to Databind events
 
 Hi all,
 
 I would like to know how can I drive, or listen to, Databind 
events.
 
 I have a bindable property defined like this:
 
 [Bindable]
 public var clientDetail : ClientVO;
 
 This property is updated by the parent container like this:
 
 view:ClientEvents id=clientEvents 
clientDetail={ selectedClient } /
 
 I would like to execute a function or method in ClientEvent 
 component when the clientDetail variable is updated.
 
 Excuse me if this is too simple but I could not find a way, except 
 by using predefined properties, to do this
 
 Thanks in advance
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links








--
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] Sliding Windows in Different Layers

2006-04-05 Thread mvbaffa
Hi everybody,

I would like to show a sliding panel, or title window, in a different 
layer. I am not an expert in flash but i know that we can put images 
or animations in different layers so that they can be shown overlaped.

I would like to show a properties windows in my flex application that 
slides over the screen without having to shink the other ones. So it 
must be over the other containers.

I suppose the this can be done using different layers. How can I do 
this in Flex 

Thanks in advance






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

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

* 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] Listening to Databind events

2006-04-04 Thread mvbaffa
Hi all,

I would like to know how can I drive, or listen to, Databind events.

I have a bindable property defined like this:

[Bindable]
public var clientDetail : ClientVO;

This property is updated by the parent container like this:

view:ClientEvents id=clientEvents 
   clientDetail={ selectedClient } /

I would like to execute a function or method in ClientEvent 
component when the clientDetail variable is updated.

Excuse me if this is too simple but I could not find a way, except 
by using predefined properties, to do this

Thanks in advance





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

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

* 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: Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-23 Thread mvbaffa
Thank you, I will try it

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

 panelAlpha = 1
 headerHeight = 22
 
 will also look very much alike those found in aqua...
 
 On 3/22/06, mvbaffa [EMAIL PROTECTED] wrote:
 
  Hi everybody,
 
  How can I set the appearance of Flex 2 Panels and TitleWindows 
headers
  similar to one of Flex 1.5
 
  Thanks
 
 
 
 
 
  --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
  Yahoo! Groups Links
 
 
 
 
 
 
 







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

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

* 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] Binding properties of Custom Component in Flex 2

2006-03-23 Thread mvbaffa
Hi everybody, 

I am migrating a Custom Component, from Flex 1.5 to Flex 2 Beta 2, 
that has inside it two other components:

- ClienteList: A datagrid with a list of Clients
- ClientSummary: Panel that show the details of a Selected Client in 
the DataGrid

The main component is like this

[Bindable]
public var selectedClient : ClientVO;

private function doSelectClient(event:Event) : void {
  var e:ControllerEvent = ControllerEvent (event);
  selectedClient = (ClientVO) e.result;
}

mx:HBox label= themeColor=haloSilver width=100% height=100%

view:ClienteList id=listClients clientSelected=doSelectClient
(event); width=60% height=100% /
view:ClientSummary id=summClient clientDetail={ 
selectedClient } width=40% height=100%/

/mx:HBox


When the change event occurs in ClientList it fires an event, 
clientSelected, that executes the function doSelectClient. This is 
working because I can debug and see that doSelectClient is executing 
when I select an item in the datagrid.

As you can see doSelectClient sets the property selectedClient that 
is bounded to the property clientDetail of ClientSummary. At 
ClientSummary this property is defined like this

  [Bindable]
  public var clienteDetail : ClienteVO;

and the PanelTitle is defined like this

  mx:Panel id=summaryPanel width=100% height=100% 
layout=absolute title={ clienteDetail != null ? 
clienteDetail.name: 'Client' } 
  themeColor=haloSilver styleName=PanelHeader cornerRadius=7

The property clientDetail binds to the Title of ClientSummary with 
the clientName. But nothing works. In Flex 1.5 this is working OK 
but in Flex 2 it seems that a update in the property clientDetail 
does not cause any changes in ClientSummary

I don't know what is happening, can anybody help me







--
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 properties of Custom Component in Flex 2

2006-03-23 Thread mvbaffa
Never mind, I have already discovered the problem.

I am using AMFPHP and when you return a recordset, with Flex 2, 
AMFPHP, in fact, return an array of array, and the fields of the 
records are numbers not the field name.

This does not occurs when you return only one record. So you have to 
map the selected client, fill the attributes of the record, and call 
an updateView function.

So the binding will not work until AMFPHP or Flex 2, or both make 
some adjustments to receive recordsets.

Thansk anyway

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

 Hi everybody, 
 
 I am migrating a Custom Component, from Flex 1.5 to Flex 2 Beta 2, 
 that has inside it two other components:
 
 - ClienteList: A datagrid with a list of Clients
 - ClientSummary: Panel that show the details of a Selected Client 
in 
 the DataGrid
 
 The main component is like this
 
 [Bindable]
 public var selectedClient : ClientVO;
   
 private function doSelectClient(event:Event) : void {
   var e:ControllerEvent = ControllerEvent (event);
   selectedClient = (ClientVO) e.result;
 }
 
 mx:HBox label= themeColor=haloSilver width=100% 
height=100%
 
 view:ClienteList id=listClients clientSelected=doSelectClient
 (event); width=60% height=100% /
 view:ClientSummary id=summClient clientDetail={ 
 selectedClient } width=40% height=100%/
 
 /mx:HBox
 
 
 When the change event occurs in ClientList it fires an event, 
 clientSelected, that executes the function doSelectClient. This is 
 working because I can debug and see that doSelectClient is 
executing 
 when I select an item in the datagrid.
 
 As you can see doSelectClient sets the property selectedClient 
that 
 is bounded to the property clientDetail of ClientSummary. At 
 ClientSummary this property is defined like this
 
   [Bindable]
   public var clienteDetail : ClienteVO;
 
 and the PanelTitle is defined like this
 
   mx:Panel id=summaryPanel width=100% height=100% 
 layout=absolute title={ clienteDetail != null ? 
 clienteDetail.name: 'Client' } 
   themeColor=haloSilver styleName=PanelHeader cornerRadius=7
 
 The property clientDetail binds to the Title of ClientSummary with 
 the clientName. But nothing works. In Flex 1.5 this is working OK 
 but in Flex 2 it seems that a update in the property clientDetail 
 does not cause any changes in ClientSummary
 
 I don't know what is happening, can anybody help me







--
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] Where is the IncludeLayout

2006-03-23 Thread mvbaffa
Hi all,

Flex 2 beta 1 had a property, includeLayout, that relased the screen 
space of invisible components.

I could not find it in Beta 2. Does anyone knows what is the new name 
os includeLayout.

Thanks in advance





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

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

* 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] Setting Focus on PopUpWindows

2006-03-22 Thread mvbaffa
Hi all,

I have a PopupWindow, in Flex 2 Beta 2, to authenticate the users that 
is shown when the application starts.

I could not find a way to set the initial input focus to this window 
or to a TextInput field. How can I do it???

Besides that the tabindex property for the two textinput fields is not 
working. I have set tabindex 0 for the user and 1 for password when I 
use the TAB Key the cursor does not go to the other field.

Thanks in advance






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

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

* 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] Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-22 Thread mvbaffa
Hi everybody,

How can I set the appearance of Flex 2 Panels and TitleWindows headers 
similar to one of Flex 1.5

Thanks





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

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

* 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: AMFPHP, OpenAMF or Fluorine or FES

2006-03-21 Thread mvbaffa
);
 _gateway.call(classPath + . + getAllDirectories, 
responder,
 directory);
 }
 
 private function onAllDirectories(e:*):void
 {
 //trace(onAllDirectories());
 var ev:ResultEvent = new ResultEvent
(allDirectoriesLoaded, e);
 dispatchEvent(ev);
 }
 
 /**
  *
  */
 public function getFile(url:String):void
 {
 var responder:Responder = new Responder(onGetFile, 
onFault);
 
 // THIS IS WHAT IS MESSING UP HELP!!!
 //service(getFile, responder, file);
 
 _gateway.call(classPath + . + getFile, responder, 
url);
 }
 
 /**
  *
  */
 private function onGetFile(resultData:*):void
 {
 resultData = resultData.split(\r).join();
 dispatchEvent(new ResultEvent(ResultEvent.LOADED,
 resultData));
 }
 }
 }
 
 Anyway, this was written ON THE FLY, not rfactoring yet. It works 
great!
 
 Peace, Mike
 
 On 3/20/06, mvbaffa [EMAIL PROTECTED] wrote:
 
   Hi all,
 
  I have a new project and I would like to do it in Flex 2.0 The 
problem
  is that I don't know which server technology to use.
 
  Have you already tested any of these technologies. Which one is
  working ok for the Beta 1 of Flex 2.0.
 
  Wiil I need to use FES 
 
  Thanks in advance
 
 
 
 
 
 
 
 
 
   --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
 
 
 
   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=M
acromedia+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+developmentw
2=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+development
w2=Computer+software+developmentw3=Software+design+and+development
w4=Macromedia+flexw5=Software+development+best+practicec=5s=166.s
ig=1pMBCdo3DsJbuU9AEmO1oQ   Macromedia
  flexhttp://groups.yahoo.com/gads?
t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+sof
tware+developmentw3=Software+design+and+developmentw4=Macromedia+fl
exw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZ
I36cYzBjw  Software
  development best practicehttp://groups.yahoo.com/gads?
t=msk=Software+development+best+practicew1=Web+site+design+developm
entw2=Computer+software+developmentw3=Software+design+and+developme
ntw4=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]flexcoders-
[EMAIL PROTECTED]
 
 -  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/.
 
 
   --
 
 
 
 
 --
 What goes up, does come down.







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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: AMFPHP, OpenAMF or Fluorine or FES

2006-03-21 Thread mvbaffa
 AMFFileService()
 {
 super();
 classPath 
= com.teotigraphix.amf.files.AMFFileService;
 }
 
 /**
  *
  */
 public function getAllDirectories(directory:String):void
 {
 var responder:Responder = new Responder
(onAllDirectories,
 onFault);
 //service(getAllDirectories, responder, directory);
 _gateway.call(classPath + . + getAllDirectories, 
responder,
 directory);
 }
 
 private function onAllDirectories(e:*):void
 {
 //trace(onAllDirectories());
 var ev:ResultEvent = new ResultEvent
(allDirectoriesLoaded, e);
 dispatchEvent(ev);
 }
 
 /**
  *
  */
 public function getFile(url:String):void
 {
 var responder:Responder = new Responder(onGetFile, 
onFault);
 
 // THIS IS WHAT IS MESSING UP HELP!!!
 //service(getFile, responder, file);
 
 _gateway.call(classPath + . + getFile, responder, 
url);
 }
 
 /**
  *
  */
 private function onGetFile(resultData:*):void
 {
 resultData = resultData.split(\r).join();
 dispatchEvent(new ResultEvent(ResultEvent.LOADED,
 resultData));
 }
 }
 }
 
 Anyway, this was written ON THE FLY, not rfactoring yet. It works 
great!
 
 Peace, Mike
 
 On 3/20/06, mvbaffa [EMAIL PROTECTED] wrote:
 
   Hi all,
 
  I have a new project and I would like to do it in Flex 2.0 The 
problem
  is that I don't know which server technology to use.
 
  Have you already tested any of these technologies. Which one is
  working ok for the Beta 1 of Flex 2.0.
 
  Wiil I need to use FES 
 
  Thanks in advance
 
 
 
 
 
 
 
 
 
   --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
 
 
 
   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=M
acromedia+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+developmentw
2=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+development
w2=Computer+software+developmentw3=Software+design+and+development
w4=Macromedia+flexw5=Software+development+best+practicec=5s=166.s
ig=1pMBCdo3DsJbuU9AEmO1oQ   Macromedia
  flexhttp://groups.yahoo.com/gads?
t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+sof
tware+developmentw3=Software+design+and+developmentw4=Macromedia+fl
exw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZ
I36cYzBjw  Software
  development best practicehttp://groups.yahoo.com/gads?
t=msk=Software+development+best+practicew1=Web+site+design+developm
entw2=Computer+software+developmentw3=Software+design+and+developme
ntw4=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]flexcoders-
[EMAIL PROTECTED]
 
 -  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/.
 
 
   --
 
 
 
 
 --
 What goes up, does come down.








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] AMFPHP, OpenAMF or Fluorine or FES

2006-03-20 Thread mvbaffa
Hi all,

I have a new project and I would like to do it in Flex 2.0 The problem 
is that I don't know which server technology to use.

Have you already tested any of these technologies. Which one is 
working ok for the Beta 1 of Flex 2.0.

Wiil I need to use FES 

Thanks in advance

 







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

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

* 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: RemoteObject and Enterprise Services

2006-03-18 Thread mvbaffa
I have already tested it and it works OK. But there are still 
problems with complex data. 

I really don't know what is the best path to follow: Enterprise 
services, amfphp, openamh, fluorine, etc. 

With Flex 2 still in Beta a lot of things can change and I am not 
sure which will be the best solution, specially because of the cost 
of future licences.

Thank you,

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

 http://www.jessewarden.com/archives/2005/12/amfphp_10_works.html
 
 This is for the alpha, not beta, not sure what might be different.
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of mvbaffa
 Sent: Friday, March 10, 2006 10:23 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: RemoteObject and Enterprise Services
 
 Thanks Matt,
 
 will I be able to use, for example, amfphp to connect Flex 2 
 applications ?
 
 Baffa
 
 --- In flexcoders@yahoogroups.com, Matt Chotin mchotin@ wrote:
 
  I believe we announced that there will be a connection-limited 
 license
  for Flex Enterprise Services that is free.  So depending on how 
 much you
  expect your server to be hit you may not have to pay much of 
 anything!
  
  Matt
  
  -Original Message-
  From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On
  Behalf Of mvbaffa
  Sent: Thursday, March 09, 2006 6:05 AM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] RemoteObject and Enterprise Services
  
  Hi All,
  
  I am working with Flex 2.0 and considering the use of 
 RemoteObject. 
  
  But i am concerned about the entreprise services and its price. 
I 
 am 
  using .NET at the server and thinking about some new .NET AMF 
open 
  source packages.
  
  The main problem with Entreprise Services, as I have heard, is 
the 
  price. Will I be able to use at the client RemoteObjects and a 
 free 
  AMF at the server without having to pay form Enterprise Services.
  
  Excuse me if this an obvious question but I am new to Flex.
  
  Thanks in Advance
  
  
  
  
  
  
  
  --
  Flexcoders Mailing List
  FAQ: 
 http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives:
  http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  Yahoo! Groups Links
 
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links









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

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

* 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] Cast Results from WebServices

2006-03-11 Thread mvbaffa
Hi everybody,

I am using Flex 2 Beta 1.

I am receiving a VO from a C# Webservice. When I debug I can see 
that the result is OK all information has been returned.

In flex I the ViewHelper receives the result like this:

var userAccount: UserAccountVO = new UserAccountVO;
userAccount  = UserAccountVO (event.result);

But when the assignment is executed the following error occurs:

TypeError: Error #1034: Type Coercion failed: cannot convert 
mx.utils::[EMAIL PROTECTED] to com.mvb.boe.vo.UserAccountVO

How can I cast complex type comming from a WebService ???

Thans in advance






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

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

* 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: RemoteObject and Enterprise Services

2006-03-10 Thread mvbaffa
Thanks Matt,

will I be able to use, for example, amfphp to connect Flex 2 
applications ?

Baffa

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

 I believe we announced that there will be a connection-limited 
license
 for Flex Enterprise Services that is free.  So depending on how 
much you
 expect your server to be hit you may not have to pay much of 
anything!
 
 Matt
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of mvbaffa
 Sent: Thursday, March 09, 2006 6:05 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] RemoteObject and Enterprise Services
 
 Hi All,
 
 I am working with Flex 2.0 and considering the use of 
RemoteObject. 
 
 But i am concerned about the entreprise services and its price. I 
am 
 using .NET at the server and thinking about some new .NET AMF open 
 source packages.
 
 The main problem with Entreprise Services, as I have heard, is the 
 price. Will I be able to use at the client RemoteObjects and a 
free 
 AMF at the server without having to pay form Enterprise Services.
 
 Excuse me if this an obvious question but I am new to Flex.
 
 Thanks in Advance
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links








--
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: .NET Webservices with Structure Parameters

2006-03-09 Thread mvbaffa
Thanks Dave

I am using Flex 2.0 Beta 1. Unfortunatelly I must use Webservices, 
since they are all developed and ready to use. Besides the 
Enterprise Services are too much expensive, the project cannot 
afford it.

Wouldn't it be easier to use arrays. Is there any problems passing 
arrays to Webservices ?

Thanks in advance

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

 If this is Flex 1.5 we have seen it have issues with CompelxTypes
 (e.g. a struct) when using document/literal encoding (the default 
for
 .NET I believe).   Can you modify the service to use rpc/encoded?  
 
 If you have a good repro of this using doc/lit you should open a 
case
 so Adobe can work it.
 
 -- 
 Dave Wolf
 Cynergy Systems, Inc.
 Macromedia Flex Alliance Partner
 http://www.cynergysystems.com
 
 Email:  [EMAIL PROTECTED]
 Office: 866-CYNERGY
 
 
 --- In flexcoders@yahoogroups.com, mvbaffa mvbaffa@ wrote:
 
  Hi All,
  
  When I call a method in a VB.NET webservice passing as parameter 
the 
  class listed below
  
 public class UserAccountVO {
  
  public function UserAccountVO() {}
  
  public var id : Number;
  public var name : String;
  public var password : String;
  public var email : String;
  public var dataExpiracao : String;
  public var isLogon : Boolean;   
 }
  
  I receive the following error: Request HTTP request error
  
  The .NET service parameter is defined like that:
  
  Public Class UserAccountVO
  Public id As Integer
  Public nome As String
  Public senha As String
  Public email As String
  Public dataExpiracao As String
  Public isLogon As Boolean
  End Class
  
  When I pass only name and password to the Webservice it works OK.
  
  Plase Help me 
 








--
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] RemoteObject and Enterprise Services

2006-03-09 Thread mvbaffa
Hi All,

I am working with Flex 2.0 and considering the use of RemoteObject. 

But i am concerned about the entreprise services and its price. I am 
using .NET at the server and thinking about some new .NET AMF open 
source packages.

The main problem with Entreprise Services, as I have heard, is the 
price. Will I be able to use at the client RemoteObjects and a free 
AMF at the server without having to pay form Enterprise Services.

Excuse me if this an obvious question but I am new to Flex.

Thanks in Advance







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

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

* 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: RemoteObject and Enterprise Services

2006-03-09 Thread mvbaffa
Hi Dave,

The problem is that I can not find a way to send complex types 
(structures) from ActionScript to .NET WebServices.

I have talked to you a few days ago about this and I still do not 
have a solution to this problem.

If I could find a way to send the Value Objects to my webservice 
then I would stay with them. 

Can you help me please ???

Thanks in advance

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

 Why not simply consume web services from .NET then?  That would 
avoid
 the need for FES.
 
 -- 
 Dave Wolf
 Cynergy Systems, Inc.
 Macromedia Flex Alliance Partner
 http://www.cynergysystems.com
 
 Email:  [EMAIL PROTECTED]
 Office: 866-CYNERGY
 
 --- In flexcoders@yahoogroups.com, mvbaffa mvbaffa@ wrote:
 
  Hi All,
  
  I am working with Flex 2.0 and considering the use of 
RemoteObject. 
  
  But i am concerned about the entreprise services and its price. 
I am 
  using .NET at the server and thinking about some new .NET AMF 
open 
  source packages.
  
  The main problem with Entreprise Services, as I have heard, is 
the 
  price. Will I be able to use at the client RemoteObjects and a 
free 
  AMF at the server without having to pay form Enterprise Services.
  
  Excuse me if this an obvious question but I am new to Flex.
  
  Thanks in Advance
 








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

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

* 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] .NET Webservices with Structure Parameters

2006-03-08 Thread mvbaffa
Hi All,

When I call a method in a VB.NET webservice passing as parameter the 
class listed below

   public class UserAccountVO {

public function UserAccountVO() {}

public var id : Number;
public var name : String;
public var password : String;
public var email : String;
public var dataExpiracao : String;
public var isLogon : Boolean;   
   }

I receive the following error: Request HTTP request error

The .NET service parameter is defined like that:

Public Class UserAccountVO
Public id As Integer
Public nome As String
Public senha As String
Public email As String
Public dataExpiracao As String
Public isLogon As Boolean
End Class

When I pass only name and password to the Webservice it works OK.

Plase Help me 







--
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] Accessing the Application Container in Flex 2

2006-03-06 Thread mvbaffa
Hi All,

I am new to Flex 2 and I am getting a strange error. 

I am trying to access a public variable defined at the application 
container using mx.core.Application.application. But Flex 2 shows the 
following error message: Access of undefined property 'application'.

Excuse if this an simple question but I don't know where is the error.

Thanks in advance.
Baffa





--
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] CrossDomain file

2006-03-03 Thread mvbaffa
Hi All,

I am using Flex 2 Beta 1.

I need to host my swf files in a domain different from the one that 
reside my webservices. In fact the webservice is installed in my 
office webserver and I have created at DynDNS to point to my server.

I have uploaded the swf compiled by Flex 2 and at the Windows 
Server, that host my webservices, I have a crossdomain.xml file to 
allow the flex application to access the webservices.

When I browse the swf an it tries to access my webservice it gives a 
Fault event stating that it could not find my service. 

The error occurs even when I turn off my Windows Firewall.

Is There any special procedure related to the crossdaomain.xml 
file 

Thanks in Advance
Baffa






--
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: Webservices swapping parameters

2006-03-01 Thread mvbaffa
Not really when I call makeRemoteCall the way you sugested the first 
parameter (userName) receives nothing, and the second parameter 
recieves the userName and userPassword separated by comma.

Thanks Philippe

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

 because 'args' is typed as an array, shouldn't you have
 loginManager.makeRemoteCall(logIn,loginRetrieved, [userName, 
userPassword])
 instead of
 loginManager.makeRemoteCall(logIn,loginRetrieved, userName, 
userPassword)
  
 Philippe
 
 
 
 From: flexcoders@yahoogroups.com on behalf of mvbaffa
 Sent: Tue 2/28/2006 13:50
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Webservices swapping parameters
 
 
 Hi, everybody
 
 I am experiencing a strange problem with webservices. I am using a 
 class, developed by Jeff Tapper to call my webservice. There is a 
 method difined like that:
 
 public function makeRemoteCall (methodName:String, 
 eventName:String, ...args:Array):void
 
 I have developed a Webservice to authenticate users, that has 2 
 parameters, username and password, that is called like this:
 
   - loginManager.makeRemoteCall(logIn,loginRetrieved, 
userName, 
 userPassword)
 
 Where loginManager is an instance of Jeff's DataManager 
 class, login is my service, loginRetrieved is the event to be 
 called when the service finishes and username and userPassword are 
 obvious.
 
 The problem is that, for some reason, userName and userPassword 
are, 
 sometimes, swapped when the webservice is called. That is the 
 service receives userName as the password and userPassword as
 the user name. There are other times that the service is called 
 correctly.
 
 It seems that a state is reached that makes the parameters to be 
 swapped. I am sure that before the call the parameters are allways 
 ok. They area swapped when they reach the service. The service is 
 logging the parameters in a text file and they are sometimes 
really 
 swapped. 
 
 By the way the Datamanager class seems ok because the service is 
 called and the return reaches the result method. 
 
 The webservice is .NET service that when called by other .NET 
 application works OK.
 
 Can anyone help me 
 
 Thanks in advance
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com 
 
 
 
 
 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+design+and+developmentw4=M
acromedia+flexw5=Software+development+best+practicec=5s=166.sig=L
-4QTvxB_quFDtMyhrQaHQ  Computer software development 
http://groups.yahoo.com/gads?
t=msk=Computer+software+developmentw1=Web+site+design+developmentw
2=Computer+software+developmentw3=Software+design+and+developmentw4
=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig
=lvQjSRfQDfWudJSe1lLjHwSoftware design and development 
http://groups.yahoo.com/gads?
t=msk=Software+design+and+developmentw1=Web+site+design+development
w2=Computer+software+developmentw3=Software+design+and+development
w4=Macromedia+flexw5=Software+development+best+practicec=5s=166.s
ig=1pMBCdo3DsJbuU9AEmO1oQ  
 Macromedia flex http://groups.yahoo.com/gads?
t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+sof
tware+developmentw3=Software+design+and+developmentw4=Macromedia+fl
exw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZ
I36cYzBjw  Software development best practice 
http://groups.yahoo.com/gads?
t=msk=Software+development+best+practicew1=Web+site+design+developm
entw2=Computer+software+developmentw3=Software+design+and+developme
ntw4=Macromedia+flexw5=Software+development+best+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:flexcoders-
[EMAIL PROTECTED] 
 
 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service http://docs.yahoo.com/info/terms/ . 
 
 
 
 
 
 
 --
 **STATEMENT OF CONFIDENTIALITY** 
 
 This e-mail and any attached files are confidential and intended 
solely for the use of the individual to whom it is addressed. If you 
have received this email in error please send it back to the person 
that sent it to you. Any views or opinions presented are solely 
those of author and do not necessarily represent those the Emakina 
Company. Unauthorized publication, use, dissemination, forwarding, 
printing or copying of this email and its associated attachments is 
strictly prohibited.
 
 We also inform

[flexcoders] Webservices swapping parameters

2006-02-28 Thread mvbaffa
Hi, everybody

I am experiencing a strange problem with webservices. I am using a 
class, developed by Jeff Tapper to call my webservice. There is a 
method difined like that:

public function makeRemoteCall (methodName:String, 
eventName:String, ...args:Array):void

I have developed a Webservice to authenticate users, that has 2 
parameters, username and password, that is called like this:
 
  - loginManager.makeRemoteCall(logIn,loginRetrieved, userName, 
userPassword)

Where loginManager is an instance of Jeff's DataManager 
class, login is my service, loginRetrieved is the event to be 
called when the service finishes and username and userPassword are 
obvious.

The problem is that, for some reason, userName and userPassword are, 
sometimes, swapped when the webservice is called. That is the 
service receives userName as the password and userPassword as
the user name. There are other times that the service is called 
correctly.

It seems that a state is reached that makes the parameters to be 
swapped. I am sure that before the call the parameters are allways 
ok. They area swapped when they reach the service. The service is 
logging the parameters in a text file and they are sometimes really 
swapped. 

By the way the Datamanager class seems ok because the service is 
called and the return reaches the result method. 

The webservice is .NET service that when called by other .NET 
application works OK.

Can anyone help me 

Thanks in advance






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

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

* 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: Delegation and Callbacks

2006-02-23 Thread mvbaffa
Hi Matt,

What I need is to callback a function at the object that 
instantiated my class. 

My class wraps the flex webservice object, it calls the webservice 
operations e drives the result event so that the operation can be 
executed synchronously.

The class needs a reference of a function to be called back before 
it calls the webservice operation. In .NET we have a delegation 
process implemented so that we define a delegate that will be driven 
by anyone who needs to receive the event.

In Flex 2.0, I presume, that this can be implemented by the 
listeners, like in java. Is it the right feature to be used or there 
is simething more adequate 

Thanks in advance

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

 Sorry, I'm not sure I get what you're trying to do.  When you say
 delegate do you mean the 1.5 mx.utils.Delegate?  We don't need 
that in
 2.0 because we have closures which means that the function will 
maintain
 the correct this pointer.  Or are you looking for a different 
delegate
 class?
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of mvbaffa
 Sent: Monday, February 20, 2006 4:59 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Delegation and Callbacks
 
 Hi everybody,
 
 I have developed an ActionScript class to help synchonize 
WebService 
 calls. 
 
 You have to create an instance of it in the load event of the 
 WebService. Then the class initializes some internal data 
structures 
 looping through the webservice operations and drives the result 
 event.
 
 At the initialization process the class receives also a 
 setupCallback function parameter so that the application can 
define 
 methods to be called before the webservice operation is sent and 
 after the result event is fired. This setupCallback function is 
 called by the class when it is initializing.
 
 I Would rather use a delegate to communicate with the application. 
 How can I define and use delegation in Flex 2/ActionScript 3
 
 Thanks in advance
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links








--
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: Your preference - Loader or createChild?

2006-02-21 Thread mvbaffa
--- In flexcoders@yahoogroups.com, Roger Gonzalez [EMAIL PROTECTED] 
wrote:

 
  createChild
Good: seems to execute more quickly than mx:Loader
Bad: one huge SWF
  
  mx:Loader
Good: multiple SWFs
Bad: seems to execute more slowly than createChild
 
 Well, its certainly going to be a bit slower, since it needs to 
pull
 stuff over the network and initialize it.
 
 I'll be publishing examples at some point that demonstrates how to 
at
 least make the things you load much more efficient.
 
 I actually don't think mx:Loader is necessarily the best way to 
pull
 them in.  I've built a new class that uses the underlying Flash 
Loader
 class to load modules as a class factory.  This way you can 
choreograph
 when they get pulled in a bit better.
 
 Stay tuned.
 
 -rg


Hi Roger,

I have a class to load mxml application. But after it's loaded how 
can I make this application communicate with the container 
application. Can I use parentDocument to access the controls and 
code resident at the application that loaded it.

Thanks in advance





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

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

* 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: Flex Application with several Forms

2006-02-20 Thread mvbaffa
Thanks Roger,

I am using Flex 2 Beta 1.

I have read your article about rsl and adapted it for Flex 2 to load 
diferent applications using a loader. It worked OK !!! 

But now I have other problems. I beleive that the most relevant is 
the communication between the loaded application and the container 
application, the one that loaded it.

Maybe this is basic but, as I told you, I am new in Flex.

How can I implement this communication 

Thanks in advance

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

 Hi,
 
 Are you using Flex 1.5 or Flex 2.0?
 
 Can you describe the scope a bit?  What does a lot of forms mean?
 
 Are you concerned about download size, or screen real estate?
 
 There are a variety of solutions to accomplish what you need, 
ranging
 from states to deferred instantiation to using Actionscript to
 create/hide your forms, to partitioning your application into 
multiple
 separately downloadable modules.
 
 In order to know which direction to suggest, I'll need a bit more 
info.
 Thanks,
 
 -rg 
 
  -Original Message-
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of mvbaffa
  Sent: Thursday, February 16, 2006 1:35 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Flex Application with several Forms
  
  I am new to Flex and I want to convert a .NET/Delphi Application 
to 
  Flex. This application has a lot of forms and if I include all 
the 
  forms in one Flex Application I will have a huge swf.
  
  I have two questions:
  
  1. How can I construct an application in Flex with several forms 
and 
  load them on demand 
  
  2. If I decide to put all forms in one application how can I 
show 
  them, for instance when a menu item is selected. Maybe this is a 
very 
  simple problem, but I could not find a way to Show a form, like 
we do 
  in Delphi and dismiss it from the screen when it is not needed.
  
  Thanks in advance
  
  
  
  
  
  
  
  --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: 
  http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  Yahoo! Groups Links
  
  
  
   
  
  
 








--
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] Delegation and Callbacks

2006-02-20 Thread mvbaffa
Hi everybody,

I have developed an ActionScript class to help synchonize WebService 
calls. 

You have to create an instance of it in the load event of the 
WebService. Then the class initializes some internal data structures 
looping through the webservice operations and drives the result 
event.

At the initialization process the class receives also a 
setupCallback function parameter so that the application can define 
methods to be called before the webservice operation is sent and 
after the result event is fired. This setupCallback function is 
called by the class when it is initializing.

I Would rather use a delegate to communicate with the application. 
How can I define and use delegation in Flex 2/ActionScript 3

Thanks in advance






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

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

* 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] Flex Application with several Forms

2006-02-16 Thread mvbaffa
I am new to Flex and I want to convert a .NET/Delphi Application to 
Flex. This application has a lot of forms and if I include all the 
forms in one Flex Application I will have a huge swf.

I have two questions:

1. How can I construct an application in Flex with several forms and 
load them on demand 

2. If I decide to put all forms in one application how can I show 
them, for instance when a menu item is selected. Maybe this is a very 
simple problem, but I could not find a way to Show a form, like we do 
in Delphi and dismiss it from the screen when it is not needed.

Thanks in advance







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

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

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