RE: [flexcoders] Is it possible to Instantiate Bindings as a class?

2005-07-14 Thread Philippe Maegerman





These classes don't seem to exist in Flex or 
they might be undocumented.  
Such things exist in Flash : Binding and Endpoint 
classes, quite powerful by the way
http://www.macromedia.com/devnet/mx/flash/articles/databinding_classes_03.html
 
Flex 
2.0 wishlist?
 
Philippe Maegerman


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Tracy 
SprattSent: jeudi 14 juillet 2005 1:17To: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Is it possible to 
Instantiate Bindings as a class?
I recall Matt saying that you could not create bindings in 
AS.You might search the archives to verify 
that.Tracy-Original Message-From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] OnBehalf Of 
LibbySent: Wednesday, July 13, 2005 5:43 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Is it possible to 
Instantiate Bindings as a class?I have a whole group of "http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives:http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups 
Links--Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  






--**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 you that we have checked that this message does not contain any virus but we decline any responsability in case of any damage caused by an a non detected virus.--


[flexcoders] Re: HistoryManger state is undefined on loading

2005-07-14 Thread rockmoyosa
Guess I'm right!!.

But anyway, I'm writing a "buffer" between the HistoryManager and
Application in which I store my Model-state(Object). 

But but I still got this weird problem with the first save I make and
if I push the back button the state (yes the normal procedure with
strings) is undefined. 

For example i save twice an object in an array and than I store the
index in the state Object I want to store.

var state:Object = new Object();
state.currentIndex =this.historyArray.length-1;

When I trace this action the result is:

CurrentIndex: 0
CurrentIndex: 1

Now I push the back button and the loadstate is executed. When I trace
the incoming state object:

Log.debug("state: "+state);
Log.dump(state);

first back :

DEBUG: state: [object Object]

<< DUMP START >> 
 this:Object
|currentIndex = 0  (string)

Second back:

DEBUG: state: undefined

<< DUMP START >> 
 this = undefined  (undefined)

On the third back:
it's a new request or nothing. This is the expected result.

It's link it's out of sync or something.Twice the saveState is
executed and twice the loadState is executed. What is wrong with it.

Please anybody




--- In flexcoders@yahoogroups.com, "rockmoyosa" <[EMAIL PROTECTED]> wrote:
> I'm beginning to get the idee that this part of Flex is pushed in 1.5
> (Or what version it was introduced). No documentation is minimal so
> are the supported functionality. 
> 
> I hope somebody can prove me wrong.
> 
> be continued??
> 
> 
> --- In flexcoders@yahoogroups.com, "rockmoyosa" <[EMAIL PROTECTED]> wrote:
> > --- In flexcoders@yahoogroups.com, "rockmoyosa" <[EMAIL PROTECTED]>
wrote:
> > > This "thing" is really weird:
> > > 
> > > first save state:
> > > 
> > > DEBUG: - saveState 
> > > 
> > > << DUMP START >> 
> > >  this:Object
> > > |view = false  (boolean)
> > > |detailId = 7bd21a76-b716-4501-a196-1acf4265d847  (string)
> > > 
> > > 
> > > And if I click on "Back":
> > > 
> > > DEBUG: - loadState 
> > > 
> > > << DUMP START >> 
> > >  this:Object
> > > |detailId = 7bd21a76-b716-4501-a196-1acf4265d847  (string)
> > > |view = true  (string)
> > > 
> > > What the @[EMAIL PROTECTED] view = true??? ... More documentation on 
> > > the
> > > HistoryManager would be appreciated. Are perhaps more samples. 
> > > 
> > > I found one but it to damn "simple" it doesn't say anything on how
> > > it's working only how to use it for simple things.
> > > 
> > >
> >
>
http://www.richinternet.de/blog/index.cfm?mode=entry&entry=3CF01C8E-CFBB-A5CA-36BCC797581D2CFB
> > > 
> > > 
> > > 
> > > --- In flexcoders@yahoogroups.com, "jacksodj" <[EMAIL PROTECTED]> wrote:
> > > > I personnaly have seen really flakey behavior from that history 
> > > > controller. I have posted before, but have not been able to see a 
> > > > good resolution
> > > > --- In flexcoders@yahoogroups.com, "rockmoyosa" <[EMAIL PROTECTED]> 
> > > > wrote:
> > > > > My case:
> > > > > 
> > > > > - saveState is executed 
> > > > > - On "Back" loadState is executed.
> > > > > 
> > > > > But.
> > > > > Than my state is "undefined"
> > > > > 
> > > > > 
> > > > > private var changed:Boolean;
> > > > >   
> > > > >   public function initHistory():Void {
> > > > >   mx.managers.HistoryManager.register(this);
> > > > >   storeInternalState();
> > > > >   }
> > > > >   
> > > > >   public function saveState():Object {
> > > > >   // called by HistoryManager, tells the component
> > > > >   // to create a "state" object and to return it\
> > > > >   var state = new Object();
> > > > >   state.model = Model.getInstance();
> > > > >   state.view = this._scope.m_detailview;
> > > > >   
> > > > >   mx.controls.Alert.show
> > > > (""+this._scope.m_detailview.visible);
> > > > >   Log.debug("hello"+state);
> > > > >   return state;
> > > > >   }
> > > > >   
> > > > >   public function loadState(state:Object):Void {
> > > > >   // called by HistoryManager, passes in a state
> > > > >   // object so the component can rebuild it's state
> > > > >   mx.controls.Alert.show("state: "+state.view);
> > > > >   restoreInternalState(state);
> > > > >   }
> > > > >   
> > > > >   public function savePresent():Void {
> > > > >   storeInternalState( );
> > > > >   }
> > > > > 
> > > > >   public function storeInternalState():Void {
> > > > >   mx.managers.HistoryManager.save();
> > > > >   }
> > > > >   
> > > > >   public function restoreInternalState(state:Object):Void {
> > > > >   Log.dump(state);
> > > > >   Log.debug
> > > > ("state.view.visible: "+state.view.visible);
> > > > >   
> > > > >   if(state.view.visible == true && 
> > > > this._scope.m_detailview.visible ==
> > > > > 

[flexcoders] Re: Error in Web Service

2005-07-14 Thread tony_lic
Hi Matt,
  
My 
WSDL : "http://iwdf9453.wdf.sap.corp:55080/sap/bc/srt/rfc/sap/ZVI_COP
Y_SAMP_02?wsdl"

Soap Request(from network monitor):


http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
   
  
 dfd
  
   



WebService (RPC):

Method: ZTR_PP_ORD_FOR_WC


Parameter 1: 
name : SIMP
type : char10
value : dfd

Soap Response:


http://schemas.xmlsoap.org/soap/envelope/";>
   
  
 soap-env:Client
 Deserialisation 
failed
 
http://www.sap.com/transformation-templates";>
   /1BCDWB/WSS0050714080745961000
   /1BCDWB/WSS0050714080745961000
   9 
   X
   
  System expected the 
element '{urn:sap-com:document:sap:rfc:functions}
ZTR_PP_ORD_FOR_WC'
  S
  ZTR_PP_ORD_FOR_WC
  
  
   
   
  CL_SRG_RFC_PROXY_CONTEXT
  IF_SXML_PART~DECODE
  1 
   

 
  
   


please help me to come out of this problem
with regards,
tony










--- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> 
wrote:
> Looks like the Flex side didn't send the web service request in 
the way
> that the web service expected it.  What is your web service 
engine?  Can
> you share the WSDL and what Flex sent (web-service-proxy-debug to 
true
> in flex-config.xml)?
> 
>  
> 
> Matt
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of tony_lic
> Sent: Wednesday, July 13, 2005 4:28 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Error in Web Service
> 
>  
> 
> Hi,
>   I have a web service which is working fine. this web service 
does 
> not require any input parameters.
>   If i change the web service to accept some input parameters & 
then 
> try to run my flex application which tries to connect to the web 
> service it gives some strange error like
> 'Deserialization Error'. the detailed error is as follows.
> 
>  xmlns:n0="http://www.sap.com/transformation-templates";>
>/1BCDWB/WSS0050713105048495000
>/1BCDWB/WSS0050713105048495000
>9 
>X
>
>   System expected the 
> element '{urn:sap-com:document:sap:rfc:functions}
> ZTR_PP_ORD_FOR_WC'
>   S
>   ZTR_PP_ORD_FOR_WC
>   
>   
>
>
>   CL_SRG_RFC_PROXY_CONTEXT
>   IF_SXML_PART~DECODE
>   1 
>
> 
> 
> what could be the reason.
> 
> 
> My code is as follows:
> http://www.macromedia.com/2003/mxml"; 
> initialize="webservice5.ZTR_PP_ORD_FOR_WC.send();">
> 
> 
>   
>
>DFD
>  
>   
> 
>   
> 
> 
> please help me in this regards.
> 
> thanks in advance,
> with regards,
> tony
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> 
> 
> 
> 
> 
> 
> YAHOO! GROUPS LINKS 
> 
>  
> 
> *  Visit your group "flexcoders
>  " on the web.
> 
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>  
> 
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service  . 
> 
>  
> 
> 




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

<*> 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: Column chart using webservice result

2005-07-14 Thread tony_lic
Hi Matt,
  Thanks for your help. I'm now able to render the chart 
successfully.
with regards,
tony
--- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> 
wrote:
> Hard to know what you're running into without seeing your 
problems.  But
> before you post them I'd just take a look at the existing chart 
samples
> like the char explorer to see if you can match up on anything that 
might
> already exist.  There are plenty of flexcoders posts about charts 
as
> well, the archives might have code that you're looking for.
> 
>  
> 
> Matt
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of tony_lic
> Sent: Tuesday, July 12, 2005 1:07 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Column chart using webservice result
> 
>  
> 
> Matt Chotin:
>   Ha. i tried with that & it works. I have one more problem. 
now 
> i'm able to set the horizontal axis from the web service result. 
but
> how can i set other details like Column series & values of each 
> series. it would be a great help for me if you could help me.
> with regards,
> tony
> 
> --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> 
> wrote:
> > Shouldn't you be able to replace the last two lines with
> > colchartKPI.horizontalAxis = series?
> > 
> >  
> > 
> > I haven't played with this much...
> > 
> >  
> > 
> > 
> > 
> > From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On
> > Behalf Of tony_lic
> > Sent: Monday, July 11, 2005 4:24 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Column chart using webservice result
> > 
> >  
> > 
> > hi,
> > I have to build a column chart, where all the properties like 
> > columnseries, categoryaxis & the y-axis  values all should come 
> from 
> > a web service.
> > I dont know where to provide the data provider property. 
> > 
> > I tried some coding but it does not appear to work. let me 
provide 
> > with you the code snippet.
> > please help me.
> > 
> >   for(var i=0;i < oRequest.AxisData.item[0].Set.item.length; i++)
> >   {
> > tempValues.push
> > (oRequest.AxisData.item[0].Set.item[i].Caption.toString());
> > //Alert.show(oRequest.AxisData.item
> > [0].Set.item[i].Caption.toString());
> >   }
> >   colchartKPI.dataProvider = 
> > oRequest.AxisData.item[0].Set;
> >   var series:CategoryAxis = new CategoryAxis();
> >   series.dataProvider = tempValues;
> > 
> >   colchartKPI.horizontalAxis.CategoryAxis.dataProvider = 
> > tempValues;
> >   colchartKPI.horizontalAxis.addItem(series);
> > 
> > with regards,
> > tony
> > 
> > 
> > 
> > 
> > --
> > Flexcoders Mailing 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]
> >  subject=Unsubscribe> 
> > 
> > *  Your use of Yahoo! Groups is subject to the Yahoo! Terms 
of
> > Service  . 
> > 
> >  
> > 
> > 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> 
> 
> 
> 
> 
> 
> YAHOO! GROUPS LINKS 
> 
>  
> 
> *  Visit your group "flexcoders
>  " on the web.
> 
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>  
> 
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service  . 
> 
>  
> 
> 




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

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

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

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




RE: [flexcoders] modelChanged event

2005-07-14 Thread Alex Uhlmann
Timing is probably your problem. But anyway there's another solution to 
accomblish your task you might want to consider. If products is your 
dataProvider Array then you can bind to it via



and handle it via getter / setter properties

public function get productsChanged() : Array
{
 return _productsChanged;
}

public function set productsChanged( newProductsChanged : Array)
{
  update( newProductChanged  );
  _productsChanged = newProductsChanged;
}

private var _productsChanged : Array;  

in update you can access the updated dataProvider, delegating to other tasks 
such as calculating a sum. The textfields could then i.e. bind to simple 
properties of your model.

Best,
Alex

--
Alex Uhlmann
Software Engineer
iteration::two


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
Behalf Of Johnny
Sent: 14 July 2005 01:45
To: flexcoders@yahoogroups.com
Subject: [flexcoders] modelChanged event


Hi,

I have a DataGrid control and use addItem and removeItemAt method to
add and remove items.  This works properly.  At the same time, I need
to dynamically calculate the sum for certain field in the DataGrid and
bind the result to a text field.

I add a listener for modelChanged event of dataProvider and add a sum
function there.  But the sum function never gets triggered at all even
after an item is added, deleted or all items are removed.

The array that binds to the dataProvider will create after a remote
service call.  The listener is created at the initialize function of
the appliation.  Could this be a problem?

Thanks,
J




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





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

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

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

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




Re: [flexcoders] Re: Column chart using webservice result

2005-07-14 Thread Craig Newroth



Tony,
I would be interested in seeing how you did this, I have a similar situation, but have not been able to get it to do what I want either. thanks,
Craig
tony_lic <[EMAIL PROTECTED]> wrote:
Hi Matt,  Thanks for your help. I'm now able to render the chart successfully.with regards,tony--- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote:> Hard to know what you're running into without seeing your problems.  But> before you post them I'd just take a look at the existing chart samples> like the char explorer to see if you can match up on anything that might> already exist.  There are plenty of flexcoders posts about charts as> well, the archives might have code that you're looking for.> >  > > Matt> >  > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On> Behalf Of tony_lic> Sent: Tuesday, July 12, 2005
 1:07 AM> To: flexcoders@yahoogroups.com> Subject: [flexcoders] Re: Column chart using webservice result> >  > > Matt Chotin:>   Ha. i tried with that & it works. I have one more problem. now > i'm able to set the horizontal axis from the web service result. but> how can i set other details like Column series & values of each > series. it would be a great help for me if you could help me.> with regards,> tony> > --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> > wrote:> > Shouldn't you be able to replace the last two lines with> > colchartKPI.horizontalAxis = series?> > > >  > > > > I haven't played with this much...> > > >  > > > > > > > > From:
 flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On> > Behalf Of tony_lic> > Sent: Monday, July 11, 2005 4:24 AM> > To: flexcoders@yahoogroups.com> > Subject: [flexcoders] Column chart using webservice result> > > >  > > > > hi,> > I have to build a column chart, where all the properties like > > columnseries, categoryaxis & the y-axis  values all should come > from > > a web service.> > I dont know where to provide the data provider property. > > > > I tried some coding but it does not appear to work. let me provide > > with you the code snippet.> > please help me.> > > >   for(var i=0;i < oRequest.AxisData.item[0].Set.item.length; i++)>
 >   {> > tempValues.push> > (oRequest.AxisData.item[0].Set.item[i].Caption.toString());> > //Alert.show(oRequest.AxisData.item> > [0].Set.item[i].Caption.toString());> >   }> >   colchartKPI.dataProvider = > > oRequest.AxisData.item[0].Set;>
 >   var series:CategoryAxis = new CategoryAxis();> >   series.dataProvider = tempValues;> > > >   colchartKPI.horizontalAxis.CategoryAxis.dataProvider = > > tempValues;> >   colchartKPI.horizontalAxis.addItem(series);> > > > with regards,> > tony> > > > > > > > > > --> > Flexcoders Mailing 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]> >
 > subject=Unsubscribe> > > > > *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of> > Service  . > > > >  > > > > > > > > > --> Flexcoders Mailing List> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> Search Archives:> http://www.mail-archive.com/flexcoders%40yahoogroups.com > > > > > > > YAHOO! GROUPS LINKS >
 >  > > *  Visit your group "flexcoders>  " on the web.>     > *  To unsubscribe from this group, send an email to:>   [EMAIL PROTECTED]> subject=Unsubscribe> >     > *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of> Service  . > >  > > --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
SPONSORED LINKS 



Computer software testing 
Macromedia flex 
Development 

Software developer 
		 Start your day with Yahoo! - make it your home page 


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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Chaning the stroke in a LinkBar

2005-07-14 Thread Leon Tanner










Has anyone had any experience of this at
all?

Any help totally appreciated!

 









From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of leontanner2000
Sent: 13 July 2005 12:03
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Chaning the
stroke in a LinkBar



 

Hi all,

I am trying to find a way to replace the standard
stroke in a LinkBar 
component with an arrow I have made as a
swf.  The current code I am 
using does not seem to replace each stroke and
places just one at teh 
top left corner of the movie.  However, I
could be wrong, they might 
all be there just all residing in this
corner.  The code I am using is 
below:


  



 
direction="horizontal"
 
creationPolicy="queued"
 
borderStyle="solid"
 
dataProvider="myViewStack"
 
initialize="changeMe()" />

[ Viewstack with 5 children here ]

Can anyone show me what I need to add or where I
am going wrong please!

regards
leon




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









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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] non web safe colors in flex?

2005-07-14 Thread Nithya R



Can non web safe colors be used in flex/flex css?
 
 Send instant messages to your online friends http://uk.messenger.yahoo.com 


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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] how to control antialiased text in flex?

2005-07-14 Thread Nithya R



hai
 
is there any possibility for controlling antiakiased text in flex? say switching on/off?
 
thanks
 
nithyaSend instant messages to your online friends http://uk.messenger.yahoo.com 


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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] changing the type size at runtime?

2005-07-14 Thread Nithya R



hai!
  can flex be set so that the user can change the type size at runtime? if yes how ?
any sample or link that would help on this?
 
thanks,
nithyaSend instant messages to your online friends http://uk.messenger.yahoo.com 


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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: changing the type size at runtime?

2005-07-14 Thread Andrew Spaulding
I'm assuming by type size you mean text/font size?

If so, you can set styles suing actionscript, for instance - 

myBox.setStyle( "fontSize", 12 );
myBox.setStyle( "color", 0xFF );

similarly you can use getStyle( "color" ); etc to return the current
style of that type.

cheers,

Andrew Spaulding
www.flexdaddy.info



--- In flexcoders@yahoogroups.com, Nithya R <[EMAIL PROTECTED]> wrote:
> hai!
>   can flex be set so that the user can change the type size at
runtime? if yes how ?
> any sample or link that would help on this?
>  
> thanks,
> nithya
> 
> Send instant messages to your online friends
http://uk.messenger.yahoo.com





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

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

2005-07-14 Thread cnewroth55
Okay, saw the post about the beta Flash Player 8 beta, and as I like 
to jump in with both feet, installed it for IE, Netscape 7.2 and Fire 
Fox 1.0.4...went to one of my flex apps and found that I could no 
longer see my label in the Link tag in my app. I was setting the 
property 'alpha' to  zero so that the "bar" that highlights the 
selection is invisible and just the rollovers would be seen. Removing 
the alpha property lets my labe be seen but then (as I am using 
haloBlue) i get a big ugly blue bar across my link label...I have a 
graphic behind the link bar and did not want this to show up (the 
bar)...it used to work in Flash player 7...so beta team thought you 
would like to knowI really, really dont want to give up my alpha :)

ps. did noticed a slight improvement in load speed...

this on longer works





--
Flexcoders Mailing 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 8 Beta - found problem??!!

2005-07-14 Thread Andrew Spaulding
Well I'm yet to find a bug but there seems to be some noticable
improvements in performance.

Be sure to post your bug using the feedback form found here
http://www.macromedia.com/bin/fp8betafeedback.cgi?

Cheers,

Andrew Spaulding
www.flexdaddy.info



--- In flexcoders@yahoogroups.com, "cnewroth55" <[EMAIL PROTECTED]> wrote:
> Okay, saw the post about the beta Flash Player 8 beta, and as I like 
> to jump in with both feet, installed it for IE, Netscape 7.2 and Fire 
> Fox 1.0.4...went to one of my flex apps and found that I could no 
> longer see my label in the Link tag in my app. I was setting the 
> property 'alpha' to  zero so that the "bar" that highlights the 
> selection is invisible and just the rollovers would be seen. Removing 
> the alpha property lets my labe be seen but then (as I am using 
> haloBlue) i get a big ugly blue bar across my link label...I have a 
> graphic behind the link bar and did not want this to show up (the 
> bar)...it used to work in Flash player 7...so beta team thought you 
> would like to knowI really, really dont want to give up my alpha :)
> 
> ps. did noticed a slight improvement in load speed...
> 
> this on longer works
>modalTransparency="0" borderStyle="none" alpha="0" 
> textRollOverColor="#0099CC" mouseOver="triggerShowEffectNeedReports
> ()" />




--
Flexcoders Mailing 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: Placing controls on top of Panel Container

2005-07-14 Thread jwc_wensan
Nithya:

Yes, I meant placing controls on the panel header.

I wanted the 3D look-n-feel of the panel header.

What I came up with was to use a ControlBar within a VBox.  I 
changed the margins from the default of 10 to 0.  This way I can 
place mutliple controls on the ControlBar's header or footer, as the 
case may be.

I also changed the height to what I wanted.

It may not be the best way, but it accomplishes what I want.

Thanks,

Jack

--- In flexcoders@yahoogroups.com, Nithya R <[EMAIL PROTECTED]> wrote:
> Hai Jack,
>  
> I think u mean placing controls on the panel header right? Even I 
have tried doing it but could not arrive at a solution... but 
there's one way u can achieve it you can have a canvas right on 
top of the panel header and then place the combobox or anything on 
the Canvas... This is how I acheived it... and if u find something 
else regarding this kindly let me know..
>  
> thanks,
> Nithya
> 
> Tracy Spratt <[EMAIL PROTECTED]> wrote:
> I am not following your question.  What do you mean by "on top?"
> Tracy
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of jwc_wensan
> Sent: Wednesday, July 13, 2005 1:30 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Placing controls on top of Panel Container
> 
> To All:
> 
> I need to be able to place controls(combobox, textfield, etc.) on 
top 
> of a Panel container.  Is that possible?  
> 
> Much like you can with the ControlBar.
> 
> I tried to place a control on the Panel from Design View, but that 
did 
> not work either.
> 
> Thanks in advance,
> 
> Jack
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com 
> 
> 
> 
> -
> YAHOO! GROUPS LINKS 
> 
> 
> Visit your group "flexcoders" on the web.
>   
> To unsubscribe from this group, send an email to:
>  [EMAIL PROTECTED]
>   
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service. 
> 
> 
> -
> 
> 
> 
> Send instant messages to your online friends 
http://uk.messenger.yahoo.com






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

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

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

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




Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-07-14 Thread Craig Newroth



and here is what I did to get it to do what I wanted, evidently the Flash player 8 takes it literally on the alpha property :) - i set it to 1 (one) instead of zero (0) and it is back to being transparent like I wanted it to be... whew!
WIll post that to the feedback Andrew, thx
Craig
Andrew Spaulding <[EMAIL PROTECTED]> wrote:
Well I'm yet to find a bug but there seems to be some noticableimprovements in performance.Be sure to post your bug using the feedback form found herehttp://www.macromedia.com/bin/fp8betafeedback.cgi?Cheers,Andrew Spauldingwww.flexdaddy.info--- In flexcoders@yahoogroups.com, "cnewroth55" <[EMAIL PROTECTED]> wrote:> Okay, saw the post about the beta Flash Player 8 beta, and as I like > to jump in with both feet, installed it for IE, Netscape 7.2 and Fire > Fox 1.0.4...went to one of my flex apps and found that I could no > longer see my label in the Link tag in my app. I was setting the > property 'alpha' to  zero so that the "bar" that highlights the > selection is invisible and just the rollovers would be seen.
 Removing > the alpha property lets my labe be seen but then (as I am using > haloBlue) i get a big ugly blue bar across my link label...I have a > graphic behind the link bar and did not want this to show up (the > bar)...it used to work in Flash player 7...so beta team thought you > would like to knowI really, really dont want to give up my alpha :)> > ps. did noticed a slight improvement in load speed...> > this on longer works>     > modalTransparency="0" borderStyle="none" alpha="0" > textRollOverColor="#0099CC" mouseOver="triggerShowEffectNeedReports> ()" />--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
		 Start your day with Yahoo! - make it your home page 


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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Re: guid/uuid generation

2005-07-14 Thread Clint Modien



>>I'm going to put in a request for MM to include a uuid generator. Seems
to make sense given the nature of RIA that new object generation is
going to occur mostly on the client, so why not have these things
available. Even better why not have them compiled in the player?? (come
on, it'd be less than 1k)

2 thumbs up for that guid generation on the client is the only way
to go. Going all the way back to the DB that could be thousands of
miles away for a unique key is just silly.


On 7/13/05, Sean McKibben <[EMAIL PROTECTED]> wrote:


Thanks Andrew & Clint. Oddly enough, within about 5 minutes, I:a)finished building my own class to do it (converting Branden Hall's SHA-1 algorithm to AS2)b)received Clint's classd)received Andrew's link
Took longer to research than to write the class, once I found an AS SHA-1 algorithm.I
just generated 50k uuids using SHA-1 hashes made from a namespace, the
results of new date() and an incrementor. Probably overkill, but but I
learned:a)flash can handle really big hash tablesb)I'm not going to win the lotteryc)I've forgotten much of my discrete math class in collegeI'm
going to put in a request for MM to include a uuid generator. Seems to
make sense given the nature of RIA that new object generation is going
to occur mostly on the client, so why not have these things available.
Even better why not have them compiled in the player?? (come on, it'd
be less than 1k)Thanks againSeanOn Jul 13, 2005, at 6:14 PM, Andrew Spaulding wrote:
  Hey Sean,  Check out ASCrypt at 
http://www.meychi.com/archive/31.php  It has the following classes: Base8, Base64, Goauld, LZW, GUID, RC4, MD5, SHA1, ROT13, Rijndael and TEA.  I have used the GUID class at it creates exactly what you are after.
 Also it is all written in Actionscript 2.0  cheers,  Andrew Spaulding www.flexdaddy.info
--- In flexcoders@yahoogroups.com, Sean McKibben <[EMAIL PROTECTED]> wrote: > Is anyone aware of a guid generation system for flex/flash? I'm  
 > building a system which does quite a bit on the client before a trip   > to the server, and it needs to make some references amongst objects   > that the server can understand, so a real guid generator would be the  
 > best way to do that. >  > I know I could probably use math.random() to generate a random number   > and try to use that as a guid, but this is an enterprise app here,   > and there are rules for guids which we'd need to conform to.
 >  > Ideally, the the UUID version 5, using SHA-1 would be my preference.   > Anything at least pretty robust which could come up with the format,   > "{3F2504E0-4F89-11D3-9A0C-0305E82C3301}" would be useful.
 >  > Anyone else come across a solution for this? >  > Thanks, > Sean  -- Flexcoders Mailing List FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com   
  YAHOO! GROUPS LINKS  Visit your group "
flexcoders" on the web.    To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED]    Your use of Yahoo! Groups is subject to the 
Yahoo! Terms of Service. 



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

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




  
  





  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 

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




  











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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-07-14 Thread Abdul Qabiz





Hi,
 
We tried reproducing the same here at our end and we don't 
see any difference between two players (FP7 & FP8 Beta).
 
-abdul


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Craig 
NewrothSent: Thursday, July 14, 2005 5:41 PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: Flash Player 
8 Beta - found problem??!!

and here is what I did to get it to do what I wanted, evidently the Flash 
player 8 takes it literally on the alpha property :) - i set it to 1 (one) 
instead of zero (0) and it is back to being transparent like I wanted it to 
be... whew!
WIll post that to the feedback Andrew, thx
Craig
Andrew Spaulding <[EMAIL PROTECTED]> 
wrote:
Well 
  I'm yet to find a bug but there seems to be some noticableimprovements in 
  performance.Be sure to post your bug using the feedback form found 
  herehttp://www.macromedia.com/bin/fp8betafeedback.cgi?Cheers,Andrew 
  Spauldingwww.flexdaddy.info--- In 
  flexcoders@yahoogroups.com, "cnewroth55" <[EMAIL PROTECTED]> 
  wrote:> Okay, saw the post about the beta Flash Player 8 beta, and as I 
  like > to jump in with both feet, installed it for IE, Netscape 7.2 and 
  Fire > Fox 1.0.4...went to one of my flex apps and found that I could 
  no > longer see my label in the Link tag in my app. I was setting the 
  > property 'alpha' to  zero so that the "bar" that highlights the 
  > selection is invisible and just the rollovers would be seen. Removing 
  > the alpha property lets my labe be seen but then (as I am using 
  > haloBlue) i get a big ugly blue bar across my link label...I have a 
  > graphic behind the link bar and did not want this to show up (the 
  > bar)...it used to work in Flash player 7...so beta team thought you 
  > would like to knowI really, really dont want to give up my alpha 
  :)> > ps. did noticed a slight improvement in load 
  speed...> > this on longer works> 
      > modalTransparency="0" 
  borderStyle="none" alpha="0" > textRollOverColor="#0099CC" 
  mouseOver="triggerShowEffectNeedReports> ()" 
  />--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  


Start your 
day with Yahoo! - make it your home page --Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-07-14 Thread PR Muruganandh










Hi

 

In FP7[IE] & FP8[FireFox]

 

The following code works the
same way

 





 

 

If I change
alpha="100", then also FP7[IE] & FP8[FireFox] works similar! 

 

Might be some problem with
this

mouseOver="triggerShowEffectNeedReports()"
!

 

 

- anand

 

 









From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Abdul Qabiz
Sent: Thursday, July 14, 2005 6:05
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
Flash Player 8 Beta - found problem??!!



 

Hi,

 

We tried reproducing the same here at our
end and we don't see any difference between two players (FP7 & FP8 Beta).

 

-abdul

 







From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Craig Newroth
Sent: Thursday, July 14, 2005 5:41
PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re:
Flash Player 8 Beta - found problem??!!



and here is what I did to get it to do what I wanted, evidently the
Flash player 8 takes it literally on the alpha property :) - i set it to 1
(one) instead of zero (0) and it is back to being transparent like I wanted it
to be... whew!





WIll post that to the feedback Andrew, thx





Craig







Andrew Spaulding
<[EMAIL PROTECTED]> wrote:





Well I'm yet to find a bug but there seems to be some noticable
improvements in performance.

Be sure to post your bug using the feedback form
found here
http://www.macromedia.com/bin/fp8betafeedback.cgi?

Cheers,

Andrew Spaulding
www.flexdaddy.info



--- In flexcoders@yahoogroups.com,
"cnewroth55" <[EMAIL PROTECTED]> wrote:
> Okay, saw the post about the beta Flash
Player 8 beta, and as I like 
> to jump in with both feet, installed it for
IE, Netscape 7.2 and Fire 
> Fox 1.0.4...went to one of my flex apps and
found that I could no 
> longer see my label in the Link tag in my
app. I was setting the 
> property 'alpha' to  zero so that the
"bar" that highlights the 
> selection is invisible and just the rollovers
would be seen. Removing 
> the alpha property lets my labe be seen but
then (as I am using 
> haloBlue) i get a big ugly blue bar across my
link label...I have a 
> graphic behind the link bar and did not want
this to show up (the 
> bar)...it used to work in Flash player 7...so
beta team thought you 
> would like to knowI really, really dont
want to give up my alpha :)
> 
> ps. did noticed a slight improvement in load
speed...
> 
> this on longer works
>  
  
> modalTransparency="0"
borderStyle="none" alpha="0" 
> textRollOverColor="#0099CC"
mouseOver="triggerShowEffectNeedReports
> ()" />




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















Start
your day with Yahoo! - make it your home page 

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




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









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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] how to control antialiased text in flex?

2005-07-14 Thread Matt Horn





Not to my knowledge, but you can do a couple of things to 
get around it. 
 
 - don't embed any fonts
 - use a text input field -- Flash never aliases font 
in them
 - change the style to a device font for areas where 
you want to use non-anti-aliased fonts
 
hth,
 
matt horn
flex docs

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Nithya 
  RSent: Thursday, July 14, 2005 6:34 AMTo: 
  flexcodersSubject: [flexcoders] how to control antialiased text in 
  flex?
  
  hai
   
  is there any possibility for controlling antiakiased text in flex? say 
  switching on/off?
   
  thanks
   
  nithya
  Send instant messages to your online friends http://uk.messenger.yahoo.com 
  --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  


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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] non web safe colors in flex?

2005-07-14 Thread Matt Horn





valid color value formats include "#RRGGBB". the possible 
values 00 to FF for each of the 3 colors far exceeds the number of websafe 
colors, so the answer is yes, you can use non websafe colors in your 
apps.
 
please read the styles chapter for more info on using 
colors, text, and fonts. You can download the documentation 
here:
http://www.macromedia.com/support/documentation/en/flex/
 
Or view the documentation online here:
http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/js/html/wwhelp.htm
 
hth,
 
matt horn
flex docs
 
 

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Nithya 
  RSent: Thursday, July 14, 2005 6:31 AMTo: 
  flexcodersSubject: [flexcoders] non web safe colors in 
  flex?
  
  Can non web safe colors be used in flex/flex css?
   
   
  Send instant messages to your online friends http://uk.messenger.yahoo.com 
  --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  


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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

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

Jonathan


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

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

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

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




[flexcoders] Re: Column chart using webservice result

2005-07-14 Thread tony_lic
Craig,
  may be this part of the code should be useful to you.

var xmlResult = new XML();
var oRequest:Object =  new Object();
var tempValues = new Array();

xmlResult = 
wsQueryView.GetQueryViewData.result[0];
oRequest = XMLhelper.XML2Object(xmlResult);





var series:CategoryAxis = new CategoryAxis();
series.dataProvider = tempValues;
series.categoryField = "xaxisdata";

colchartKPI.horizontalAxis = series;

colchartKPI.dataProvider = tempValues;


all the best,
with regards,
tony






-- In flexcoders@yahoogroups.com, Craig Newroth <[EMAIL PROTECTED]> 
wrote:
> Tony,
> 
> I would be interested in seeing how you did this, I have a similar 
situation, but have not been able to get it to do what I want 
either. thanks,
> Craig
> 
> tony_lic <[EMAIL PROTECTED]> wrote:
> Hi Matt,
>   Thanks for your help. I'm now able to render the chart 
> successfully.
> with regards,
> tony
> --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> 
> wrote:
> > Hard to know what you're running into without seeing your 
> problems.  But
> > before you post them I'd just take a look at the existing chart 
> samples
> > like the char explorer to see if you can match up on anything 
that 
> might
> > already exist.  There are plenty of flexcoders posts about 
charts 
> as
> > well, the archives might have code that you're looking for.
> > 
> >  
> > 
> > Matt
> > 
> >  
> > 
> > 
> > 
> > From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On
> > Behalf Of tony_lic
> > Sent: Tuesday, July 12, 2005 1:07 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Re: Column chart using webservice result
> > 
> >  
> > 
> > Matt Chotin:
> >   Ha. i tried with that & it works. I have one more problem. 
> now 
> > i'm able to set the horizontal axis from the web service result. 
> but
> > how can i set other details like Column series & values of each 
> > series. it would be a great help for me if you could help me.
> > with regards,
> > tony
> > 
> > --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> 
> > wrote:
> > > Shouldn't you be able to replace the last two lines with
> > > colchartKPI.horizontalAxis = series?
> > > 
> > >  
> > > 
> > > I haven't played with this much...
> > > 
> > >  
> > > 
> > > 
> > > 
> > > From: flexcoders@yahoogroups.com 
> > [mailto:[EMAIL PROTECTED] On
> > > Behalf Of tony_lic
> > > Sent: Monday, July 11, 2005 4:24 AM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Column chart using webservice result
> > > 
> > >  
> > > 
> > > hi,
> > > I have to build a column chart, where all the properties like 
> > > columnseries, categoryaxis & the y-axis  values all should 
come 
> > from 
> > > a web service.
> > > I dont know where to provide the data provider property. 
> > > 
> > > I tried some coding but it does not appear to work. let me 
> provide 
> > > with you the code snippet.
> > > please help me.
> > > 
> > >   for(var i=0;i < oRequest.AxisData.item[0].Set.item.length; 
i++)
> > >   {
> > > tempValues.push
> > > (oRequest.AxisData.item[0].Set.item[i].Caption.toString());
> > > //Alert.show(oRequest.AxisData.item
> > > [0].Set.item[i].Caption.toString());
> > >   }
> > >   colchartKPI.dataProvider = 
> > > oRequest.AxisData.item[0].Set;
> > >   var series:CategoryAxis = new CategoryAxis();
> > >   series.dataProvider = tempValues;
> > > 
> > >   colchartKPI.horizontalAxis.CategoryAxis.dataProvider = 
> > > tempValues;
> > >   colchartKPI.horizontalAxis.addItem(series);
> > > 
> > > with regards,
> > > tony
> > > 
> > > 
> > > 
> > > 
> > > --
> > > Flexcoders Mailing 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]
> > >  > subject=Unsubscribe> 
> > > 
> > > *  Your use of Yahoo! Groups is subject to the Yahoo! 
Terms 
> of
> > > Service  . 
> > > 
> > >  
> > > 
> > > 
> > 
> > 
> > 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcod

Re: [flexcoders] how to control antialiased text in flex?

2005-07-14 Thread Sjors Pals
Another good way is to use fonts which where designed for use in flash.
Yesterday i found this site, with some really nice fonts:

http://www.orgdot.com/aliasfonts/

Greets,

Sjors





Matt Horn wrote:

> Not to my knowledge, but you can do a couple of things to get around it.
>  
>  - don't embed any fonts
>  - use a text input field -- Flash never aliases font in them
>  - change the style to a device font for areas where you want to use 
> non-anti-aliased fonts
>  
> hth,
>  
> matt horn
> flex docs
>
> 
> *From:* flexcoders@yahoogroups.com
> [mailto:[EMAIL PROTECTED] *On Behalf Of *Nithya R
> *Sent:* Thursday, July 14, 2005 6:34 AM
> *To:* flexcoders
> *Subject:* [flexcoders] how to control antialiased text in flex?
>
> hai
>  
> is there any possibility for controlling antiakiased text in flex?
> say switching on/off?
>  
> thanks
>  
> nithya
>
> Send instant messages to your online friends
> http://uk.messenger.yahoo.com
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
>
>
> 
> YAHOO! GROUPS LINKS
>
> *  Visit your group "flexcoders
>   " on the web.
>
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>   
>
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>   Service .
>
>
> 
>



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

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

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

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




RE: [flexcoders] MenuBarItem label.

2005-07-14 Thread Jeff Krueger










THANK YOU, as you might guess, I would
have never got that.

 



Jeff 











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Wednesday, July 13, 2005
11:24 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
MenuBarItem label.



 

Yeah, this is really poorly documented so
be aware this could easily change in 2.0.  Note that even though the Menu
is supposed to use a TreeDataProvider I had to use the MenuDataProvider
interface which we haven’t even documented in the ASDoc from what I saw
(but essentially imagine the TreeDataProvider where xxxTreeItem is replaced
with xxxMenuItem.

 

Here’s a sample:

 



 







 



  

  

    

  

    

    

  

    

    

  

    

  

  



 



 



 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeff Krueger
Sent: Wednesday, July 13, 2005
10:41 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] MenuBarItem
label.



 

Hello,

 

   
I have a menu bar in my application and I am trying to not hard code the fact
that the forth menu item is the tools menu that I need to dynamically set the
menu items on.  Instead I would like to be able to loop through all the
MenuBarItems and look at their names to find the one that is labeled tools.
 I have tried a ton of different things but have been unsuccessful in
being able to find the right syntax to get that label.

 

This is what I currently have.

 

for (var i:Number=0; i<5 ; i++)

{

   
var currentMenu:Menu = theMenuBar.getMenuAt(i);

   
mx.core.Application.alert(currentMenu.id);

   
mx.core.Application.alert(currentMenu.value.toString());

}

 

Any suggestion would be much appreciated.

 

 

Thanks

 

 

Jeff 

 



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






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









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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Flash Player 8 Public Beta

2005-07-14 Thread Wilfred LEUNG
Hi

I tried it on my Flex app with chart component.
However, the result is not good compared to using FP7.

For instance, the datatip does not respond quick enough

Wilfred

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of JesterXL
Sent: Tuesday, July 12, 2005 8:53 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flash Player 8 Public Beta


If you other Flexerz could test your apps, this would really help 
Macromedia, thanks!

- Original Message - 
From: "Dirk Eismann" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, July 12, 2005 5:34 AM
Subject: [flexcoders] Flash Player 8 Public Beta


In case you haven't heard the news, the Flash Player 8 Public Beta is
available:

http://www.macromedia.com/software/flashplayer/public_beta/

I tested it with several Flex applications and already noticed about 30%
less memory consumption and less "CPU cooking" compared to Flash Player
7. Kudos to the Flash Player Team!

Dirk.


--
Flexcoders Mailing 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] Second retrieval not working - anyone help ?!

2005-07-14 Thread jamiebadman
Hi,

I wonder if someone has any ideas on this...

I've attached the code at the end.

Basically I have two grids, each attached to a data provider. The 
first grid shows a list of invoices then when a row is clicked on, a 
call to retrieve invoice line items is issued. These items are to be 
displayed in the second grid.

However, it doesn't quite work out that way!

The top grid gets populated with invoices, no problem. Then when I 
click on one of them, I can see in the network monitor that the call 
to Coldfusion is issued correctly and with the parameters I'd expect.

I then get an 'onResult' from the RemoteObject in the network 
monitor and I can see that all the expected data has been returned...

But the second grid does NOT get populated with this data AND 
the 'onResult' function - getSAPInvoiceItemDataResult() - does not 
get called!

It seems everyone is working correctly right up to the point the 
data's sent back for the items then it hits a wall!

I've pored over this for a good time now and have run out of ideas 
(not that I had too many to begin with!). Have I missed something 
obvious ? Anyone have any ideas why it might be behaving this way ?

Any help is gratefully received!

Thanks,

Jamie.

The code:


http://www.macromedia.com/2003/mxml"; 
xmlns="*" 
xmlns:local="localComponents.*"
xmlns:manageCredits="appScreens.credits.manageCredits.*"
xmlns:importCredits="appScreens.credits.importCredits.*"
initialize="searchInvoices()" 
height="650" 
width="1000" 
themeColor="#78CDD7">

http://localhost:8501/flashservices/gateway"; 
source="alchemy.coldfusion.creditMethods"
fault="doFault(event)" 
showBusyCursor="true">








{creditMethods.getSAPInvoiceData.result}

{creditMethods.getSAPInvoiceItemData.result}


function doFault(event:Object):Void {
parentDocument.alert("Error invoking CFC: " 
+ event.fault.faultstring);
}

function cancelPopUp() 
{
doLater(this, "deletePopUp");
}

function closePopUp() 
{   
doLater(this, "deletePopUp");
}

function searchInvoices(){
creditMethods.getSAPInvoiceData( 2100, 


 'GBT610',


 '',


 '', 


 '',


 21525217 );
}

function getInvoiceItems( event ){
// Row clicked - so retrieve the items for 
this invoice...
var currentIndex = 0;

currentIndex = dgInvoiceList.selectedIndex;

creditMethods.getSapInvoiceItemData( 2100, 


 'GBT610',


 '21525217' );
}

function getSAPInvoiceDataResult(){
trace('received the invoices');
}

function getSAPInvoiceItemDataResult(){ 
trace('received items');
trace('length of items ' + 
invoiceItemList.length);
}























[flexcoders] mx:ScrollView not known to compiler?

2005-07-14 Thread Dirk Eismann
Maybe I'am missing something obvious here (or my brain just melted because of 
30°C/86°F in the office) but why can't I use mx.core.ScrollView inside mxml? 
The sample below does not compile and gives the following error: "Don't know 
how to parse element "http://www.macromedia.com/2003/mxml:ScrollView";. It is 
not a known type or a property of mx.core.Application."

http://www.macromedia.com/2003/mxml";>
  

  


I also tried to build a MXML component that subclasses ScrollView but still no 
go. 

Ideas?

Dirk.


--
Flexcoders Mailing 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 Books . . .

2005-07-14 Thread chris.alvarado
good moring everyone. . . . 

i was looking around for possible Flex books and of course saw what
may be the only one "Developing Rich Clients with Macromedia Flex" is
written around Flex 1.0. Is there an updated version planned or any
new Flex books in the works that anyone knows of? I'll probably end up
getting the one mentioned about, im just curious about anything on the
horizon.

thanks everyone.

-- 
-chris.alvarado
[application developer]


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

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

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

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





RE: [flexcoders] mx:ScrollView not known to compiler?

2005-07-14 Thread Sauro, Nick





Well, why would you want to create a ScrollView 
object?  Most Panels, and in your specific case, your HBox, have properties 
HScrollPolicy and VScrollPolicy which allow you to turn on/off/auto(default) 
those scroll bars.  
 
I also believe ScrollView is just a base class for objects 
that use scrolls(not sure if it can be instantiated or not;abstract class???not 
sure)
 
Nick 
Sauro + R 
O U N D 
A R C H + 
bus 
212.909.2335 + mob 914.882.3687
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Dirk 
EismannSent: Thursday, July 14, 2005 10:54 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] mx:ScrollView not 
known to compiler?
Maybe I'am missing something obvious here (or my brain just 
melted because of 30°C/86°F in the office) but why can't I use 
mx.core.ScrollView inside mxml? The sample below does not compile and gives the 
following error: "Don't know how to parse element "http://www.macromedia.com/2003/mxml:ScrollView". 
It is not a known type or a property of 
mx.core.Application."http://www.macromedia.com/2003/mxml">  
      
I also tried to build a 
MXML component that subclasses ScrollView but still no go. 
Ideas?Dirk.--Flexcoders Mailing 
ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Flex server configuration

2005-07-14 Thread recfin_dennis
Can anyone help me with server configuration and FLex.  The question is 
can Flex be effectively depoyed on its own hardware with the java 
environment running on seperate machines or is the "one to one" ratio 
the only viable alternative for a non bottlenecking application 
developement atmosphere?

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




Re: [flexcoders] Flex Portal Integration - Flex as a Portlet

2005-07-14 Thread Jeppe N. Madsen
On Thu, 14 Jul 2005, Craig McDonald wrote:

>  I've been trying in vain over the last few weeks to get a simple
>  Flex app deployed as a portlet in Jetspeed-2 (as a JSR-168
>  portlet).
>  

[...]

>  However, I still cant get it to work, simply because I can't get
>  the portlet to "look" outside of its own context. For example, I
>  have jetspeed-2 running on Tomcat at http://myserver.com/jetspeed/
>  - this displays the jetspeed landing page.
>  
>  Flex is installed on the same Tomcat instance, at
>  http://myserver.com/flex - however, when I create the portlet and
>  try and point the .java to a "view.jsp" - it only allows files to
>  be viewed/exectued within the portlet that are contained within
>  that portlet context.

[...]

Do you need Flex to run in a separate context? If not, you can deploy
the Flex classes etc. to the jetspeed context

rgds
Jeppe



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

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

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

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




RE: [flexcoders] Flex Books . . .

2005-07-14 Thread Steven Webster
Chris,

We will be writing an updated version of the Flex book, but there won't be
an updated version of the book for Flex 1.5.  I can't discuss content or
timescales at this stage (as we haven't written any, and don't have any).

I'd recommend that you purchase the version of the book that is available
right now, for your current application development needs.

At a future point in time, we'll poll the readership here for some of the
things they'd like to see in a new book; but please don't provide any
thoughts right now, as we're not yet ready to absorb them.

Best wishes,

Steven 


--
Steven Webster
Technical Director
iteration::two

 
This e-mail and any associated attachments transmitted with it may contain
confidential information and must not be copied, or disclosed, or used by
anyone other than the intended recipient(s). If you are not the intended
recipient(s) please destroy this e-mail, and any copies of it, immediately.
 
Please also note that while software systems have been used to try to ensure
that this e-mail has been swept for viruses, iteration::two do not accept
responsibility for any damage or loss caused in respect of any viruses
transmitted by the e-mail. Please ensure your own checks are carried out
before any attachments are opened.

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of chris.alvarado
Sent: 14 July 2005 16:08
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Books . . .

good moring everyone. . . . 

i was looking around for possible Flex books and of course saw what may be
the only one "Developing Rich Clients with Macromedia Flex" is written
around Flex 1.0. Is there an updated version planned or any new Flex books
in the works that anyone knows of? I'll probably end up getting the one
mentioned about, im just curious about anything on the horizon.

thanks everyone.

--
-chris.alvarado
[application developer]


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




RE: [flexcoders] mx:ScrollView not known to compiler?

2005-07-14 Thread Dirk Eismann
Ok - this wasn't a good example. I basically need a ScrollView as the base for 
a custom component - don't mind the HBox :)
 
Dirk.



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sauro, 
Nick
Sent: Thursday, July 14, 2005 5:16 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] mx:ScrollView not known to compiler?


Well, why would you want to create a ScrollView object?  Most Panels, and in 
your specific case, your HBox, have properties HScrollPolicy and VScrollPolicy 
which allow you to turn on/off/auto(default) those scroll bars.  
 
I also believe ScrollView is just a base class for objects that use scrolls(not 
sure if it can be instantiated or not;abstract class???not sure)
 
Nick Sauro + R O U N D A R C H + bus 212.909.2335 + mob 914.882.3687
 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk 
Eismann
Sent: Thursday, July 14, 2005 10:54 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] mx:ScrollView not known to compiler?


Maybe I'am missing something obvious here (or my brain just melted because of 
30°C/86°F in the office) but why can't I use mx.core.ScrollView inside mxml? 
The sample below does not compile and gives the following error: "Don't know 
how to parse element "http://www.macromedia.com/2003/mxml:ScrollView";. It is 
not a known type or a property of mx.core.Application."

http://www.macromedia.com/2003/mxml";>
  

  


I also tried to build a MXML component that subclasses ScrollView but still no 
go. 

Ideas?

Dirk.


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



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





YAHOO! GROUPS LINKS 


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







--
Flexcoders Mailing 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: mx:ScrollView not known to compiler?

2005-07-14 Thread Rob Rusher
ScrollView is not in the mxml_manifest.xml.

If you add  to /WEB-INF/flex/mxml-manifest.xml and 
restart the service the error message will go away.

Regards,
Rob Rusher


--- In flexcoders@yahoogroups.com, "Dirk Eismann" <[EMAIL PROTECTED]> 
wrote:
> Ok - this wasn't a good example. I basically need a ScrollView as 
the base for a custom component - don't mind the HBox :)
>  
> Dirk.
> 
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Sauro, Nick
> Sent: Thursday, July 14, 2005 5:16 PM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] mx:ScrollView not known to compiler?
> 
> 
> Well, why would you want to create a ScrollView object?  Most 
Panels, and in your specific case, your HBox, have properties 
HScrollPolicy and VScrollPolicy which allow you to turn on/off/auto
(default) those scroll bars.  
>  
> I also believe ScrollView is just a base class for objects that 
use scrolls(not sure if it can be instantiated or not;abstract 
class???not sure)
>  
> Nick Sauro + R O U N D A R C H + bus 212.909.2335 + mob 
914.882.3687
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann
> Sent: Thursday, July 14, 2005 10:54 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] mx:ScrollView not known to compiler?
> 
> 
> Maybe I'am missing something obvious here (or my brain just melted 
because of 30°C/86°F in the office) but why can't I use 
mx.core.ScrollView inside mxml? The sample below does not compile 
and gives the following error: "Don't know how to parse 
element "http://www.macromedia.com/2003/mxml:ScrollView";. It is not 
a known type or a property of mx.core.Application."
> 
> http://www.macromedia.com/2003/mxml";>
>   
> 
>   
> 
> 
> I also tried to build a MXML component that subclasses ScrollView 
but still no go. 
> 
> Ideas?
> 
> Dirk.
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com 
> 
> 
> 
> 
> 
> YAHOO! GROUPS LINKS 
> 
> 
>   *Visit your group "flexcoders 
 " on the web.
> 
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]  
> 
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service  . 
> 
> 
> 




--
Flexcoders Mailing 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] null errors in CSS caused by JVM1.5

2005-07-14 Thread Steven Webster





Thought I'd pass on 
this experience, and see if anyone has encountered it and can explain it (I've 
worked around for now).
 
Deploying a Flex 
application  Tomcat 5.0.28 with JAVA_HOME using 
j2sdk1.4.1_03.
 
However, the JVM 
that Tomcat was using was jre1.5.0_04 - when using this JVM for Tomcat, any 
attempts to parse a CSS file at runtime with an @font-face declaration would 
cause a CSS error on the following CSS clause, eg:
 

@font-face {
font-family : winMoney;
src : url("assets/fonts/MONORG__.TTF");
}
Application
{
theme-color : #018adb;
}
would cause a CSS 
error on the red-brace above, that looked like:
 

1 Warning found.  Warning /main.css:7 
null
 
 
After 
several acts of desparation, changing Tomcat to explicitly use the following 
JVM:
 
C:\Program Files\Java\j2re1.4.1_03\bin\client\jvm.dll
 
removed 
the errors (and gave me the fonts I was looking for).
 
Anyone 
got any insight as to why a 1.5 JVM would not play ball with CSS 
?
 
One to 
file under "if this ever happens to me again the laptop is landing in the car 
park"
 
Steven
 


--
Steven WebsterTechnical 
Director
iteration::two
 
This e-mail and any associated attachments 
transmitted with it may contain confidential information and must not be copied, 
or disclosed, or used by anyone other than the intended recipient(s). If you are 
not the intended recipient(s) please destroy this e-mail, and any copies of it, 
immediately. Please also note that while software systems have been 
used to try to ensure that this e-mail has been swept for viruses, 
iteration::two do not accept responsibility for any damage or loss caused in 
respect of any viruses transmitted by the e-mail. Please ensure your own checks 
are carried out before any attachments are 
opened.
 


--
Flexcoders Mailing 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] Adding an item in a grid from a Popup

2005-07-14 Thread Ghislain Simard
HI,
I would like to add, from a popup window, an item in a grid.  But 
it's not adding to the grid.  Any help would be great.  here is the 
code:

The grid:
  

The script:
function popNewZone()
{
var parentToPopUpOver = this;
var fc_submit:String;   
var isModal:Boolean = true;
var iniObj = {fc_submit:"submitForm_new"};

var newPop:TitleWindow = TitleWindow
(mx.managers.PopUpManager.createPopUp
(parentToPopUpOver,popup.popup_new_zone,isModal,iniObj));
newPop.move(250,200);
}

//SUBMIT FROM POP UP
function submitForm_new(submitValue:String)
{
// CHECK DOUBLE NAME
tableauZones.addItem(submitValue);
}

]]>


The popup:


http://www.macromedia.com/2003/mxml"; 
autoLayout="true" title="Nouvelle instance de zone" 
closeButton="true"
width="325" height="160" click="this.deletePopUp();">






  
  
  
  






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

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

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

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





RE: [flexcoders] Is it possible to Instantiate Bindings as a class?

2005-07-14 Thread Matt Chotin










These classes are not documented in 1.5
nor do we really expect to document them in 2.0. Binding is a set of code-generated
event handlers, much of the power comes from the compile-time introspection. 
It is likely that if you are creating this from ActionScript you directly you
could probably write a more efficient implementation specific to your needs.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Philippe Maegerman
Sent: Thursday, July 14, 2005
12:21 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Is it
possible to Instantiate Bindings as a class?



 

These classes don't seem to exist in Flex
or they might be undocumented.  

Such things exist in Flash : Binding and
Endpoint classes, quite powerful by the way

http://www.macromedia.com/devnet/mx/flash/articles/databinding_classes_03.html



 





Flex 2.0 wishlist?





 



Philippe Maegerman









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy Spratt
Sent: jeudi 14 juillet 2005 1:17
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Is it
possible to Instantiate Bindings as a class?



I recall Matt saying that you could not create bindings in AS.
You might search the archives to verify that.
Tracy

-Original Message-
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
Behalf Of Libby
Sent: Wednesday, July 13, 2005 5:43 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to
Instantiate Bindings as a class?

I have a whole group of "screens. Some screens have the same field with the
same name and are
fed by the same model. I want to either: put all
thos tags into a
separate file and somehow include it into my .mxml
file at compile
time; or, better yet, create a class file that
contains all the
bindings. I have been totally unsuccessful at
both. Is this a bad
practice? If not, can someone show me a simple
example of one of these
techniques? I could not get #include to work
either, and read that MM
doesn't recommend using it.

Thanks,
Libby




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




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









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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  








--**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 you that we have checked that this message does not contain any virus but we decline any responsability in case of any damage caused by an a non detected virus.--



RE: [flexcoders] Adding an item in a grid from a Popup

2005-07-14 Thread Tracy Spratt
Is "submitForm_new" getting called? (trace, alert or debug)

I mistrust your way of referencing the function.

Try ms.core.Application.application.submitForm_new(zone_name.text)
instead.

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ghislain Simard
Sent: Thursday, July 14, 2005 2:24 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Adding an item in a grid from a Popup

HI,
I would like to add, from a popup window, an item in a grid.  But 
it's not adding to the grid.  Any help would be great.  here is the 
code:

The grid:
  

The script:
function popNewZone()
{
var parentToPopUpOver = this;
var fc_submit:String;   
var isModal:Boolean = true;
var iniObj = {fc_submit:"submitForm_new"};

var newPop:TitleWindow = TitleWindow
(mx.managers.PopUpManager.createPopUp
(parentToPopUpOver,popup.popup_new_zone,isModal,iniObj));
newPop.move(250,200);
}

//SUBMIT FROM POP UP
function submitForm_new(submitValue:String)
{
// CHECK DOUBLE NAME
tableauZones.addItem(submitValue);
}

]]>


The popup:


http://www.macromedia.com/2003/mxml"; 
autoLayout="true" title="Nouvelle instance de zone" 
closeButton="true"
width="325" height="160" click="this.deletePopUp();">






  
  
  
  






--
Flexcoders Mailing 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] Debug Player crashing on Flex App

2005-07-14 Thread Stacy Young










For some reason, any time I try and load
my flex app with the debug player installed (either firefox or ie) , flash
crashes my browser! Not good. The only thing I can think of that changed
recently is that I briefly had the FP8 beta player installed…then removed
it and put back v7 debug player…

 

Anyone run into this?

-Stace






--
Flexcoders Mailing 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: Document root element is missing

2005-07-14 Thread charlespaz1
Was a solution found for this?

I have experienced the same problem, but on RHEL AS4

I had a shared CF+Flex instance running and working fine.  Then I
updated with the 6.1 updater and I started getting "Document root
element is missing" for the Flex apps.  ColdFusion was working fine.

So I uninstalled ColdFusion and Flex, reinstalled CF6.1, ran the
updater, Installed and integrated Flex1.5 and am still getting the
same error.

--- In flexcoders@yahoogroups.com, Tarik Ahmed <[EMAIL PROTECTED]> wrote:
> Do your CF apps work, and your Flex apps exhibit this problem? If
you're 
> running CF+Flex on a shared instance, then the first thing I'd look at 
> is the web.xml file and make sure it looks right. Perhaps the updater 
> made some changes to it that breaks the Flex integration.
> 
> 
> Fernando Barros wrote:
> 
> >Hi there,
> >
> >After we applied the updater 6.1 (25/08/2004) on CFMX 6.1 Windows (SP1)
> >stand alone, I'm receiving the message "Document root element is
> >missing". All the applications have these errors. Anyone has any idea?
> >
> >Thks in advance!
> >
> >Fernando Barros
> >
> >
> >
> >--
> >Flexcoders Mailing 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/
 





RE: [flexcoders] Debug Player crashing on Flex App

2005-07-14 Thread Stacy Young










Just fyi, has nothing to do with FP8, had
another developer load same flex app and it’s crashing his browser too
and he never touched FP8.

 

-Stace

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young
Sent: Thursday, July 14, 2005 3:23
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Debug Player
crashing on Flex App



 

For some reason, any time I try and load
my flex app with the debug player installed (either firefox or ie) , flash
crashes my browser! Not good. The only thing I can think of that changed
recently is that I briefly had the FP8 beta player installed…then removed
it and put back v7 debug player…

 

Anyone run into this?

-Stace



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









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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] NumericStepper change event executes on startup

2005-07-14 Thread Devin Holloway
I have a web service that executes on application initilization. When 
using the Network Service monitor in FlexBuilder, I noticed that both 
the send and result filters for the web service showed up twice. At 
first I assumed this was a bug with the Network Service monitor. But 
sometimes the web service call would fail for whatever reason, and 
when it did, it would show two consecutive alert boxes telling me it 
failed. That's when I figured that it is most likely being called 
twice.

The web service sends back 10 results at a time, so I'm using the 
numericstepper to request additional results. The only two places in 
my application that calls the web service is in the Application 
initialize and NumericStepper change attributes.

Out of curiosity, I removed the web service call in the Application 
initilization and kept it in the NumericStepper change event. When 
the application starts up, the web service still gets called (and 
only called once according to the network service monitor).

My conclusion is that the NumericStepper's change event is 
automactically executed after initilization, even though the livedocs 
say that the change event is only executed when the value changes 
from "user interaction".



Even though using the numericstepper to call the web service on 
application startup works, that seems like an unnatural way to 
develop. Does anyone have any thoughts on this?




--
Flexcoders Mailing 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] Validating Arguments

2005-07-14 Thread Nikmd23
Hey, was wondering if anyone else was having this issue:

The documentation for flex says "When you use argument binding, you 
provide request arguments in child tags of an , 
, or  tag. Argument binding lets you 
copy data from user interface controls or models to request 
arguments. Because request argument tags represent a data model, you 
can apply validators to argument values before submitting requests 
to data services. When you apply a validator, Flex validates the 
request just before sending it, and only sends valid requests."

This seems to be mostly true with the exception of the "only sends 
valid requests" part.  In my tests, I've found that the field 
validates, but sends the request to the RemoteObject wether the data 
is valid or not.  Here is an example of the code I am using, perhaps 
I am doing something wrong?  Does any one else have this problem?

My Code:


http://www.macromedia.com/2003/mxml";>

http://localhost/flashservices/gateway"; 
showBusyCursor="true">


























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

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

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

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




RE: [flexcoders] Debug Player crashing on Flex App

2005-07-14 Thread Roger Gonzalez





Congratulations, that should never happen!  You've found something 
very rare and precious.  Please bundle up your SWF and submit a bug 
report.
 
There is no 
sequence of bits that should cause the player to crash.  
Ever.

-RogerRoger 
Gonzalez[EMAIL PROTECTED] 
 

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Stacy 
  YoungSent: Thursday, July 14, 2005 12:49 PMTo: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] Debug Player 
  crashing on Flex App
  
  
  Just fyi, has nothing 
  to do with FP8, had another developer load same flex app and it’s crashing his 
  browser too and he never touched FP8.
   
  -Stace
   
  
  
  
  
  From: 
  flexcoders@yahoogroups.com 
  [mailto:flexcoders@yahoogroups.com] 
  On Behalf Of Stacy 
  YoungSent: Thursday, July 
  14, 2005 3:23 PMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Debug Player 
  crashing on Flex App
   
  For some reason, any 
  time I try and load my flex app with the debug player installed (either 
  firefox or ie) , flash crashes my browser! Not good. The only thing I can 
  think of that changed recently is that I briefly had the FP8 beta player 
  installed…then removed it and put back v7 debug 
  player…
   
  Anyone run into 
  this?
  -Stace
  --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  --Flexcoders 
  Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  


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



  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   






  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Debug Player crashing on Flex App

2005-07-14 Thread Stacy Young










Awesome, is there a grand prize or
anything for this? We’ve reproduced on three machines…will submit
bug…but last time I checked u couldn’t submit attachments?

 

-Stace

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Roger Gonzalez
Sent: Thursday, July 14, 2005 5:23
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Debug
Player crashing on Flex App



 

Congratulations, that should never happen! 
You've found something very rare and precious.  Please bundle up your SWF
and submit a bug report.



 





There is no sequence of bits that should cause the
player to crash.  Ever.



-Roger

Roger Gonzalez
[EMAIL PROTECTED] 






 





 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young
Sent: Thursday, July 14, 2005
12:49 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Debug
Player crashing on Flex App

Just fyi, has nothing to do with FP8, had
another developer load same flex app and it’s crashing his browser too
and he never touched FP8.

 

-Stace

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young
Sent: Thursday, July 14, 2005 3:23
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Debug Player
crashing on Flex App



 

For some reason, any time I try and load
my flex app with the debug player installed (either firefox or ie) , flash
crashes my browser! Not good. The only thing I can think of that changed
recently is that I briefly had the FP8 beta player installed…then removed
it and put back v7 debug player…

 

Anyone run into this?

-Stace



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






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











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









SPONSORED
LINKS 




 
  
  Computer
  software testing 
  
  
  Macromedia
  flex 
  
  
  Development
  
  
 
 
  
  Software
  developer 
  
  
   
  
  
   
  
 


 





--
Flexcoders Mailing 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] "ActionScript 2.0 Design Patterns for RIA" Chapter from ActionScript 2.0 Dictionary

2005-07-14 Thread Steven Webster





For those of you 
that were wanting to understand in a bit more detail the motivation, 
implementation, collaboration and application of the design patterns in 
Cairngorm, I'm delighted that Macromedia Press have made the PDF of the chapter 
that Alistair and I contributed during 2003, to the "ActionScript 2.0 
Dictionary".
 
The patterns are 
implemented with Flash MX 2004 and Flash Remoting as the presentation-tier and 
integration technology; however, 90% of the material is as relevant to Flex and 
Cairngorm 0.99 today as it was to the architecture we were using back in 
2003.  
 
If you want to grab 
the free PDF, then http://www.richinternetapps.com/archives/000128.html is 
the link for you.
 
Best,
 
Steven
 


--
Steven WebsterTechnical 
Director
iteration::two
 
This e-mail and any associated attachments 
transmitted with it may contain confidential information and must not be copied, 
or disclosed, or used by anyone other than the intended recipient(s). If you are 
not the intended recipient(s) please destroy this e-mail, and any copies of it, 
immediately. Please also note that while software systems have been 
used to try to ensure that this e-mail has been swept for viruses, 
iteration::two do not accept responsibility for any damage or loss caused in 
respect of any viruses transmitted by the e-mail. Please ensure your own checks 
are carried out before any attachments are 
opened.
 


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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] "ActionScript 2.0 Design Patterns for RIA" Chapter from ActionScript 2.0 Dictionary

2005-07-14 Thread Scott Barnes
heh so in theory, if we all hold out for a 1yr+ we should be able to
get your book(s) for free via  mm site heheh

but thanks MM for making it available :)


On 7/15/05, Steven Webster <[EMAIL PROTECTED]> wrote:
>  
> For those of you that were wanting to understand in a bit more detail the
> motivation, implementation, collaboration and application of the design
> patterns in Cairngorm, I'm delighted that Macromedia Press have made the PDF
> of the chapter that Alistair and I contributed during 2003, to the
> "ActionScript 2.0 Dictionary". 
>   
> The patterns are implemented with Flash MX 2004 and Flash Remoting as the
> presentation-tier and integration technology; however, 90% of the material
> is as relevant to Flex and Cairngorm 0.99 today as it was to the
> architecture we were using back in 2003.  
>   
> If you want to grab the free PDF, then
> http://www.richinternetapps.com/archives/000128.html is the
> link for you. 
>   
> Best, 
>   
> Steven 
>   
>  
>  
> -- 
> Steven Webster
> Technical Director 
> iteration::two
>  
>   
> This e-mail and any associated attachments transmitted with it may contain
> confidential information and must not be copied, or disclosed, or used by
> anyone other than the intended recipient(s). If you are not the intended
> recipient(s) please destroy this e-mail, and any copies of it, immediately.
>  
> Please also note that while software systems have been used to try to ensure
> that this e-mail has been swept for viruses, iteration::two do not accept
> responsibility for any damage or loss caused in respect of any viruses
> transmitted by the e-mail. Please ensure your own checks are carried out
> before any attachments are opened. 
>   
> 
>  --
>  Flexcoders Mailing 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. 
>  
>  
>  


-- 
Regards,
Scott Barnes
http://www.mossyblog.com


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

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

<*> 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] SWF and Flex SSL confusing situations

2005-07-14 Thread kaibabsowats
I would like to understand some of the http and https situations and
how it affects SSL connections.

First Situation:
Flex application loaded with http.  The Flex access remoting calls
with a https endpoint.
Are the remoting calls really send over https?

Second Situation:
Flex application loaded with https.  Flex application uses a
mx.controls.Loader to load an item from a http location.
Is https used when loading the http item with Loader? another way
of asking, is there https overhead in this situation?

Third Situation:
Regular Flash Player 7 SWF application loads a Flex application
using a Loader class.  The contentPath of the Flex application is a
https url.  
Does the SWF application override any https settings int he Flex
application, for example remote calls set to call https protocal?

Are there any options for creating a website all in flash along with
the a shopping cart, but to have the shopping cart form and remoting
calls use https, but also keep url to get to the website http?




--
Flexcoders Mailing 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: Debug Player crashing on Flex App

2005-07-14 Thread kaibabsowats
I have been developing a flex application that uses MediaController
and MediaDisplay along with a Loader to load a FLV and a SWF and then
sync them.  

I get the Flash Player to warn that there were errors quite often, and
less often I get the whole browser IE and Firefox to crash.

I also ported the FLV and SWF load/sync AS files to a Flash MX 2004
project and got the similar results (less often but we haven't tested
it as much).  You can see stable code in action at www.g-t-t.com. 
Just go to www.g-t-t.com and click on play video.

This mostly happens when I have unstable code ( unstable in
relationship to our defined funcationality requirements ).  I just
figure it was pushing the Flash Player to the limits with the newer
Media components and what we were trying to get them to do.

So "There is no sequence of bits that should cause the player to
crash.  Ever." is a bold statement but if you mean it I'll have to
start paying close attention to what I am doing that causes it to
crash the broswer.



--- In flexcoders@yahoogroups.com, "Roger Gonzalez" <[EMAIL PROTECTED]>
wrote:
> Congratulations, that should never happen!  You've found something very
> rare and precious.  Please bundle up your SWF and submit a bug report.
>  
> There is no sequence of bits that should cause the player to crash.
> Ever.
> 
> -Roger
> 
> Roger Gonzalez
> [EMAIL PROTECTED] 
> 
> 




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

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

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

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




Re: [flexcoders] Components source code

2005-07-14 Thread Scott Barnes
You can also view the entire frameworks source code via Flash MX 2004
Professional Debug Tool. Simply leave the IDE open, use debug=true
appended to the FLEX URL and it will defer the "debugging" to the IDE.

Inside the debugger console, their is a pulldown, and inside that
pulldown (under the start/stop controls) is a listing of all known
class (source code) associated to that swf. Meaning if your swf does
not have a mx:Panel inside it, you won't of course see the
mx.containers.Panel but if you do have it inside your flex app - you
will.

I've found this to be the only reliable way to view the framework and
pick it apart. Hopefully in future versions the MM Team will take this
onboard :)


On 7/14/05, Kent Henneuse <[EMAIL PROTECTED]> wrote:
>  
>  
> 
> Try c:/Program
> Files/Macromedia/Flex/resources/flexforflash/FlexforFlash.zip
> 
>   
> 
> -Kent 
> 
>   
>  
>  
>  
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Tiago Simões
>  Sent: Wednesday, July 13, 2005 6:38 PM
>  To: flexcoders@yahoogroups.com
>  Subject: [flexcoders] Components source code 
> 
>   
> 
> Hi list,
>  
>  One of the great things about Flash MX Components was that I could inspect
> the source code on 
>  C:\Documents and Settings\~user~\Local Settings\Application
> Data\Macromedia\Flash MX 2004\en\Configuration\Classes\mx\*
>  
>  This way that I could see better the internal implementation Macromedia mx
> components and learn a lot of best practices and tricks.
>  
>  I'm starting to evaluate Flex but I don't find the source classes of it's
> components.
>  
>  Where can I find the source for the Flex components, does anybody know?
>  
>  Thanks
>  Tiago Simoes
>  
>  
>  Easily create automated tests for flex and flash with open source
> AutoTestFlash
>  http://tiago.webstartpoint.net/flash/
>  
>  
>  
>  
>  
>  
>  --
>  Flexcoders Mailing List
>  FAQ:
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>  Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
>  
>  
>  
> 


-- 
Regards,
Scott Barnes
http://www.mossyblog.com


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

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

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

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




[flexcoders] how do I tell when a datagrid loses focus?

2005-07-14 Thread Jonathan Hirschi

Is there a simple way to tell when an entire datagrid
loses focus?

Ie i have an editable datagrid that i want to be able
to tell when the whole datagrid loses focus so that i
can commit changes.  I can tell when cells focus in
and focus out, but am having trouble with the whole
datagrid.

Is there an event that gets triggered when a component
like a datagrid loses focus?

Thanks for the help!

Jon Hirschi

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


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

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

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

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




RE: [flexcoders] how do I tell when a datagrid loses focus?

2005-07-14 Thread Joan Tan





The focusOut event should work for you.
 



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Jonathan 
HirschiSent: Thursday, July 14, 2005 3:53 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] how do I tell when a 
datagrid loses focus?
Is there a simple way to tell when an entire 
datagridloses focus?Ie i have an editable datagrid that i want to be 
ableto tell when the whole datagrid loses focus so that ican commit 
changes.  I can tell when cells focus inand focus out, but am having 
trouble with the wholedatagrid.Is there an event that gets triggered 
when a componentlike a datagrid loses focus?Thanks for the 
help!Jon 
Hirschi__Do You 
Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-07-14 Thread Craig Newroth



okay, maybe i did not make my self clear...when I was using Flash PLayer 7 and set the property 'alpha' to zero, then not only could I NOT see the bar (which is what I wanted) but i COULD STILL see the text in the control. Now in Flah Player 8, if i set the SAME property (alpha) in the SAME control to zero not only can I NOT see the BAR in the control, but the text is invisible now also...
If i set the property to "1" then I cannot see the bar, but CAN still see the text of the 'LinkBar" tag...
PR Muruganandh <[EMAIL PROTECTED]> wrote:









Hi
 
In FP7[IE] & FP8[FireFox]
 
The following code works the same way
 


 
 
If I change alpha="100", then also FP7[IE] & FP8[FireFox] works similar! 
 
Might be some problem with this
mouseOver="triggerShowEffectNeedReports()" !
 
 
- anand
 
 




From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul QabizSent: Thursday, July 14, 2005 6:05 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!
 
Hi,
 
We tried reproducing the same here at our end and we don't see any difference between two players (FP7 & FP8 Beta).
 
-abdul
 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Craig NewrothSent: Thursday, July 14, 2005 5:41 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

and here is what I did to get it to do what I wanted, evidently the Flash player 8 takes it literally on the alpha property :) - i set it to 1 (one) instead of zero (0) and it is back to being transparent like I wanted it to be... whew!

WIll post that to the feedback Andrew, thx

Craig

Andrew Spaulding <[EMAIL PROTECTED]> wrote:

Well I'm yet to find a bug but there seems to be some noticableimprovements in performance.Be sure to post your bug using the feedback form found herehttp://www.macromedia.com/bin/fp8betafeedback.cgi?Cheers,Andrew Spauldingwww.flexdaddy.info--- In flexcoders@yahoogroups.com, "cnewroth55" <[EMAIL PROTECTED]> wrote:> Okay, saw the post about the beta Flash
 Player 8 beta, and as I like > to jump in with both feet, installed it for IE, Netscape 7.2 and Fire > Fox 1.0.4...went to one of my flex apps and found that I could no > longer see my label in the Link tag in my app. I was setting the > property 'alpha' to  zero so that the "bar" that highlights the > selection is invisible and just the rollovers would be seen. Removing > the alpha property lets my labe be seen but then (as I am using > haloBlue) i get a big ugly blue bar across my link label...I have a > graphic behind the link bar and did not want this to show up (the > bar)...it used to work in Flash player 7...so beta team thought you > would like to knowI really, really dont want to give up my alpha :)> > ps. did noticed a slight improvement in load speed...> > this on longer works>     > modalTransparency="0" borderStyle="none" alpha="0" > textRollOverColor="#0099CC" mouseOver="triggerShowEffectNeedReports> ()" />--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



Start your day with Yahoo! - make it your home page --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 
		Do you Yahoo!? 
Yahoo! Mail - You care about security. So do we.


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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Flex Portal Integration - Flex as a Portlet

2005-07-14 Thread Craig McDonald

>Do you need Flex to run in a separate context? If not, you can deploy
>the Flex classes etc. to the jetspeed context
>  
>
How exactly do I go about doing this - do I deploy the entire Flex war 
file in the jetspeed container? Or is there a sub-selection of 
appropriate flex libraries that will allow flex to function without 
having to deploy the entire flex app.

What implications does this have for licensing if I am deploying two 
instances of Flex - one in one context and another in the jetspeed context?

I guess my problem is stemming from a slightly incorrect installation of 
Flex then, correct? If so, what is the procedure for installing Flex in 
a portal environment? I am guessing I have to allow flex to run in the 
/jetspeed/flex context rather than the /flex context.

Thanks for your help so far.

Cheers,
Craig




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

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

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

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




RE: [flexcoders] Re: Error in Web Service

2005-07-14 Thread Matt Chotin










I don’t think your machine is
accessible from the outside world so I can’t read your WSDL…

 

However based on the request I’m not
sure I understand the error since it looks like you sent what the web service
expected.  I’m not familiar with how the SAP webservices might work
including transformation, it may be that you need to debug on that end the data
that you are receiving.

 

Sorry!

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of tony_lic
Sent: Thursday, July 14, 2005 2:15
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Error in
Web Service



 

Hi Matt,
  
My 
WSDL : "http://iwdf9453.wdf.sap.corp:55080/sap/bc/srt/rfc/sap/ZVI_COP
Y_SAMP_02?wsdl"

Soap Request(from network monitor):



ENV="http://schemas.xmlsoap.org/soap/envelope/"

xmlns:xsd="http://www.w3.org/2001/XMLSchema"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   
 


dfd
 

   



WebService (RPC):

Method: ZTR_PP_ORD_FOR_WC


Parameter 1: 
name : SIMP
type : char10
value : dfd

Soap Response:



env="http://schemas.xmlsoap.org/soap/envelope/">
   
 


soap-env:Client

Deserialisation 
failed


   

xmlns:n0="http://www.sap.com/transformation-templates">
  
/1BCDWB/WSS0050714080745961000
  
/1BCDWB/WSS0050714080745961000
  
9 
  
X
  

 
System expected the 
element '{urn:sap-com:document:sap:rfc:functions}
ZTR_PP_ORD_FOR_WC'
 
S
 
ZTR_PP_ORD_FOR_WC
 

 

  

  

 
CL_SRG_RFC_PROXY_CONTEXT
 
IF_SXML_PART~DECODE
 
1 
  

   



 

   


please help me to come out of this problem
with regards,
tony










--- In flexcoders@yahoogroups.com,
"Matt Chotin" <[EMAIL PROTECTED]> 
wrote:
> Looks like the Flex side didn't send the web
service request in 
the way
> that the web service expected it.  What
is your web service 
engine?  Can
> you share the WSDL and what Flex sent
(web-service-proxy-debug to 
true
> in flex-config.xml)?
> 
>  
> 
> Matt
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com

[mailto:flexcoders@yahoogroups.com]
On
> Behalf Of tony_lic
> Sent: Wednesday, July 13, 2005 4:28 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Error in Web Service
> 
>  
> 
> Hi,
>   I have a web service which is
working fine. this web service 
does 
> not require any input parameters.
>   If i change the web service to
accept some input parameters & 
then 
> try to run my flex application which tries to
connect to the web 
> service it gives some strange error like
> 'Deserialization Error'. the detailed error
is as follows.
> 
> 
> xmlns:n0="http://www.sap.com/transformation-templates">
>   
/1BCDWB/WSS0050713105048495000
>   
/1BCDWB/WSS0050713105048495000
>   
9 
>   
X
>   

>  
System expected the 
> element
'{urn:sap-com:document:sap:rfc:functions}
> ZTR_PP_ORD_FOR_WC'
>  
S
>  
ZTR_PP_ORD_FOR_WC
>  

>  

>   

>   

>  
CL_SRG_RFC_PROXY_CONTEXT
>  
IF_SXML_PART~DECODE
>  
1 
>   

>

> 
> what could be the reason.
> 
> 
> My code is as follows:
> http://www.macromedia.com/2003/mxml"

> initialize="webservice5.ZTR_PP_ORD_FOR_WC.send();">
> 
> 
>  

>   

>   
DFD
> 

>  

> 
>   
> 
> 
> please help me in this regards.
> 
> thanks in advance,
> with regards,
> tony
> 
> 
> 
> 
> --
> Flexcoders Mailing 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]
>

subject=Unsubscribe> 
>     
> *  Your use of
Yahoo! Groups is subject to the Yahoo! Terms of
> Service 
. 
> 
>  
> 
> 




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









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

RE: [flexcoders] Second retrieval not working - anyone help ?!

2005-07-14 Thread Matt Chotin










In your getInvoiceItems method you call “getSapInvoiceItemData”
(note lower-case SAP) but in your RemoteObject you declared it as
getSAPInvoiceItemData (note upper-case).  Since it’s working on the
network monitor I’m guessing you need to change the RemoteObject version
to use lower-case.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jamiebadman
Sent: Thursday, July 14, 2005 6:59
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Second
retrieval not working - anyone help ?!



 

Hi,

I wonder if someone has any ideas on this...

I've attached the code at the end.

Basically I have two grids, each attached to a
data provider. The 
first grid shows a list of invoices then when a
row is clicked on, a 
call to retrieve invoice line items is issued.
These items are to be 
displayed in the second grid.

However, it doesn't quite work out that way!

The top grid gets populated with invoices, no
problem. Then when I 
click on one of them, I can see in the network
monitor that the call 
to Coldfusion is issued correctly and with the
parameters I'd expect.

I then get an 'onResult' from the RemoteObject in
the network 
monitor and I can see that all the expected data
has been returned...

But the second grid does NOT get populated with
this data AND 
the 'onResult' function -
getSAPInvoiceItemDataResult() - does not 
get called!

It seems everyone is working correctly right up to
the point the 
data's sent back for the items then it hits a
wall!

I've pored over this for a good time now and have
run out of ideas 
(not that I had too many to begin with!). Have I
missed something 
obvious ? Anyone have any ideas why it might be
behaving this way ?

Any help is gratefully received!

Thanks,

Jamie.

The code:



  xmlns:mx="http://www.macromedia.com/2003/mxml"

  xmlns="*"

 
xmlns:local="localComponents.*"
 
xmlns:manageCredits="appScreens.credits.manageCredits.*"
 
xmlns:importCredits="appScreens.credits.importCredits.*"
 
initialize="searchInvoices()" 
 
height="650" 
 
width="1000" 
 
themeColor="#78CDD7">

  
 
  id="creditMethods" 
  
  endpoint="http://localhost:8501/flashservices/gateway"

 
 
source="alchemy.coldfusion.creditMethods"
 
  fault="doFault(event)" 
 
  showBusyCursor="true">
 
  
 
  
 
   
  
 
result="getSAPInvoiceDataResult()"
 
   
   
fault="doFault(event)" />
 
  
 
  
 
   
  
 
result="getSAPInvoiceItemDataResult()"
 
   
   
fault="doFault(event)" />
 
   
    
 


  
{creditMethods.getSAPInvoiceData.result}
  
{creditMethods.getSAPInvoiceItemData.result}

  
 
  function doFault(event:Object):Void {
 
   
parentDocument.alert("Error invoking CFC: " 
+ event.fault.faultstring);
 
  }

 
  function cancelPopUp() 
 
  {
 
    doLater(this,
"deletePopUp");
 
  }

 
  function closePopUp() 
 
  { 
    
 
    doLater(this,
"deletePopUp");
 
  }
  
 
  function searchInvoices(){
 
   
creditMethods.getSAPInvoiceData( 2100, 
 
   
   
   
  
 
   
   
   
  
 
    'GBT610',
 
   
   
   
  
 
   
   
   
  
 
    '',
 
   
   
   
  
 
   
   
   
  
 
    '', 
 
   
   
   
  
 
   
   
   
  
 
    '',
 
   
   
   
  
 
   
   
   
  
 
    21525217 );
 
  }

 
  function getInvoiceItems( event ){
 
    // Row clicked -
so retrieve the items for 
this invoice...
 
    var currentIndex
= 0;
 
    
 
    currentIndex =
dgInvoiceList.selectedIndex;

 
    creditMethods.getSapInvoiceItemData(
2100, 
 
   
   
   
  
 
   
   
   
  
 
   
    'GBT610',
 
   
   
   
  
 
   
   
   
  
 
   
    '21525217' );
 
  }

 
  function getSAPInvoiceDataResult(){
 
    trace('received
the invoices');
 
  }
 
  
 
  function getSAPInvoiceItemDataResult(){ 
 
    trace('received
items');
 
    trace('length of
items ' + 
invoiceItemList.length);
 
  }

  
 
  
  
cellPress="getInvoiceItems( event );"
width="100%" height="100%" 
hScrollPolicy="auto">
 
   

RE: [flexcoders] Re: HistoryManger state is undefined on loading

2005-07-14 Thread Matt Chotin










I asked the engineer who wrote history
manager:

 

This is expected behavior.
The history manager saves states upon entry, not exit.

 

If you've called saveState()
twice, your app is now in the second state. The first press of the Back button
returns to the first saved state. The second press of the Back button returns
the app to its "initial" state and will call loadState() with an
undefined state object.

 

 

Matt









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of rockmoyosa
Sent: Thursday, July 14, 2005 1:22
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
HistoryManger state is undefined on loading



 

Guess I'm right!!.

But anyway, I'm writing a "buffer"
between the HistoryManager and
Application in which I store my
Model-state(Object). 

But but I still got this weird problem with the
first save I make and
if I push the back button the state (yes the
normal procedure with
strings) is undefined. 

For example i save twice an object in an array and
than I store the
index in the state Object I want to store.

var state:Object = new Object();
state.currentIndex =this.historyArray.length-1;

When I trace this action the result is:

CurrentIndex: 0
CurrentIndex: 1

Now I push the back button and the loadstate is
executed. When I trace
the incoming state object:

Log.debug("state: "+state);
Log.dump(state);

first back :

DEBUG: state: [object Object]

<< DUMP START >> 
this:Object
|   
currentIndex = 0  (string)

Second back:

DEBUG: state: undefined

<< DUMP START >> 
this = undefined  (undefined)

On the third back:
it's a new request or nothing. This is the
expected result.

It's link it's out of sync or something.Twice the
saveState is
executed and twice the loadState is executed. What
is wrong with it.

Please anybody




--- In flexcoders@yahoogroups.com,
"rockmoyosa" <[EMAIL PROTECTED]> wrote:
> I'm beginning to get the idee that this part
of Flex is pushed in 1.5
> (Or what version it was introduced). No
documentation is minimal so
> are the supported functionality. 
> 
> I hope somebody can prove me wrong.
> 
> be continued??
> 
> 
> --- In flexcoders@yahoogroups.com,
"rockmoyosa" <[EMAIL PROTECTED]> wrote:
> > --- In flexcoders@yahoogroups.com,
"rockmoyosa" <[EMAIL PROTECTED]>
wrote:
> > > This "thing" is really
weird:
> > > 
> > > first save state:
> > > 
> > > DEBUG: - saveState 
> > > 
> > > << DUMP START >> 
> > >  this:Object
> > >
|    view = false  (boolean)
> > >
|    detailId =
7bd21a76-b716-4501-a196-1acf4265d847  (string)
> > > 
> > > 
> > > And if I click on "Back":
> > > 
> > > DEBUG: - loadState 
> > > 
> > > << DUMP START >> 
> > >  this:Object
> > >
|    detailId =
7bd21a76-b716-4501-a196-1acf4265d847  (string)
> > >
|    view = true  (string)
> > > 
> > > What the @[EMAIL PROTECTED] view = true???
... More documentation on the
> > > HistoryManager would be
appreciated. Are perhaps more samples. 
> > > 
> > > I found one but it to damn
"simple" it doesn't say anything on how
> > > it's working only how to use it for
simple things.
> > > 
> > >
> >
>
http://www.richinternet.de/blog/index.cfm?mode=entry&entry=3CF01C8E-CFBB-A5CA-36BCC797581D2CFB
> > > 
> > > 
> > > 
> > > --- In flexcoders@yahoogroups.com,
"jacksodj" <[EMAIL PROTECTED]> wrote:
> > > > I personnaly have seen really
flakey behavior from that history 
> > > > controller. I have posted
before, but have not been able to see a 
> > > > good resolution
> > > > --- In flexcoders@yahoogroups.com,
"rockmoyosa" <[EMAIL PROTECTED]> 
> > > > wrote:
> > > > > My case:
> > > > > 
> > > > > - saveState is executed 
> > > > > - On "Back"
loadState is executed.
> > > > > 
> > > > > But.
> > > > > Than my state is
"undefined"
> > > > > 
> > > > > 
> > > > > private var
changed:Boolean;
> > > > >
  
> > > > >
  public function initHistory():Void {
> > > > >
   
mx.managers.HistoryManager.register(this);
> > > > >
   
storeInternalState();
> > > > >
  }
> > > > >
  
> > > > >
  public function saveState():Object {
> > > > >
    // called by
HistoryManager, tells the component
> > > > >
    // to create a
"state" object and to return it\
> > > > >
    var state = new
Object();
> > > > >
    state.model =
Model.getInstance();
> > > > >
    state.view =
this._scope.m_detailview;
> > > > >
    
> > > > >
   
mx.controls.Alert.show
> > > >
(""+this._scope.m_detailview.visible);
> > > > >
   
Log.debug("hello"+state);
> > > > >
    return state;
> > > > >
  }
> > > > >
  
> > > > >
  public function loadState(state:Object):Void {
> > > > >
    // called by
HistoryManager, passes in a state
> > > > >
    // object so the
component can rebuild it's state
> > > > >
   
mx.controls.Alert.show("state: "+state.view);
> > > > >
   
restoreInternalState(state);
> > > > >
  }
> > 

RE: [flexcoders] NumericStepper change event executes on startup

2005-07-14 Thread Matt Chotin










Definitely a bug in NumericStepper.  Only
suggestion I can make is that you put a little hack in that ignores the first
change event and only acts on subsequent ones.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Devin Holloway
Sent: Thursday, July 14, 2005
10:47 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]
NumericStepper change event executes on startup



 

I have a web service that executes on application initilization. When 
using the Network Service monitor in FlexBuilder,
I noticed that both 
the send and result filters for the web service
showed up twice. At 
first I assumed this was a bug with the Network
Service monitor. But 
sometimes the web service call would fail for
whatever reason, and 
when it did, it would show two consecutive alert
boxes telling me it 
failed. That's when I figured that it is most
likely being called 
twice.

The web service sends back 10 results at a time,
so I'm using the 
numericstepper to request additional results. The
only two places in 
my application that calls the web service is in
the Application 
initialize and NumericStepper change attributes.

Out of curiosity, I removed the web service call
in the Application 
initilization and kept it in the NumericStepper
change event. When 
the application starts up, the web service still
gets called (and 
only called once according to the network service
monitor).

My conclusion is that the NumericStepper's change
event is 
automactically executed after initilization, even
though the livedocs 
say that the change event is only executed when
the value changes 
from "user interaction".


maximum="{aws.ItemSearch.result.Items.TotalPages}"

change="aws.ItemSearch.send()"/>

Even though using the numericstepper to call the
web service on 
application startup works, that seems like an
unnatural way to 
develop. Does anyone have any thoughts on this?




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









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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Validating Arguments

2005-07-14 Thread Matt Chotin










Doh, that’s a bug in RemoteObject
that you’ve found.  You’ll need to conditionally call getUser()
only if Validator.isStructureValid(this, “userObj.getUser.arguments”)

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nikmd23
Sent: Thursday, July 14, 2005
10:43 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Validating
Arguments



 

Hey, was wondering if anyone else was having this issue:

The documentation for flex says "When you use
argument binding, you 
provide request arguments in child tags of an
, 
, or  tag.
Argument binding lets you 
copy data from user interface controls or models
to request 
arguments. Because request argument tags represent
a data model, you 
can apply validators to argument values before
submitting requests 
to data services. When you apply a validator, Flex
validates the 
request just before sending it, and only sends
valid requests."

This seems to be mostly true with the exception of
the "only sends 
valid requests" part.  In my tests, I've
found that the field 
validates, but sends the request to the
RemoteObject wether the data 
is valid or not.  Here is an example of the
code I am using, perhaps 
I am doing something wrong?  Does any one
else have this problem?

My Code:


http://www.macromedia.com/2003/mxml">
  
  
endpoint="http://localhost/flashservices/gateway"

showBusyCursor="true">
 
  (event.fault.faultstring)"
result="alert('complete');">
 
   

 
   
  
 
    
 
  
 

  
  
  
 
  
 
  
 
    
 
  
 
  ();"/>
  
  
  
  
  
destination="userObj.getUser.arguments.userID"/>
 

required="True"
field="userObj.getUser.arguments.userID"/>






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









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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] SWF and Flex SSL confusing situations

2005-07-14 Thread Matt Chotin










Situation 1: remoting calls really are
sent over https if the endpoint you chose is https

Situation 2: The SWF is loaded over http,
not https assuming you explicitly used an http url.  So no overhead.

Situation 3: If the Flex SWF was loaded
over https all of your remote calls should also go over https by default.

 

You should be able to keep the SWF as http
and the remoting calls as https without a problem.  The only disadvantage is
that your users will not see the secure icon in their browser.  Since the
content on the page will not all be https.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of kaibabsowats
Sent: Thursday, July 14, 2005 3:28
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] SWF and Flex
SSL confusing situations



 

I would like to understand some of the http and https situations and
how it affects SSL connections.

First Situation:
    Flex application loaded with
http.  The Flex access remoting calls
with a https endpoint.
    Are the remoting calls really
send over https?

Second Situation:
    Flex application loaded with
https.  Flex application uses a
mx.controls.Loader to load an item from a http
location.
    Is https used when loading the
http item with Loader? another way
of asking, is there https overhead in this
situation?

Third Situation:
    Regular Flash Player 7 SWF
application loads a Flex application
using a Loader class.  The contentPath of the
Flex application is a
https url.  
    Does the SWF application override
any https settings int he Flex
application, for example remote calls set to call
https protocal?

Are there any options for creating a website all
in flash along with
the a shopping cart, but to have the shopping cart
form and remoting
calls use https, but also keep url to get to the
website http?




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









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



  
  





  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Re: Error in Web Service

2005-07-14 Thread Rick Bullotta










 
Matt/Tony - older version of 
SAP's SOAP runtime had an issue where improper namespace "stuff" was being sent 
in the response message that didn't match the WSDL - had to do with the use of a 
default namespace.
 
Tony - what version of WAS are you running 
(including service pack level)?  Check to see if you have the latest 
patches installed on that box.  It obviously is one behind the SAP 
firewall, so I suspect it is pretty close to up to date.  The to/from 
messages look OK, but without seeing the WSDL, it is hard to tell.  And it 
appears that this is a custom RFC, so maybe the WSDL is getting wacked 
out.
 


 
Drop me a note off-list and I can try to 
help you out.
 
Rick Bullotta
SAP/Lighthammer


From: flexcoders@yahoogroups.com on behalf of 
Matt ChotinSent: Thu 7/14/2005 8:12 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: Error in Web 
Service


I don’t think your 
machine is accessible from the outside world so I can’t read your 
WSDL…
 
However based on the 
request I’m not sure I understand the error since it looks like you sent what 
the web service expected.  I’m not familiar with how the SAP webservices 
might work including transformation, it may be that you need to debug on that 
end the data that you are receiving.
 
Sorry!
 
Matt
 




From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tony_licSent: Thursday, July 14, 2005 2:15 
AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: Error in Web 
Service
 
Hi Matt,  My 
WSDL : "http://iwdf9453.wdf.sap.corp:55080/sap/bc/srt/rfc/sap/ZVI_COPY_SAMP_02?wsdl"Soap Request(from network 
monitor):ENV="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">     
 
dfd  
   WebService (RPC):Method: ZTR_PP_ORD_FOR_WCParameter 1: name : SIMPtype 
: char10value : 
dfdSoap 
Response:env="http://schemas.xmlsoap.org/soap/envelope/">     
 
soap-env:Client 
Deserialisation failed 
    
xmlns:n0="http://www.sap.com/transformation-templates">   
/1BCDWB/WSS0050714080745961000   
/1BCDWB/WSS0050714080745961000   
9    
X   
  
System expected the element 
'{urn:sap-com:document:sap:rfc:functions}ZTR_PP_ORD_FOR_WC'  
S  
ZTR_PP_ORD_FOR_WC  
  
   
   
  
CL_SRG_RFC_PROXY_CONTEXT  
IF_SXML_PART~DECODE  
1    
    
 
  
   
please help me to come out of this 
problemwith 
regards,tony--- In flexcoders@yahoogroups.com, "Matt Chotin" 
<[EMAIL PROTECTED]> wrote:> Looks 
like the Flex side didn't send the web service request in 
the way> that the web service expected it.  What is your web 
service engine?  
Can> you share the WSDL and what 
Flex sent (web-service-proxy-debug to true> in 
flex-config.xml)?> 
>  
> > Matt> 
>  
> > 
> > From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
On> Behalf Of 
tony_lic> Sent: Wednesday, July 
13, 2005 4:28 AM> To: 
flexcoders@yahoogroups.com> 
Subject: [flexcoders] Error in Web Service> >  
> > Hi,>   I have a web service which is working fine. 
this web service does 
> not require any input 
parameters.>   If i 
change the web service to accept some input parameters & 
then > try to run my flex application which tries to connect to 
the web > service it gives some 
strange error like> 
'Deserialization Error'. the detailed error is as 
follows.> 
> 
> xmlns:n0="http://www.sap.com/transformation-templates">>    
/1BCDWB/WSS0050713105048495000>    
/1BCDWB/WSS0050713105048495000>    
9 >    
X>    
>   
System expected the > element 
'{urn:sap-com:document:sap:rfc:functions}> 
ZTR_PP_ORD_FOR_WC'>   
S>   
ZTR_PP_ORD_FOR_WC>   
>   
>    
>    
>   
CL_SRG_RFC_PROXY_CONTEXT>   
IF_SXML_PART~DECODE>   
1 >    
> 
> > what 
could be the reason.> 
> > My code is as follows:> http://www.macromedia.com/2003/mxml" 
> 
initialize="webservice5.ZTR_PP_ORD_FOR_WC.send();">> > 
>   >    
>    
DFD>  
>   
> 
>   
> 
> > please help me in this regards.> > thanks 
in advance,> with 
regards,> 
tony> > > 
> > --> 
Flexcoders Mailing 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 

[flexcoders] List of links

2005-07-14 Thread Sauro, Nick





Hey coders, this problem has been kicking my arse for the 
last 2 days.  
 
What I am trying to accomplish:
 
List component of Label's that have htmlText property set 
and rendered.  Ultimately, I am trying to make a List of clickable links, 
and it doesn't want to co operate with me :-(
 
Thanks Everyone


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

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   






  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] List of links

2005-07-14 Thread Scott Barnes
Nice way to put "i have a problem" btw hehehe.

If you could but share thine code, we could make a best edjumacated
guess as to why and where things aren't playing well with one another.

That being said,  is your friend in terms of htmlText?



On 7/15/05, Sauro, Nick <[EMAIL PROTECTED]> wrote:
>  
> Hey coders, this problem has been kicking my arse for the last 2 days.  
>   
> What I am trying to accomplish: 
>   
> List component of Label's that have htmlText property set and rendered. 
> Ultimately, I am trying to make a List of clickable links, and it doesn't
> want to co operate with me :-( 
>   
> Thanks Everyone 
> 
>  --
>  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 
>  Computer software testing Macromedia flex Development 
>  Software developer 
>  
>  
>  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. 
>  
>  
>  


-- 
Regards,
Scott Barnes
http://www.mossyblog.com


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

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

<*> 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] Web service error. Request and response implement different soap version?

2005-07-14 Thread Aldo Bucchi
Hi all,

I am calling a very simple webservice via the flex proxy.
I keep getting the following fault string:

"Request implements version: http://schemas.xmlsoap.org/soap/envelope/
Response implements version"

looks like something pretty specific any ideas on what might be wrong?

Thanks,
Aldo


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


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

<*> 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: Web service error. Request and response implement different soap version?

2005-07-14 Thread Aldo Bucchi
OK, never mind

I just read the traffic and the web service is returning a http 500
error ( with an html'ed message ).
That is, of course, not a valid soap response.

Thanks,
-Aldo

On 7/15/05, Aldo Bucchi <[EMAIL PROTECTED]> wrote:
> Hi all,
> 
> I am calling a very simple webservice via the flex proxy.
> I keep getting the following fault string:
> 
> "Request implements version: http://schemas.xmlsoap.org/soap/envelope/
> Response implements version"
> 
> looks like something pretty specific any ideas on what might be wrong?
> 
> Thanks,
> Aldo
> 
> 
> --
> : Aldo Bucchi :
> mobile (56) 8 429 8300
> 


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


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

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