RE: [flexcoders] Dynamically scaling a custom component

2006-05-09 Thread Matt Chotin



_width may not be set until after measure() if you didn't set it explicitly. I don't remember what we have in 1.5, look into using something like _measuredWidth instead?

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of leo4beer
Sent: Sunday, May 07, 2006 1:19 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Dynamically scaling a custom component

Hi, I have the following class structure:

Class Map extends UIComponent 

the class creates an instance of the following class:

Class MapMainView extends UIComponent

In MXML I have the following code:

my:Map width=400 height=300/my:Map

In Map I have the following code:

function createChildren():Void {
  .
  .
  createClassObject(MapMainView,mmv ,99);
  mmv._width = 400;
  mmv._height = 300;

Then in MapMainView I'm trying to draw a border according to the
component's size...

First get the current size:

function measure():Void{
  
  super.measure();
  MapMainViewAreaWidth = _width � 20
  gridAreaAreaHeight = _height -20
 }

Later, under draw I'm using the drawing API to draw the border:

Function Draw(){
.
lineTo(20, MapMainViewAreaWidth)
 .
}

It seems like _with is null and I'm unable to draw the border

Any ideas?

Thanks in advance,
Leo.







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



 









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] FLEX 2 wishlist request

2006-05-09 Thread Matt Chotin










I think the goal of that dialog has always
been to appear very much like a system dialog. It would be nice if it were
better looking, I agree











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dominick Accattato
Sent: Saturday, May 06, 2006 4:28
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] FLEX 2
wishlist request





I know were coming close
to beta 3, but here is a whishlist request from me.

Its obvious that the security dialog needs to be the same for all Flash
applications for consistancy. However, I would like it to just get a
facelift to make it better looking. As well, a light blur should be added
to the contents behind. Thanks, and I know your reading this Matt and
Chris :), great work so far Adobe! 








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Has this been fixed in B3

2006-05-09 Thread Matt Chotin










Apparently its not finding the crossdomain.xml
file, I dont think we had any bugs open on this so maybe you dont
have it available on the right ports?











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dominick Accattato
Sent: Saturday, May 06, 2006 9:24
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Has this
been fixed in B3





I've been trying to load
a swf from another domain. That domain has a crossdomain.xml file setup
but it won't load. I guess this is a known issue? Has this been
fixed for b3.

Runtime security error on loading cross-domain SWF in a Loader Flash
Player returns a security error when using the Loader control to load a
cross-domain SWF. 







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Good Code Stops Working For Me Too

2006-05-09 Thread Matt Chotin










Did they contact you? Someone said they
would I think.



I dont think we have an existing
fix for it though.



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Simon Fifield
Sent: Monday, May 08, 2006 5:37 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Good
Code Stops Working For Me Too





Have support made any response to this
issue at all?



I still have no solution.



Simon









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: 16 April 2006 23:35
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Good
Code Stops Working For Me Too

Ive forwarded this on to our
support team. Its possible we have a hotfix for it already (or
theyll know of a workaround or something).



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Simon Fifield
Sent: Saturday, April 15, 2006
4:40 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Good Code
Stops Working For Me Too







I have some MXML TitleWindow components that have form field
that are bound totheir respective VO's.











These were working fine but when I started implementing
validation with the Validators components Binding stopped working in these
TitleWindow components.











I have spent several days trying to figure out what has gone
wrong but I am certain that the code is good.











So I decided to duplicate the code, so I created a new blank
file and copied and paste the code into it. I'm using cairngorm and it has a
ViewHelper so I did the same with this. The code for the new files is identical
with the exception of the name changes for the MXML file and the ViewHelper
file.











Now when I run the app, the duplicated files work correctly
and display the bound data. But the original files are still not binding even
though the new Component is running correctly in the same app at the same time!











I have read a post by Libby that mentioned good code stops
working and followed the response by Matt Chotin, but am still unable to fix
the problem (if its the same!).











To Adobe/MM:





If this is a bug in Flex 1.5, do youintend to release
an update for it?











Simon













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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Is it possible to dynamically get a PrintScreen Image?

2006-05-09 Thread Matt Chotin



I'm not looking up the APIs but basically you can create a new bitmap,
then draw the topmost displayobject to that bitmap. Then you can do
whatever you want with the bitmap including use it as an image
elsewhere.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Raheen M Shabbazz
Sent: Monday, May 08, 2006 11:50 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to dynamically get a PrintScreen
Image?

I've got a dynamic application that can be in any number of
view-states. Generally speaking, no two states are the same.

I've got a method set up to change the view-state by listening to the
mouse wheel. The has the effect of zooming the view-state of my
application. I put that in quotes because it does not really zoom the
application (ie, with a Flex effect or Flash tween), it simply changes
and updates the view-state.

What I would like to do is the following :

1) Take a snapshot of the current visual state
2) Load that snapshot into a dynamic snapshot view at the top level
such that it is the only visible element on the screen.
3) Zoom into the snapshot view using the Flex zoom effect while
loading all my updated view-state in the background.
4) When my updated view-state has loaded in the background, remove (or
hide) the top-level snapshot view.

Can anyone tell me if this idea of taking a dynamic snapshot is
possible and, if so, how I can go about accomplishing it? A way to
incorporate CacheAsBitmap or something similar?

If I have been unclear, or you need more information, please don't
hesitate to ask.







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



 








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] Help with renderer in DataGrid

2006-05-09 Thread Matt Chotin



Your cell renderer can check the listData owner's selectedIndex compared to the listData.rowIndex to see if it is the selected row.

For vertically centering you probably need to use an HBox and set the verticalAlignment to middle? Going off the top of my head.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexabledev
Sent: Monday, May 08, 2006 12:34 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help with renderer in DataGrid

I am struggling with trying to figure out the best way to implement a
renderer that would conditionally display iconic buttons in a DataGrid
column if the Row has been selected. Also, when variableRowHeight is
set to true how does one make sure that text is vertically centered
in the rows whose height has increased due to the custom renderer?






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



 








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] How far can be customized a tooltip

2006-05-09 Thread Matt Chotin










Your component will dispatch a toolTipCreate
event which you can catch and substitute in your own ToolTip instance.



From the docs: If you create
your own IToolTip object and place a reference to it in the toolTip
property of the event object that is passed to your toolTipCreate
handler, the ToolTipManager displays your custom tooltip. Otherwise, the
ToolTipManager creates an instance of ToolTipManager.toolTipClass to
display.



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jaime Bermudez
Sent: Monday, May 08, 2006 1:10 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] How far
can be customized a tooltip







Found this post, but I imagine that this applies to Flex 1.5. I'd
like to create a custom toolTip in Flex 2.0 that would behave like a toolTip,
but would be able to take a dataObject as a parameter and would have some
formatting. I don't this this is possible w/ the toolTip styles
available in Flex 2.0 (beta 2), as these styles relate across the entire
toolTip. In any case, is there a new way to hijack the
toolTip class and substitute a custom one on a per-component basis?











Thanks,











Jaime







On 7/6/05, Scott
Barnes [EMAIL PROTECTED]
wrote: 

On 7/4/05, Laurent Bois
[EMAIL PROTECTED]
wrote:
Hello,

 Initially, i thought tooltip was well adapted for this: it seems the
tooltip
 elementcan include only some text (with codes for carriage
return,
 tabulation, etc..), its behavior can be changed with CSS ( text 
 font-color-size-family... , background, border styles).

 Perhaps is it possible to extends the tooltip component to do this: in my
 case i should define a tooltip 'layout' including header  body areas,

 accepting title and body text, and possibility to customize header and
body
 backgrounds.
Yes this is possible, basically what happens is that every component
inside FLEX that extends UIObject has a property called
toolTipClass 
(string) which it uses in order to present a tool tip upon such
attribute being provided for that said component (pant)

eg:
mx:Button label=blah toolTip=blah/

Now, if you wanted to extend or customize the tooltip this can be done 
in one of two ways:

1) You can hijack the actual toolTip class and swap it for your own via

mx:Application
mx:Script
import com.mossyblog.controls.ToolTip;
/mx:Script

!-- your typical app here --

/mx:Application

class com.mossyblog.controls.ToolTip extends mx.controls.ToolTip
{
static var symbolName:String = mx.controls.ToolTip;
static var symbolOwner:Object = com.mossyblog.controls.ToolTip;

// Begin your logic here..

}
** NOTE: What's happening here is you are basically hijacking the
symbolName mx.controls.ToolTip and making such name point to your 
custom built class, allowing you to effectively use the same tooltip
FLEX-APP-WIDE without having to touch existing code.

I've used the same approach for Tabs/TitleBackground and works well imho.


2) Extend the class in which you want to use yoru custom ToolTip only
with, and put the following:

class com.mossyblog.controls.Button extends mx.controls.Button {
var toolTipClass:String = com.mossyblog.controls.ToolTip ;
}

** NOTE: Again, same concept except your telling the Button to use
a
custom ToolTip and not the default one (again making sure in your
custom ToolTipClass you set the static var symbolName:String = 
com.mossyblog.controls.ToolTip

As for what you do with the toolTip? well anything you like. You could
put an mx:Panel inside your toolTip if you wanted to etc..but i'd
execute extreme caution with this, as this could be a dangerous point 
in which performance may decrease as a result of a complex ToolTip.


 Another way i thought of was to show on mouse over  a styled
Panel
 including already header (title) and the body part. 

 What could be the best strategy to do this: tooltip or panel?

Thanks for your help

 Laurent


--
Flexcoders Mailing 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 Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: 

RE: [flexcoders] Tree get each node as required

2006-05-09 Thread Matt Chotin



I don't have an example but basically you would want to write an
ITreeDataDescriptor that in its getChildren returns a custom
ICollectionView that you write and will go ahead and retrieve the
appropriate data as necessary. Make sure if you don't have an item that
you throw an ItemPendingError and then if the data becomes available you
fire that pending error's repsonders. See our code in B3 for more
details. Of course if you can use FDS to retrieve the data (using Data
Services) you barely have to manage anything yourself :-)

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of David Harris
Sent: Monday, May 08, 2006 1:57 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Tree get each node as required

Hi guys,

I am in the process of creating a tree that may end up with ALOT of
nodes, so would like to get the nodes back as the user expands a node.

I am guessing this is quite a common thing to require, so can anyone
point me to an exmaple I can grab and look at?

Cheers



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



 









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Good Code Stops Working For Me Too

2006-05-09 Thread Simon Fifield





Hi Matt,

No they did not.

My Client's maintenance contract has expired and he has 
tried to get it renewed and was told he'd be called back and never 
was.

I must say he's pretty disappointed about the amount of 
money he's paid out for Flex and what he's got in return.

I've now wasted what amounts to a solid week just trying to 
get good code to work with a system that should just work.

I think I'm saying I'm disappointed as well. I want to say 
that Flex is a fantastic product and it is except my clients service and 
exceptfor this bug which I just cannot find a workaround 
for.

I've checked that the code does not have any binding 
warnings - it does not. I've checked for the "dreaded NoChange bug" and it does 
have this.

If Adobe are not going to fix this and release an update 
for Flex 1.5 (and I think they should) they should at least spend some time 
working out a workaround that WILL WORK.

I'm willing to supply my complete application source code 
to Adobe if that would help.

Is there anything you can do to help or get any of the 
other Adobe guys to help?
Or can anyone on Flexcoders help?

Libby has offered some help but I could not get any of her 
suggestions to resolve the issue. I've also tried the "XWrapper" solution but 
this cannot work in my case.

Regards,
Simon



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Matt 
ChotinSent: 09 May 2006 07:42To: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Good Code Stops 
Working For Me Too


Did they contact 
you? Someone said they would I think.

I dont think we have 
an existing fix for it though.

Matt





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] 
On Behalf Of Simon 
FifieldSent: Monday, May 08, 
2006 5:37 AMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Good Code Stops 
Working For Me Too

Have support made any 
response to this issue at all?

I still have no 
solution.

Simon




From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] 
On Behalf Of Matt 
ChotinSent: 16 April 2006 
23:35To: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Good Code Stops 
Working For Me Too
Ive forwarded this on 
to our support team. Its possible we have a hotfix for it already (or 
theyll know of a workaround or something).

Matt





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] 
On Behalf Of Simon 
FifieldSent: Saturday, April 
15, 2006 4:40 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Good Code Stops 
Working For Me Too


I have some MXML TitleWindow 
components that have form field that are bound totheir respective 
VO's.



These were working fine but when I 
started implementing validation with the Validators components Binding stopped 
working in these TitleWindow components.



I have spent several days trying to 
figure out what has gone wrong but I am certain that the code is 
good.



So I decided to duplicate the code, 
so I created a new blank file and copied and paste the code into it. I'm using 
cairngorm and it has a ViewHelper so I did the same with this. The code for the 
new files is identical with the exception of the name changes for the MXML file 
and the ViewHelper file.



Now when I run the app, the 
duplicated files work correctly and display the bound data. But the original 
files are still not binding even though the new Component is running correctly 
in the same app at the same time!



I have read a post by Libby that 
mentioned good code stops working and followed the response by Matt Chotin, but 
am still unable to fix the problem (if its the same!).



To Adobe/MM:

If this is a bug in Flex 1.5, do 
youintend to release an update for it?



Simon







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Flex2 - error with Tree setIsOpen

2006-05-09 Thread thunderstumpgesatwork



Hey guys,

I'm seeing a null pointer exception in Tree.as when opening tree nodes
if the tree hasn't been displayed yet. It's on another accordion, but
creationPolicy is 'all', and I set the accordion's selectedIndex, and
even added a 'callLater()' to try to let it display. I still get the
following error:

TypeError: Error #1009: null has no properties.
 at
mx.controls::Tree/setIsOpen()[C:\dev\beta2\sdk\frameworks\mx\controls\Tree.as:1513]


Can someone with the source code see if there's any hints in there?

thanks,
Thunder









--
Flexcoders Mailing 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: Help with conversion from FB2B2 to FB2B3

2006-05-09 Thread bhaq1972



I had this problem as well. i had an Actionscript file associated 
with an mxml, and it didn't like the public definitions. 

i had to delete and rename the file. (it had the same name as the 
mxml file associated with it).

that sorted it out.


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

 I have this function in my as source file. It worked perfectly 
find in
 f2b2, but now it gives me the error below and I cant find anything 
in
 the release notes on it.
 
 
 2 The public attribute may be used only on class property 
definitions. 
 2 The public attribute may be used only on class property 
definitions. 
 
 // CLOSE OF DAY METHOD
  public function TickerModcloseDayQry( ticker ){
   TickerMod.closeDayQry( ticker );
  }
  public function TickerModcloseDayQryResult( result ){
   dayDisplay.title = result.companyName;
   dayRange.text = result.daysRange;
   yearRange.text = result.yearRange;
   Volume.text = result.volume;
   marketCap.text = result.marketCap;
   pe.text = result.pe;
   eps.text = result.eps;
   lastTrade.text = result.lastTrade;
   change.text = result.change;
   prevClose.text = result.prevClose;
   open.text = result.open;
   bid.text = result.bid;
   ask.text = result.ask;
   tradeTime.text = result.tradeDate;
   mainDisplay.visible = 'true';
 
  }











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Building a complex chat application on Fx2 FDS

2006-05-09 Thread Aldo Bucchi



Hi,

I have beta3 in my hands now... and I would like a small pointer
before getting my teeth into it and see what's changed:
how would you go about creating the aforementioned chat application,
in particular this part...

 Basically, I need something analog to the functionality that I would
 find in these FMS2 features:
- application.onConnect()
- application.onDisconnect() // this one is problematic...
- client.call()
- Remote SharedObjects
- the ability to keep a reference ( Client Object ) to all connected clients

from MessageService??

I will try take a deep look at the subject during this week... but
would apprectiate some comments as it is a lot of info to digest.

thanks a lot,
Aldo


On 4/29/06, Matt Chotin [EMAIL PROTECTED] wrote:
 We cannot guarantee any dates so please don't commit yourself to
 something where you're at risk of the product not shipping in time.
 Previous guidance has said 1st half of 2006 and David Mendels recently
 said in a post middle of the year. If you take those two together you
 should get a sense of what we're aiming at, but the date is still
 unannounced.

 Matt

 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Aldo Bucchi
 Sent: Friday, April 28, 2006 3:29 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Building a complex chat application on Fx2 
 FDS

 Matt,

 hahahj!! I saw that one coming... ;)

 Ok... I'll put my ass on the line for this one. FDS it is then... the
 project is due to july with a very little slack If I get any
 complaints I will see you next max and you'll be saying oh! hahhha

 No, seriously, and absolutely off the record... am I too lost on the
 dates? it is a complex app... so I will start coding ASAP on Red5 and
 then port it to whatever solution FDSb3 provides. I don't want to
 force my customer on adding yet another tech to his environment ( they
 have 3 uninstalled flex 1.5 licences that are waiting to be upgraded
 to FDS )

 Best,
 Aldo


 On 4/28/06, Matt Chotin [EMAIL PROTECTED] wrote:
  You wait until Beta 3 and then you say, oh... :-)
 
  -Original Message-
  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
 On
  Behalf Of Aldo Bucchi
  Sent: Thursday, April 27, 2006 6:30 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Building a complex chat application on Fx2  FDS
 
  Hi all,
 
  How would you go about building a chat application with Flex2  Flex
  Data Services.
  - Multiple users
  - 1to1, many to many
  - Java Backend
  - Needs to keep track of connected users ( and a reference to them )
  - Server to Client invocation of custom methods
 
  Using RPC services gives me a Client to Server call sequence, but not
  the opposite. Plus, it does not allow me to keep a reference ( in a
  stateful server side application ) to the client connections.
 
  Using messaging... well, I have push. but... what else?
 
  Basically, I need something analog to the functionality that I would
  find in these FMS2 features:
  - application.onConnect()
  - application.onDisconnect()
  - client.call()
  - Remote SharedObjects
  - the ability to keep a reference ( Client Object ) to all connected
  clients
 
  But with the robustness and extensibility of a Java App ( a la Red5,
 but
  Today )
 
  Can this be done???
  approaches?
 
  We also have a license of FMS2, but I only want to use it for
  streaming media, as AS1 is not an allowed development language in my
  customer's infrastructure and is difficult to interface with other
  things ( namely Avaya Comm Manager and LDAP ). Of course we could use
  webservices to talk to a Java app, but that's too much overhead.
  I once found a FCS to Java connector, somewhere.. but seems like beta
  code. Not acceptable either. ( is there a production release of this
  connector ? ).
 
  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
 
 
 
 
 
 
 
 
  --
  Flexcoders Mailing List
  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
  Yahoo! Groups Links
 
 
 
 
 
 
 


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


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








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










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






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

Re: [flexcoders] wierdness with flex2beta3 flexstore demo app and FF

2006-05-09 Thread JB



Hi Barry,In firefox 1.5 (On the mac) works great,but using Safrai I get a security warning(which crashes the browser), not really sure what is going on??? I am very new to this.JohnBarry Beattie [EMAIL PROTECTED] wrote:just did a player 9 install  in IE http://flexapps.macromedia.com/flex2beta3/flexstore/flexstore.html comes up fine  in FF, I get a flash message saying "content required FP8" (but 9 is installed)  anyone else get this too or is it just me?  
		Love cheap thrills? Enjoy PC-to-Phone  calls to 30+ countries for just 2¢/min with Yahoo! Messenger with Voice.





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: Flex2 - null exception with HistoryManager$ and Accordion

2006-05-09 Thread thunderstumpgesatwork



Guys, more info... looks like I'm seeing it randomly on a ViewStack too...

TypeError: Error #1009: null has no properties.
 at
mx.managers::HistoryManager$/save()[C:\dev\beta2\sdk\frameworks\mx\managers\HistoryManager.as:554]
 at
mx.containers::ViewStack/mx.containers:ViewStack::commitSelectedIndex()[C:\dev\beta2\sdk\frameworks\mx\containers\ViewStack.as:1052]
 at
mx.containers::ViewStack/mx.containers:ViewStack::commitProperties()[C:\dev\beta2\sdk\frameworks\mx\containers\ViewStack.as:620]
 at
mx.containers::TabNavigator/mx.containers:TabNavigator::commitProperties()[C:\dev\beta2\sdk\frameworks\mx\containers\TabNavigator.as:325]
 at
mx.core::UIComponent/validateProperties()[C:\dev\beta2\sdk\frameworks\mx\core\UIComponent.as:5007]
 at
mx.managers::LayoutManager/validateProperties()[C:\dev\beta2\sdk\frameworks\mx\managers\LayoutManager.as:496]
 at
mx.managers::LayoutManager/mx.managers:LayoutManager::doPhasedInstantiation()[C:\dev\beta2\sdk\frameworks\mx\managers\LayoutManager.as:635]
 at
mx.core::UIComponent/mx.core:UIComponent::callLaterDispatcher2()[C:\dev\beta2\sdk\frameworks\mx\core\UIComponent.as:7379]
 at
mx.core::UIComponent/mx.core:UIComponent::callLaterDispatcher()[C:\dev\beta2\sdk\frameworks\mx\core\UIComponent.as:7322]
 at
mx.core::UIComponent/setFocus()[C:\dev\beta2\sdk\frameworks\mx\core\UIComponent.as:5814]
 at
mx.managers::FocusManager/setFocus()[C:\dev\beta2\sdk\frameworks\mx\managers\FocusManager.as:375]
 at
mx.managers::FocusManager/mx.managers:FocusManager::mouseDownHandler()[C:\dev\beta2\sdk\frameworks\mx\managers\FocusManager.as:1164]


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

 Hey guys,
 
 I've been getting this error sporatically. It doesn't happen on a
 regular basis, and I can't reproduce it reliably. Basically every so
 often I get the following error message:
 
 TypeError: Error #1009: null has no properties.
  at mx.managers::HistoryManager$/save()
  at mx.containers::Accordion/::commitSelectedIndex()
  at mx.containers::Accordion/mx.containers:Accordion::commitProperties()
  at mx.core::UIComponent/validateProperties()
  at mx.managers::LayoutManager/validateProperties()
  at mx.managers::LayoutManager/::doPhasedInstantiation()
  at mx.core::UIComponent/::callLaterDispatcher2()
  at mx.core::UIComponent/::callLaterDispatcher()
 
 
 
 Any ideas what could cause this?
 
 thanks,
 Thunder











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] Flex 2 beta 3 available

2006-05-09 Thread JB
Title: Flex 2 beta 3 available



Hi,Thanks for your help, I just switched everything to beta 3, and recompiled alot of my code, and it now works fine`-` The best news is now I have a standalone flash player for the Mac to view the code, life is good`-`Thanks again,JohnDeepa Subramaniam [EMAIL PROTECTED] wrote:You need to re-build your swfs to be compliant with the Beta 3 source code and be sure to use the player that is packaged with the Beta 3 build. There should be documentation on the labs site that call out code changes in the Flex framework and in the Player that were made between the betas. -deepaFrom: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JB Sent: Monday, May 08, 2006 6:18 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 2 beta 3 available  Hi, I just downloaded the new flash player 9(mac version), but I get this error: VerifyError: Error #1014: Class flash.util::Timer could not be found.  at mx.managers::SystemManager/initialize()  at mx.managers::SystemManager/::initHandler()  Does anyone know why this is? These area swfs builded with beta 2. It seems like none of my swfs work anymore:( This is on the mac. Thanks so much, John  Jo�o
 Fernandes [EMAIL PROTECTED] wrote:Just to say that Flex 2 Beta 3 is already available on labs !  Jo�o Fernandes How low will we go? Check out
 Yahoo! Messenger’s low PC-to-Phone call rates.   
		Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] [Beta3] Enhanced Pop-Up Button for flex 2

2006-05-09 Thread jeremy lu




Hi flexcoders, 

after several hours playing with the newly-released beta 3 this afternoon, I made this PopUp Button (like those found in OS X).

blog entry: http://tinyurl.com/eeyuv


Jeremy.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Flash Player crashes the browser b3

2006-05-09 Thread Dima Ulich



I had in b2 and now I have it in b3 player 9.0

When I close my application it causes the browser
error (Memory cannot be read ...) 

Did anyone had the same problem.

__
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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flex2B3 - parentDocument definition

2006-05-09 Thread bhaq1972



Hi 
I've got this simple test
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml xmlns=*
 mx:Box id=box1
  myComponent id=comp1/
 /mx:Box
/mx:Application

Now, in flex 1.5 the parentDocument for myButton(child of 
myComponent) is box1.

In flex2b3 the parentDocument is comp1.

Is this correct? If so why has it been changed.


myComponent is defined as 
mx:HBox
 myButton/
/mx:HBox

myButton is defined as 
mx:Button label=hello initialze=trace(this.parentDocument)/










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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Flash Player crashes the browser b3

2006-05-09 Thread JB



Yes,
I did in safari. I am not sure if it is the player or
safari, seems good in FF.
John

--- Dima Ulich [EMAIL PROTECTED] wrote:

 I had in b2 and now I have it in b3 player 9.0
 
 When I close my application it causes the browser
 error (Memory cannot be read ...) 
 
 Did anyone had the same problem.
 
 __
 Do You Yahoo!?
 Tired of spam? Yahoo! Mail has the best spam
 protection around 
 http://mail.yahoo.com 
 


__
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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] cf flex intergration

2006-05-09 Thread JB



Hi,
Does anybody know of any examples explaining
coldfusion  flex intergration? I was just able to
download Mystic on the Mac, but I am pretty lost on
how to intergrate the two.

Thank you very much for any help,
John

__
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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] cf flex intergration

2006-05-09 Thread João Fernandes



John,

on Labs you have some samples applications (http://labs.adobe.com/wiki/index.php/ColdFusion/Flex_Connectivity) that can help you out.

João Fernandes


-Original Message-
From: flexcoders@yahoogroups.com on behalf of JB
Sent: Tue 09-May-06 10:46 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] cf flex intergration
 
Hi,
Does anybody know of any examples explaining
coldfusion  flex intergration? I was just able to
download Mystic on the Mac, but I am pretty lost on
how to intergrate the two.

Thank you very much for any help,
John

__
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 




SPONSORED LINKS 
Web site design development http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ  Computer software development http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw  Software design and development http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ  
Macromedia flex http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw  Software development best practice http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw  



YAHOO! GROUPS LINKS 


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











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  







winmail.dat

[flexcoders] Beta 3: All roads lead to Beta 2?

2006-05-09 Thread greenfishinwater



I just tried to download Beta 3 of Flex and all the download pages
refer to beta 2, I even downloaded the flex builder windows exe, and
it is exactly the same size as beta 2.

Where are the pages to downlaod beta 3?









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Beta 3: All roads lead to Beta 2?

2006-05-09 Thread Manish Jethani



On 5/9/06, greenfishinwater [EMAIL PROTECTED] wrote:
 I just tried to download Beta 3 of Flex and all the download pages
 refer to beta 2, I even downloaded the flex builder windows exe, and
 it is exactly the same size as beta 2.

I just downloaded Beta 3 and it's working fine.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












Re: [flexcoders] Flex2B3 - parentDocument definition

2006-05-09 Thread Manish Jethani



On 5/9/06, bhaq1972 [EMAIL PROTECTED] wrote:

 I've got this simple test
 mx:Application xmlns:mx=http://www.adobe.com/2006/mxml xmlns=*
 mx:Box id=box1
 myComponent id=comp1/
 /mx:Box
 /mx:Application

 Now, in flex 1.5 the parentDocument for myButton(child of
 myComponent) is box1.

 In flex2b3 the parentDocument is comp1.

 Is this correct? If so why has it been changed.

parentDocument should point to the parent MXML document (i.e. the
root element in the .mxml file). So the way it works is correct.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












Re: [flexcoders] Help with renderer in DataGrid

2006-05-09 Thread Manish Jethani



On 5/8/06, flexabledev [EMAIL PROTECTED] wrote:
 I am struggling with trying to figure out the best way to implement a
 renderer that would conditionally display iconic buttons in a DataGrid
 column if the Row has been selected.

See the isItemSelected method of DataGrid (List).

 Also, when variableRowHeight is
 set to true how does one make sure that text is vertically centered
 in the rows whose height has increased due to the custom renderer?

See the verticalAlign style of DataGrid.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Beta 3: All roads lead to Beta 2?

2006-05-09 Thread Sreejith Unnikrishnan





Is this how it is?

  Charting2-win_B3_05-08.exe
  FDS2-win_B2_Install_03-16.exe
  FlexBuilder2_B2_03-16.exe
  Player_B2_Uninstaller_03-20.exe
  Player8.5_B2_AX_03-20.exe
  Player8.5_B2_PI_03-20.exe
All the files except the charting exe refers to a 
16 and 20th March ...!



  - Original Message - 
  From: 
  Manish Jethani 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, May 09, 2006 4:06 PM
  Subject: Re: [flexcoders] Beta 3: All 
  roads lead to Beta 2?
  On 5/9/06, greenfishinwater [EMAIL PROTECTED] 
  wrote: I just tried to download Beta 3 of Flex and all the download 
  pages refer to beta 2, I even downloaded the flex builder windows exe, 
  and it is exactly the same size as beta 2.I just downloaded 
  Beta 3 and it's working 
  fine.





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Overlap?

2006-05-09 Thread Darren Houle



I just installed B3. Before installing I followed instructions like a good 
boy and deleted my project definitions (not the files) and uninstalled B2. 
That went fine, as did the the B3 install. Now I'm trying to recreate my B2 
projects.

B3 created a new \My Documents\Flex Builder 2.0\ folder at the same level as 
the previous \My Documents\Flex\ folder and wants to use that as the new 
default projects home. I moved my old project files under the new default 
home. Problem is that when I try to create any project and specify one of 
these folders I get something like C:\...\My Documents\Flex Builder 
2.0\Cg2\Login overlaps the workspace location: C:\...\My Documents\Flex 
Builder 2.0 in the project wizard.

Previously all my different projects lived underneath the one \Flex folder 
in separate folders of their own... is there a problem with that now in B3? 
Do I need to create separate project folders at the same level as the \Flex 
Builder 2.0\ folder?

Thanks!
Darren








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] onMouseWheel -- Works in MXML, not when embedded into HTML

2006-05-09 Thread Tom Chiverton



 On Mon, May 8, 2006 at 8:10 PM, in message [EMAIL PROTECTED],
[EMAIL PROTECTED] wrote: 
 How can I get around this?

Have the HTML around the Flash call a function in the flash when it sees a scroll event.



Tom Chiverton




This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flex2 Beta3 - Coldfusion Connectivity/Mystic

2006-05-09 Thread Thomas Rühl -akitogo-




Any news about Flex/Coldfusion connectivity (Mystic) now working with 
multiserver configurations? I'll try myself, otherwise :)

greetings,
thomas

 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] getting get http params in flex 1.5

2006-05-09 Thread Antoine Malpel



Hi, I'm Antoine and I'm new to this mailing list, I started to learn 
Flex 1.5 the fastest as I could but there as several obsured point 
remaining. So I'll start by my fisrt problem.

My Flex App containts two main parts, the home and the store. I'd like 
to load only one of this two parts depending a url param like goto=home.

- How do I read these values ?
- Can I load only given canvas at a time ?






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Flex2 Beta3 - Coldfusion Connectivity/Mystic

2006-05-09 Thread JB



I was able to install Mystic on the mac, and all installed fine on JRun/Multiserver. now I have to find out how to connect everything. I could not get the RDS to work yet, but hopefully tomorrow.JohnThomas R�hl -akitogo- [EMAIL PROTECTED] wrote: Any news about Flex/Coldfusion connectivity (Mystic) now working with  multiserver configurations? I'll try myself, otherwise :)  greetings, thomas 
	
		Yahoo! Mail goes everywhere you do.  Get it on your phone.





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Beta 3: All roads lead to Beta 2?

2006-05-09 Thread Thomas Rühl -akitogo-




no, actually it's *05-08* for all of the files
i just downloaded it and they look that way.
maybe try to clean up your browser's cache.

thomas



Sreejith Unnikrishnan wrote:
 Is this how it is?
 
 * Charting2-win_B3_*05-08*.exe
 * FDS2-win_B2_Install_*03-16*.exe
 * FlexBuilder2_B2_*03-16*.exe
 * Player_B2_Uninstaller_*03-20*.exe
 * Player8.5_B2_AX_*03-20*.exe
 * Player8.5_B2_PI_*03-20*.exe
 
 All the files except the charting exe refers to a 16 and 20th March ...!
 
 
 
 - Original Message -
 *From:* Manish Jethani mailto:[EMAIL PROTECTED]
 *To:* flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com
 *Sent:* Tuesday, May 09, 2006 4:06 PM
 *Subject:* Re: [flexcoders] Beta 3: All roads lead to Beta 2?
 
 On 5/9/06, greenfishinwater [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
  I just tried to download Beta 3 of Flex and all the download pages
  refer to beta 2, I even downloaded the flex builder windows exe, and
  it is exactly the same size as beta 2.
 
 I just downloaded Beta 3 and it's working fine.
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
 
 
 
 SPONSORED LINKS
 Web site design development
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ
  Computer software development
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw
  Software design and development
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ
 
 Macromedia flex
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw
  Software development best practice
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw
 
 
 
 
 YAHOO! GROUPS LINKS
 
 * Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders on the web.
 
 * To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/. 
 
 
 
 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] FDS2Beta3 Error initializing

2006-05-09 Thread João Fernandes










Hi there,



After merging FDS with CF like for beta2 (and
it worked just fine) Im getting this error during service startup.



05/09 12:56:28 Information [scheduler-9] -
Starting FlexAssembler...

05/09 12:57:29 Error [scheduler-9] - Unable
to initialize FlexAssembler service: coldfusion.server.ServiceException: Unable
to register Flex Assembler Service in RMI registry:
java.rmi.ConnectIOException: error during JRMP connection establishment; nested
exception is:     java.net.SocketTimeoutException: Read timed out.

05/09 12:57:29 Information [scheduler-9] -
ColdFusion started



Any Idea what this might be?



Thanks,



João Fernandes
Dep.
Informática - Área de Desenvolvimento
Cofina media

Avenida
João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel
(+351) 213 185 200 . Fax (+351) 213 540 370
[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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flex2B3 Problem with beta3 and FileReferenceList

2006-05-09 Thread rs



Hi there,

 

My existing code for uploading files worked fine with Flex beta 2, but it in
beta 3 the SELECT event is not raised!

 

As in the examples I've added an event listener like this:

 

addEventListener(Event.SELECT, selectHandler);

 

 

Then i use browse() to open the dialog, select one or more files for upload
and hit the 'open' button.

This should result in a SELECT event, but not in beta 3!

 

Has something been changed, I couldn't find any changes in Flex Beta 2 to
Beta 3 Changes?

 

 

Thanks in advance,

 

 

Richard







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  







attachment: winmail.dat

Re: [flexcoders] Validation framework and changing the way tooltips get triggered (F2B2)

2006-05-09 Thread Manish Jethani



On 5/6/06, pk_wasp [EMAIL PROTECTED] wrote:

 Rather then just only having the mouseOver event triggering the display
 of the error message tooltips, allow other events to trigger it as well
 e.g. when a users tabs to a field that is in error, we can show the
 error message tooltip on a focusIn event - this might be handy for Call
 Centre Applications where users tend to prefer to use the keyboard
 rather then the mouse etc.

Seems like the only way to do it is to dispatch mouseOver and
mouseOut events explicitly.

 mx:TextInput id=textInput
  focusIn=event.target.dispatchEvent(new MouseEvent('mouseOver'))
  focusOut= event.target.dispatchEvent(new MouseEvent('mouseOut')) /

That should do the trick.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Flex 2 Beta 3 download

2006-05-09 Thread Helen Triolo



Ditto -- been trying for the past 12 hours with no luck :(

Helen

pk_wasp wrote:

Are people having problems downloading it?

I've turn off download managers etc, but keep getting Cannot find 
server or DNS Error if i click on any of the download links.

(or are the servers getting hammered)?

cheers

 








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Dynamically scaling a custom component

2006-05-09 Thread Ravindra Suthar










Hi,



I would like to create a login form in
flex and it will be included inside jsp file. Now after login I would like to
send and redirect that page to another page. I have try a lot using httpservice
but it submitted data but unable to redirect that page with data. So please
give me guidance for that.





Regards, 









Ravindra Suthar
















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Beta 3: All roads lead to Beta 2?

2006-05-09 Thread Sachin Dharmapurikar











Just hit Ctrl+F5 when you reach the site http://labs.adobe.com



Maybe you are not looking at the latest
page. Sometimes these proxy servers get the content from the cache.



Hope it will solve your problem



Regards,

Sachin











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Graham Weldon
Sent: Tuesday, May 09, 2006 3:33
PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Beta 3:
All roads lead to Beta 2?





Hi,

The main site is: http://labs.adobe.com/
Click on Download there, and it will request that you sign in or create an
account.
Once you have signed in, there is a list of downloads, when you save them to
your filesystem, you'll see 'B3' somewhere in the filename.

Hope this has been of some assistance.

Regards,
Graham Weldon



greenfishinwater wrote: 

I just tried to download Beta 3 of Flex and all the
download pages
refer to beta 2, I even downloaded the flex builder windows exe, and
it is exactly the same size as beta 2.

Where are the pages to downlaod beta 3?













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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Login timeouts

2006-05-09 Thread Tom Chiverton



Our Flex 1.5 app lives behind a proxy that takes care of HTTP BASIC username and password checks, and maintains a session.

However, if the Flex app. makes no requests for a while, this session will timeout, and subsequent requests silently fail.
What are other people doing in this situation ? 
Just having Flex 'ping' the remote service every 5 minutes or so or something more complex ?


Tom Chiverton




This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] RemoteObject in FDS2Beta3 with tomcat

2006-05-09 Thread sank xuan



HI ,   I have buid a application with flex 2 beta2 in tomcat, I use remoteobject to call java class, and I use ActiveMQ to implement JSM in tomcat follow such link  http://www.silver-island.com/arts/flex/FDS2.0_on_Tomcat/jms_chat_on_tomcat.html  it works wellbut when i update to flex 2 beta 2, it can'not work ... who also meet such issue?thanks  - sank  
		抢注雅虎免费邮箱-3.5G容量,20M附件! 





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Flex2B3 Problem with beta3 and FileReferenceList

2006-05-09 Thread Abdul Qabiz



I agree, I think it's not working, I just made a quick test to see it.-abdulOn 5/9/06, rs [EMAIL PROTECTED]
 wrote:Hi there,My existing code for uploading files worked fine with Flex beta 2, but it in
beta 3 the SELECT event is not raised!As in the examples I've added an event listener like this:addEventListener(Event.SELECT, selectHandler);Then i use browse() to open the dialog, select one or more files for upload
and hit the 'open' button.This should result in a SELECT event, but not in beta 3!Has something been changed, I couldn't find any changes in Flex Beta 2 toBeta 3 Changes?
Thanks in advance,Richard Yahoo! Groups Sponsor ~--You can search right from your browser? It's easy and it's free.See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM~---
Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links* To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
* To unsubscribe from this group, send an email to:[EMAIL PROTECTED]* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Dynamically scaling a custom component

2006-05-09 Thread Sachin Dharmapurikar











Hi,



Instead of redirecting it, can you send a
confirmation XML? Depending on the contents of the XML flex application will
change the state of application to logged in state. That way, your application
will can display the controls which you were supposed to display on the
redirected screen.



Does that make any sense to you?



If you have any special requirement for
redirect please mention a simple use case so that people can help you better.



Regards,

Sachin











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ravindra Suthar
Sent: Tuesday, May 09, 2006 5:19
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Dynamically scaling a custom component





Hi,



I would like to create a
login form in flex and it will be included inside jsp file. Now after login I
would like to send and redirect that page to another page. I have try a lot
using httpservice but it submitted data but unable to redirect that page with
data. So please give me guidance for that.





Regards, 









Ravindra Suthar













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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] getting get http params in flex 1.5

2006-05-09 Thread Tom Chiverton



 On Tue, May 9, 2006 at 10:15 AM, in message [EMAIL PROTECTED],
[EMAIL PROTECTED] wrote: 
 - How do I read these values ?

http://livedocs.macromedia.com/flex/15/flex_docs_en/0930.htm

 - Can I load only given canvas at a time ?

Load ? Yes, look up Runtime Shared Libraries - http://livedocs.macromedia.com/flex/15/flex_docs_en/1158.htm

Maybe simply hide/show (see http://livedocs.macromedia.com/flex/15/asdocs_en/mx/core/UIObject.html#visible ) would be good enough though ?




Tom Chiverton




This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: Beta 3: All roads lead to Beta 2?

2006-05-09 Thread greenfishinwater



Hi, I now have all the B3-05-08 files, I cleared my browser cache and
I was able to download the correct files. I have just finished and had
no problems getting the files.

Thanks 

Andrew

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

 Just hit Ctrl+F5 when you reach the site http://labs.adobe.com
http://labs.adobe.com/ 
 
 Maybe you are not looking at the latest page. Sometimes these proxy
servers get the content from the cache.
 
 Hope it will solve your problem
 
 Regards,
 Sachin
 
 _ 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Graham Weldon
 Sent: Tuesday, May 09, 2006 3:33 PM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Beta 3: All roads lead to Beta 2?
 
 Hi,
 
 The main site is: http://labs.adobe.com/
 Click on Download there, and it will request that you sign in or
create an account.
 Once you have signed in, there is a list of downloads, when you save
them to your filesystem, you'll see 'B3' somewhere in the filename.
 
 Hope this has been of some assistance.
 
 Regards,
 Graham Weldon
 
 
 
 greenfishinwater wrote: 
 I just tried to download Beta 3 of Flex and all the download pages
 refer to beta 2, I even downloaded the flex builder windows exe, and
 it is exactly the same size as beta 2.
 
 Where are the pages to downlaod beta 3?
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 
 
 
 SPONSORED LINKS 
 
 Web
http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ
 site design development 
 Computer
http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw
 software development 
 Software
http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ
 design and development 
 
 Macromedia
http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw
 flex 
 Software
http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw
 development best practice 
 
 
 _ 
 
 YAHOO! GROUPS LINKS 
 
 * Visit your group flexcoders
http://groups.yahoo.com/group/flexcoders  on the web.
 
 * To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] 
 
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms
of Service http://docs.yahoo.com/info/terms/ . 
 
 _











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Flex 2 Beta 3 download

2006-05-09 Thread Josh Buhler


I think the servers might just be getting nailed. They've been up and down since the announcement.  I just kept trying and was able to get the files eventually.- JoshOn May 9, 2006, at 6:06 AM, Helen Triolo wrote: Ditto -- been trying for the past 12 hours with no luck :(  Helen  pk_wasp wrote:  Are people having problems downloading it?  I've turn off download managers etc, but keep getting "Cannot find  server or DNS Error" if i click on any of the download links.  (or are the servers getting hammered)?  cheers      -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comSPONSORED LINKS  Web site design development  Computer software development  Software design and development  Macromedia flex  Software development best practice YAHOO! GROUPS LINKS  Visit your group "flexcoders" on the web.    To unsubscribe from this group, send an email to: [EMAIL PROTECTED]    Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  








[flexcoders] Help Contents dissapears (both Flex Builder 2 B2 and B3)

2006-05-09 Thread Andrea Varga



Hi

Sometimes with B2 I lost my Help Contents. It came back just after a 
restart.
I was hoping it won't happen in B3.
I have installed B3. Opened the Help Contents, it was there, closed it, 
opened again. Haven't seen it since then.
I have set it to use external browser (Window- Preferences - Help). It 
opens the browser with the URL: http://127.0.0.1:49633/help/index.jsp, 
and result:


 The page cannot be displayed.


The 49633 number is different with each restart of the Flex Builder, so 
I assume each time a different server should start.
What should I do to restore my help?

Thanks,
Andi






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












Re: [flexcoders] Help Contents dissapears (both Flex Builder 2 B2 and B3)

2006-05-09 Thread Chris Velevitch



There's a note about it on known issues in beta 3 in the labs.


Chris
--
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Repeaters ?

2006-05-09 Thread Antoine Malpel



For a shopping cart I tried to display the content of the cart using a 
Repeater.

When the Repeater is creating the rows of the card I can get the 
values of the dataprovider with repeaterId.currentItem.fieldName so I 
can display the prod name etc. but then I would like to store for each 
product in the cart so I could then use a Image's mouseUp event to 
remove the corresponding item from the Cart.
So To call the Remote Object's method I need to give to it the code of 
this product. but I don't understand how I could give to it the 
product's code ...






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flex2 Beta3: Mystic installation

2006-05-09 Thread Thomas Rühl -akitogo-




so, here i am, trying to install mystic on my multiserver configuration 
and guess what? it doesn't work.

setup as follows:
* winxp sp2
* jrun4 updater 6 with jre 1.4.2_11 in c:\JRun
* flex-stuff deployed in a servier instance 'flex'
* cf deployed in a server instance 'cfusion'
* all the server instances were stoppen during the mystic installation 
attempt

i ran the mystic b3 installer, the error message is like it was for 
beta2 '...not a valid jrun server root'. of course, i uninstalled 
everything before and even performed a reboot, which shouldn't have been 
neccessary...

any ideas, pls?

greetings, thomas







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] Flex2 Beta3: Mystic installation

2006-05-09 Thread João Fernandes










The only issue I had for multiserver install was with a custom Java
Home since the updater wasnt able to update the integrated JRE.

Even with custom JRE it was trying to start my instance with the
default one. I changed the path back to its default and runned the installer
again and everything worked fine.







João Fernandes
Dep.
Informática - Área de Desenvolvimento
Cofina media

Avenida
João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel
(+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]













From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Thomas Rühl -akitogo-
Sent: terça-feira, 9 de Maio de 2006 15:17
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex2 Beta3: Mystic installation






so, here i am, trying to install mystic on my multiserver configuration 
and guess what? it doesn't work.

setup as follows:
* winxp sp2
* jrun4 updater 6 with jre 1.4.2_11 in c:\JRun
* flex-stuff deployed in a servier instance 'flex'
* cf deployed in a server instance 'cfusion'
* all the server instances were stoppen during the mystic installation 
attempt

i ran the mystic b3 installer, the error message is like it was for 
beta2 '...not a valid jrun server root'. of course, i uninstalled 
everything before and even performed a reboot, which shouldn't have been 
neccessary...

any ideas, pls?

greetings, thomas



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







SPONSORED LINKS 




 
  
  Web
  site design development 
  
  
  Computer
  software development 
  
  
  Software
  design and development 
  
 
 
  
  Macromedia
  flex 
  
  
  Software
  development best practice 
  
  
  
  
 










YAHOO! GROUPS LINKS 




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


















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] cf flex intergration

2006-05-09 Thread Simeon Bateman



Hey John,I posted on my blog about how I use ANT to compile flex 2.0 scripts for my mac. I also have a post about setting up so remoting works here:
http://www.simb.net/blog/index.cfm/2006/3/1/Compiling-Mystic-Compatible-SWFs-with-AntIf you have any questions about getting that set up feel free to post them here or on the flexcf.net
 forums.Good Luck,simeonOn 5/9/06, JB [EMAIL PROTECTED] wrote:



Hi,
Does anybody know of any examples explaining
coldfusion  flex intergration? I was just able to
download Mystic on the Mac, but I am pretty lost on
how to intergrate the two.

Thank you very much for any help,
John

__
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









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.

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



  

















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Current Node in tree when drop

2006-05-09 Thread Franca Daniel



 
 How can i get current node of the Tree when i drop
a element from grid to that Tree ?

Help please, Thank you!


  
___ 
Navegue com o Yahoo! Acesso Grátis, assista aos jogos do Brasil na Copa e ganhe prêmios de hora em hora! 
http://br.yahoo.com/artilheirodacopa/






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: Drwaing API inside an AS based component - not working

2006-05-09 Thread sergio_trejo_r



Using Flex 2 Beta 2 I don't see a draw() method in the UIComponent 
class. Can you confirm which version of Flex are you using? and 
which is the method where the drawing should happen?

thanks!
Sergio

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

 Not sure which version you are using, but in Flex 2 Beta 2, I also 
have 
 a component that extends the UIComponent.
 
 When you say you are using the drawing API, I presume you are doing 
 something like this:
 
 this.graphics.clear();
 this.graphics.beginFill(0xff);
 this.graphics.drawRect(-25, -25, 50, 50);
 
 One thought is that you may not be setting the line color or line 
width. 
 Is that a possibility? Make sure you have something equivalent to 
this:
 
 c.graphics.lineStyle(1, 0xff);
 
 -Mark
 
 leo4beer wrote:
 
 Using the drawing API inside a component.
 
 Hi, I've made a custom component by extending the UIComponent 
class,
 in my component I've overridden the draw() method and used drawing 
API
 to draw a few lines.
 I've embedded my component in an MXML page but I don't see the 
lines…I
 must be doing something wrong, any ideas?
 
 Thanks in advance,
 
 Leo.
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com 
 Yahoo! Groups Links
 
 
 
  
 
 
 
 
 
  
 












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Flex2 Beta3: Mystic installation

2006-05-09 Thread Bill Sahlas










Please review the release notes for J2EE
installs @ http://mmbeta.macromedia.com/downloader.cfm?r=4463#j2ee













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Thomas Rühl -akitogo-
Sent: Tuesday, May 09, 2006 10:17
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex2 Beta3:
Mystic installation






so, here i am, trying to install mystic on my multiserver configuration 
and guess what? it doesn't work.

setup as follows:
* winxp sp2
* jrun4 updater 6 with jre 1.4.2_11 in c:\JRun
* flex-stuff deployed in a servier instance 'flex'
* cf deployed in a server instance 'cfusion'
* all the server instances were stoppen during the mystic installation 
attempt

i ran the mystic b3 installer, the error message is like it was for 
beta2 '...not a valid jrun server root'. of course, i uninstalled 
everything before and even performed a reboot, which shouldn't have been 
neccessary...

any ideas, pls?

greetings, thomas









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] generic sorts for DataGridColumns?

2006-05-09 Thread djbrown_rotonews



I'm using Flex Beta 2 and wanting to implement a generic sort that 
will handle the approximate 20 columns I'm displaying. 

I've got it set up as follows:
  mx:DataGridColumn id=col1 resizable=false 
textAlign=center fontWeight=bold headerText=STA 
width={dgDelays.width/22} headerWordWrap=on dataField=acfrmsta 
labelFunction=labelFunction sortCompareFunction=sortAlpha/

and my sortAlpha takes the form of:
public function sortAlpha(a:Object,b:Object):int {
   
var field:String=acfrmsta;
var string1:String = a[field].attribute(dataValue);
var string2:String = b[field].attribute(dataValue);

if (string1==string2)
 return 0;
else if (string1  string2)
 return -1;
else
 return 1;
}

as you can see, I have to hard-code in the value of arfrmsta in the 
sortalpha() method. How can I drill down and get this value 
programatically if I don't have access to something like columnIndex 
(which DOES exist apparently in DataGridListData)? Either that, or I 
can iterate over the column headers if something like isItemSelected
() existed.









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












Re: [flexcoders] Flex2 Beta3: Mystic installation

2006-05-09 Thread Thomas Rühl -akitogo-




sorry, but I'm not participating in the beta programme, yet - just 
signed myself up there... so far, I downloaded all the stuff from the 
labs site.

can you possibly quicken my signup there ;) or just tell me another 
ressource where I can find more information regarding installation issues?

greetings, thomas


Bill Sahlas wrote:
 Please review the release notes for J2EE installs @ 
 http://mmbeta.macromedia.com/downloader.cfm?r=4463#j2ee
 
 
 
 
 
 
 
 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
 *On Behalf Of *Thomas Rühl -akitogo-
 *Sent:* Tuesday, May 09, 2006 10:17 AM
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Flex2 Beta3: Mystic installation
 
 
 
 
 so, here i am, trying to install mystic on my multiserver configuration
 and guess what? it doesn't work.
 
 setup as follows:
 * winxp sp2
 * jrun4 updater 6 with jre 1.4.2_11 in c:\JRun
 * flex-stuff deployed in a servier instance 'flex'
 * cf deployed in a server instance 'cfusion'
 * all the server instances were stoppen during the mystic installation
 attempt
 
 i ran the mystic b3 installer, the error message is like it was for
 beta2 '...not a valid jrun server root'. of course, i uninstalled
 everything before and even performed a reboot, which shouldn't have been
 neccessary...
 
 any ideas, pls?
 
 greetings, thomas
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 
 
 
 SPONSORED LINKS
 Web site design development 
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ 
  Computer software development 
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw 
  Software design and development 
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ 
 
 Macromedia flex 
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw 
  Software development best practice 
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw 
 
 
 
 
 YAHOO! GROUPS LINKS
 
 * Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders on the web.
 
 * To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/. 
 
 
 
 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] problems when creating a pop up

2006-05-09 Thread Alin DICU



Hi,

I'm having problems to create a popUp. My code is exactly the same as 
the one in the Flex doc examples. Here it is again:


SimpleTitleWindow.mxml-
mx:TitleWindow xmlns:mx=http://www.macromedia.com/2003/mxml 
title=Title Window
 x=268 y=86 closeButton=true click=this.deletePopUp(); 
width=200 height=180

 mx:Label text=Enter Name: /
 mx:TextInput id=email width=150/
 mx:Button label=Cancel click=this.deletePopUp();/

/mx:TitleWindow

TitleWindowApp.mxml
?xml version=1.0 encoding=utf-8?
!-- Simple application to demonstrate TitleWindow layout --
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml xmlns=* 
backgroundColor=#FF

 mx:Script
 ![CDATA[ 
 import SimpleTitleWindow;
 function showWindow()
 {
 var login=mx.managers.PopUpManager.createPopUp(_root, 
SimpleTitleWindow, true, {deffered:true});
 }
 ]]
 /mx:Script

 mx:Panel title=Simple Panel

 mx:Button label=Click to view title window 
click=showWindow();/

 /mx:Panel

/mx:Application

When I launch TitleWindowApp I have the following error : The class 
'SimpleTitleWindow' could not be loaded.

Do you have any advise?

Thanks,








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] f2 b3 Sound busted ?

2006-05-09 Thread arpit mathur


Is it something I am doing wrong ? The sound class completely doesnt work for me anymore. I can see the sound loading but it doesnt play. The beta 3 sound example at http://livedocs.macromedia.com/labs/1/flex20beta3/langref//flash/media/Sound.html is not working for me.- Original Message From: Simeon Bateman [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Tuesday, May 9, 2006 10:33:41 AMSubject: Re: [flexcoders] cf flex intergration


Hey John,I posted on my blog about how I use ANT to compile flex 2.0 scripts for my mac. I also have a post about setting up so remoting works here:
http://www.simb.net/blog/index.cfm/2006/3/1/Compiling-Mystic-Compatible-SWFs-with-AntIf you have any questions about getting that set up feel free to post them here or on the flexcf.net
 forums.Good Luck,simeonOn 5/9/06, JB [EMAIL PROTECTED] wrote:



Hi,
Does anybody know of any examples explaining
coldfusion  flex intergration? I was just able to
download Mystic on the Mac, but I am pretty lost on
how to intergrate the two.

Thank you very much for any help,
John

__
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









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.

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



  

















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  








RE: [flexcoders] Flex2 Beta3: Mystic installation

2006-05-09 Thread Bill Sahlas










For labs you can find the release notes
here



http://labs.adobe.com/wiki/index.php/ColdFusion/Flex_Connectivity:Release_Notes_pt2#Installing_ColdFusion.2FFlex_Connectivity_Beta_3_J2EE_configuration













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Thomas Rühl -akitogo-
Sent: Tuesday, May 09, 2006 10:51
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex2
Beta3: Mystic installation






sorry, but I'm not participating in the beta programme, yet - just 
signed myself up there... so far, I downloaded all the stuff from the 
labs site.

can you possibly quicken my signup there ;) or just tell me another 
ressource where I can find more information regarding installation issues?

greetings, thomas


Bill Sahlas wrote:
 Please review the release notes for J2EE installs @ 
 http://mmbeta.macromedia.com/downloader.cfm?r=4463#j2ee
 
 
 
 
 
 
 
 *From:* flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com] 
 *On Behalf Of *Thomas Rühl -akitogo-
 *Sent:* Tuesday, May 09, 2006 10:17 AM
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Flex2 Beta3: Mystic installation
 
 
 
 
 so, here i am, trying to install mystic on my multiserver configuration
 and guess what? it doesn't work.
 
 setup as follows:
 * winxp sp2
 * jrun4 updater 6 with jre 1.4.2_11 in c:\JRun
 * flex-stuff deployed in a servier instance 'flex'
 * cf deployed in a server instance 'cfusion'
 * all the server instances were stoppen during the mystic installation
 attempt
 
 i ran the mystic b3 installer, the error message is like it was for
 beta2 '...not a valid jrun server root'. of course, i uninstalled
 everything before and even performed a reboot, which shouldn't have been
 neccessary...
 
 any ideas, pls?
 
 greetings, thomas
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 
 
 
 SPONSORED LINKS
 Web site design development 
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ

  Computer software development 
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw

  Software design and development 
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ

 
 Macromedia flex 
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw

  Software development best practice 
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw

 
 
 
 
 YAHOO! GROUPS LINKS
 
 * Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders
on the web.
 
 * To unsubscribe from this group, send an
email to:
 [EMAIL PROTECTED]

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

 
 
 
 








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: Webservice Flex 2 unexpexted incoming type

2006-05-09 Thread moyosaned



It is fixed in the new Beta-version..!! Cool.


But anotherone

We want to read the error that is passed by the server in
Description... of a fault..
The onlything we receive is..

faultCode (string) : Server.Error.Request
faultString (string) : HTTP request error
faultDetail (string) : Error: [IOErrorEvent type=ioError
bubbles=false cancelable=false eventPhase=2 text=Error #2032: Stream
Error. URL: http://apwebinterface.blabla.nl/RiaMethods.asmx]. URL:
http://apwebinterface.blabla.nl/RiaMethods.asmx
rootCause (object) : [object Object] = {
text (string) : Error #2032: Stream Error. URL:
http://apwebinterface.blabla.nl/RiaMethods.asmx
}

... But we can read the message of the server

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

 Does your WSDL specify the Id as being of type String? We have
default behavior for things that are unspecified to guess at the type,
which of course is messing you up here. If you can't get the WSDL to
contain the information you may need to use a literal result
(resultFormat=xml|e4x) and deserialize it into objects yourself.
 
 Matt
 
 
 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of moyosaned
 Sent: Thursday, May 04, 2006 6:45 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Webservice Flex 2 unexpexted incoming type
 
 In the response of a webservice I expect the Id to be of type
 String. But it's not it will parse to Number. Which will mess up my
 Id...
 
 Look...
 Id (number) : 7.20575940978773e+16
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Flex 2 Beta 3 download

2006-05-09 Thread Helen Triolo



well, i'm just gonna put my head down on my desk and cry. 
trials.adobe.com (which can never be found) is starting to take on a 
whole new meaning...

Josh Buhler wrote:

 I think the servers might just be getting nailed. They've been up and 
 down since the announcement. I just kept trying and was able to get 
 the files eventually.

 - Josh


 On May 9, 2006, at 6:06 AM, Helen Triolo wrote:

 Ditto -- been trying for the past 12 hours with no luck :(

 Helen

 pk_wasp wrote:

 Are people having problems downloading it?
 
 I've turn off download managers etc, but keep getting Cannot find
 server or DNS Error if i click on any of the download links.
 
 (or are the servers getting hammered)?
 
 cheers








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] Flex2 Beta3: Mystic installation

2006-05-09 Thread Sascha Balkau



It kept telling me that I'm not admin when I tried to install Beta3 (though
I was logged in as admin). I finally managed to install it  in SAFE
MODE (gah)!

Sascha


 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Thomas Rühl -akitogo-
 Sent: Tuesday, 09. May, 2006 23:17
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Flex2 Beta3: Mystic installation
 
 
 so, here i am, trying to install mystic on my multiserver configuration
 and guess what? it doesn't work.
 
 setup as follows:
 * winxp sp2
 * jrun4 updater 6 with jre 1.4.2_11 in c:\JRun
 * flex-stuff deployed in a servier instance 'flex'
 * cf deployed in a server instance 'cfusion'
 * all the server instances were stoppen during the mystic installation
 attempt
 
 i ran the mystic b3 installer, the error message is like it was for
 beta2 '...not a valid jrun server root'. of course, i uninstalled
 everything before and even performed a reboot, which shouldn't have been
 neccessary...
 
 any ideas, pls?
 
 greetings, thomas
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links
 
 
 
 
 








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Re: onMouseWheel -- Works in MXML, not when embedded into HTML

2006-05-09 Thread Raheen M Shabbazz



Thanks for the heads up, Tom. That looks like the way to go on this one.


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

  On Mon, May 8, 2006 at 8:10 PM, in message [EMAIL PROTECTED],
 [EMAIL PROTECTED] wrote: 
  How can I get around this?
 
 Have the HTML around the Flash call a function in the flash when it
sees a scroll event.
 
 
 
 Tom Chiverton
 
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in
England and Wales under registered number OC307980 whose registered
office address is at St James's Court Brown Street Manchester M2 2JF.
 A list of members is available for inspection at the registered
office. Any reference to a partner in relation to Halliwells LLP means
a member of Halliwells LLP. Regulated by the Law Society.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named above
and may be confidential or legally privileged. If you are not the
addressee you must not read it and must not use any information
contained in nor copy it nor inform any person other than Halliwells
LLP or the addressee of its existence or contents. If you have
received this email in error please delete it and notify Halliwells
LLP IT Department on 0870 365 8008.
 
 For more information about Halliwells LLP visit www.halliwells.com.
 
 We are pleased to announce that Halliwells LLP has been voted AIM
Lawyer of the Year at the 2005 Growth Company Awards











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Re: Is it possible to dynamically get a PrintScreen Image?

2006-05-09 Thread Raheen M Shabbazz



Outstanding! It really is possible! That's good news.

I tried using the printer function per the earlier reply, but it
seemed to be a dead end. I will try drawing out the bitmap to see if
that fits my needs. Thanks for the tip!



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

 I'm not looking up the APIs but basically you can create a new bitmap,
 then draw the topmost displayobject to that bitmap. Then you can do
 whatever you want with the bitmap including use it as an image
 elsewhere.
 
 Matt
 
 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Raheen M Shabbazz
 Sent: Monday, May 08, 2006 11:50 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Is it possible to dynamically get a PrintScreen
 Image?
 
 I've got a dynamic application that can be in any number of
 view-states. Generally speaking, no two states are the same.
 
 I've got a method set up to change the view-state by listening to the
 mouse wheel. The has the effect of zooming the view-state of my
 application. I put that in quotes because it does not really zoom the
 application (ie, with a Flex effect or Flash tween), it simply changes
 and updates the view-state.
 
 What I would like to do is the following :
 
 1) Take a snapshot of the current visual state
 2) Load that snapshot into a dynamic snapshot view at the top level
 such that it is the only visible element on the screen.
 3) Zoom into the snapshot view using the Flex zoom effect while
 loading all my updated view-state in the background.
 4) When my updated view-state has loaded in the background, remove (or
 hide) the top-level snapshot view.
 
 Can anyone tell me if this idea of taking a dynamic snapshot is
 possible and, if so, how I can go about accomplishing it? A way to
 incorporate CacheAsBitmap or something similar?
 
 If I have been unclear, or you need more information, please don't
 hesitate to ask.
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Flex2 Beta3: Mystic installation

2006-05-09 Thread Dave Carabetta



On 5/9/06, Bill Sahlas [EMAIL PROTECTED] wrote:
 Please review the release notes for J2EE installs @ http://mmbeta.macromedia.com/downloader.cfm?r=4463#j2ee


Bill,

Can you please put that page somewhere that's *not* behind that beta
site? Perhaps on the Labs documentation page? I don't have permission
to access that page and this is exactly the kind of information I have
been searching for since the B3 release last night.

Regards,
Dave.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flex 2 beta 3 with Flash Paper

2006-05-09 Thread Devis



Please have some docs or examples about generate report by Flash Paper with
Flex 2?
Thank's devis








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Programitically using Date Validation

2006-05-09 Thread rodneyjlucas





I am trying to figure out a way to use DateValidators
programmatically. I have a set of date formats I want to use and will
have logic setup to validatge a string being placed in a text input. 
This seems pretty straight forward with you have MXML file and you
want to support one format. How can you set this at run time?
Unfortunatly the DateValidators are special and seem to be used more
in a static manner so I am not sure how to set the properties without
getting the error..

The property being referenced does not have the static attribute.


Does anyone have a better way to do this?

Rodney









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Flex2 Beta3: Mystic installation

2006-05-09 Thread Bill Sahlas










Already done Dave  











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dave Carabetta
Sent: Tuesday, May 09, 2006 11:44
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex2
Beta3: Mystic installation





On 5/9/06, Bill Sahlas
[EMAIL PROTECTED] wrote:
 Please review the release notes for J2EE installs @ http://mmbeta.macromedia.com/downloader.cfm?r=4463#j2ee


Bill,

Can you please put that page somewhere that's *not* behind that beta
site? Perhaps on the Labs documentation page? I don't have permission
to access that page and this is exactly the kind of information I have
been searching for since the B3 release last night.

Regards,
Dave.








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Access datagrid items

2006-05-09 Thread Misael



Hi, one doubt: how do i acess a
datagrid items? I want to iterate through its items to do many things,
such as get some column value specifically at row-level, or send that
data through HTTPService. I´ve found no propertie like that, similar to
dgBancos.selectedItems, i want something like dgBancos.items. Also,
does a datagrid updates its dataprovider when i edit a row using
editable = true, or it just updates its internal instance of that
value, leaving dataprovider untouched?
Thanks in advance.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: Gui component events inside mx:Repeater

2006-05-09 Thread Doug Lowder



Try:

change=timeRange.STARTTIME=event.target.selectedItem.data


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

 In the snippet I've included below, {hours.hour} is just a 
reference 
 to some static XML that contains 24 strings (one for each hour), 
 with the value I want associated with each (ie, 23:00 etc...)
 
 timeRange is a model that contains the current endTime (another 
 ComboBox, in the same nature as startTime) and startTime combo box 
 selections that get passed as arguments to a jsp call. How would I 
 modify my cbStartTime definition to enable the 
 timeRange.STARTTIME=cbSTartTime.selectedItem.data (it's a compile-
 time syntax error if left as is when using a Repeater)
 
 when using a Repeater?
 
 --- In flexcoders@yahoogroups.com, Tim Hoff TimHoff@ wrote:
 
  Each control (Repeater, comboBox) needs to utilyze binding. If 
 you 
  use an arrayCollection as the dataProvider for all your 
controls, 
  you can easily manipulate and bind the data that resides in the 
  model (preferably modelLocator).
  
  TH
  
  --- In flexcoders@yahoogroups.com, djbrown_rotonews 
  djbrown_rotonews@ wrote:
  
   I've got the following GUI component that updates a value 
inside 
  an 
   mx:Model I've defined:
   
   mx:ComboBox x=625 y=0 id=cbStartTime rowCount=10 
   dataProvider={hours.hour} 
   change=timeRange.STARTTIME=cbStartTime.selectedItem.data/ 
  












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Access datagrid items

2006-05-09 Thread Jeff Tapper



you can iterate over the dataprovider of the datagrid.

At 12:00 PM 5/9/2006, you wrote:
Hi,
one doubt: how do i acess a datagrid items? I want to iterate through its 
items to do many things, such as get some column value specifically at 
row-level, or send that data through HTTPService. I´ve found no propertie 
like that, similar to dgBancos.selectedItems, i want something like 
dgBancos.items. Also, does a datagrid updates its dataprovider when i edit 
a row using editable = true, or it just updates its internal instance of 
that value, leaving dataprovider untouched?
Thanks in advance.

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




SPONSORED LINKS
http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQWeb 
site design development 
http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHwComputer 
software development 
http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQSoftware 
design and development
http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjwMacromedia 
flex 
http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIwSoftware 
development best practice


--
YAHOO! GROUPS LINKS

 * Visit your group 
 http://groups.yahoo.com/group/flexcodersflexcoders on the web.
 *
 * To unsubscribe from this group, send an email to:
 * 
 mailto:[EMAIL PROTECTED][EMAIL PROTECTED] 

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


--








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Invalid WDDX Packet Exception (FB2B3)

2006-05-09 Thread João Fernandes










Hi there,



In Flex Builder Beta 3 ,the Services
Browser View, when I try to connect to my RDS server I get this error in
that panel.

If I test connection in 

Window   Preferences  RDS
Configuration 

I get Test Connection successful.



Any Idea?



João Fernandes
Dep.
Informática - Área de Desenvolvimento
Cofina media

Avenida
João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel
(+351) 213 185 200 . Fax (+351) 213 540 370
[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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: Checkbox oddity within a dataGrid cellRenderer

2006-05-09 Thread Doug Lowder



Hi,

I'm not with the Flex team, but I do know the beavior you're seeing 
can be caused by failing to properly matching the checkbox state and 
cellrenderer's item data.

Here's what I use. (check is the checkbox control created in the 
renderer's createChildren() method; selected is the property of 
the item data I want the checkbox to reflect. You may be able to 
use item[getDataLabel()] in place of a property name.)


 function setValue(str:String, item:Object, state:String): Void {
 if (item != undefined) {
 check.selected = item.selected;
 }
 }

 // Click handler was set up in createChildren:
 // check.addEventListener(click, this);
 function click(event) {
 listOwner.dataProvider[getCellIndex().itemIndex].selected = 
 check.selected;
 }


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

 Hi All,
 Just wondered if any of the Flex team could let me know if this is
 known bug/issue.
 
 I'm currently using Flex 1.5 and displaying a series of checkboxes
 within a cellRenderer (located within a DataGrid).
 
 When the user selects a checkbox within this cell (for example at 
the
 top) and then scrolls down the cell. Other checkboxes (located 
within
 the cell) automatically become checked (without any user 
interaction). 
 
 These 'freshly selected' checkboxes in-turn cannot be deselected 
(ie:
 the stay continually selected).
 
 I did see this post/thread
 http://www.mail-
archive.com/flexcoders@yahoogroups.com/msg21796.html
 
 which mentions that this may be a known issue and recommends the 
use
 of the isCellEditor=true and editorProperty=selected flags (which
 unfortunately don't seem to work).
 
 Any suggestions would be helpful.
 
 Thanks in advance.











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: problems when creating a pop up

2006-05-09 Thread Doug Lowder



Your code, exactly as posted, works fine for me. Do you have the 
SimpleTitleWindow.mxml and TitleWindowApp.mxml files in the same 
directory?

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

 Hi,
 
 I'm having problems to create a popUp. My code is exactly the same 
as 
 the one in the Flex doc examples. Here it is again:
 
 
 SimpleTitleWindow.mxml-

 mx:TitleWindow xmlns:mx=http://www.macromedia.com/2003/mxml 
 title=Title Window
 x=268 y=86 closeButton=true click=this.deletePopUp(); 
 width=200 height=180
 
 mx:Label text=Enter Name: /
 mx:TextInput id=email width=150/
 mx:Button label=Cancel click=this.deletePopUp();/
 
 /mx:TitleWindow
 
 TitleWindowApp.mxml
 ?xml version=1.0 encoding=utf-8?
 !-- Simple application to demonstrate TitleWindow layout --
 mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml 
xmlns=* 
 backgroundColor=#FF
 
 mx:Script
 ![CDATA[ 
 import SimpleTitleWindow;
 function showWindow()
 {
 var login=mx.managers.PopUpManager.createPopUp(_root, 
 SimpleTitleWindow, true, {deffered:true});
 }
 ]]
 /mx:Script
 
 mx:Panel title=Simple Panel
 
 mx:Button label=Click to view title window 
 click=showWindow();/
 
 /mx:Panel
 
 /mx:Application
 
 When I launch TitleWindowApp I have the following error : The 
class 
 'SimpleTitleWindow' could not be loaded.
 
 Do you have any advise?
 
 Thanks,












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Flex Beta 3 with TOMCAT JTOM ACTIVEMQ Work

2006-05-09 Thread Devis



Hi, i have read more question about flex and Tomcat 5.5, if you wish i have
attach a very simple step by step configuration.
Devis






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









tomcat.doc
Description: MS-Word document


[flexcoders] ComboBox Fields

2006-05-09 Thread Antoine Malpel



I need to store the result of a Remote Object's method into a ComboBox
The comboBox fills but I don't understand how I could specify the ID 
field and label field so all the field are collapsed in label ...
Didn't find this in API doc ///






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Access datagrid items

2006-05-09 Thread Misael



that´s where i get into my second question: after I edit a row in the datagrid does it´s corresponding item in the dataprovider get updated too with that same value? On 5/9/06, 
Jeff Tapper [EMAIL PROTECTED] wrote:



you can iterate over the dataprovider of the datagrid.

At 12:00 PM 5/9/2006, you wrote:
Hi,
one doubt: how do i acess a datagrid items? I want to iterate through its 
items to do many things, such as get some column value specifically at 
row-level, or send that data through HTTPService. I´ve found no propertie 
like that, similar to dgBancos.selectedItems, i want something like 
dgBancos.items. Also, does a datagrid updates its dataprovider when i edit 
a row using editable = true, or it just updates its internal instance of 
that value, leaving dataprovider untouched?
Thanks in advance.

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

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




SPONSORED LINKS

http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ
Web 
site design development 

http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw
Computer 
software development 

http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ
Software 
design and development

http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw
Macromedia 
flex 

http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw
Software 
development best practice


--
YAHOO! GROUPS LINKS

 * Visit your group 
 http://groups.yahoo.com/group/flexcodersflexcoders on the web.
 *
 * To unsubscribe from this group, send an email to:
 * 
 mailto:[EMAIL PROTECTED]?subject=Unsubscribe
[EMAIL PROTECTED] 

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


--








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

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









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.

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



  
















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] ComboBox Fields

2006-05-09 Thread Deepa Subramaniam










There is the labelField property, which
you can use to specify which field in the objects of the dataProvider should be
used to display the label for each item. If you require further formatting, you
can set a labelFunction which is a function that is run on each item to
determine the label for display. The docs have examples of both these
properties in play.



-deepa











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Antoine Malpel
Sent: Tuesday, May 09, 2006 8:47
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] ComboBox
Fields





I need to store the
result of a Remote Object's method into a ComboBox
The comboBox fills but I don't understand how I could specify the ID 
field and label field so all the field are collapsed in label ...
Didn't find this in API doc ///








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: Flex 2 Beta 3 download

2006-05-09 Thread pk_wasp



damm, I still can't download it :( any mirrors?...the Flex word must 
be going around

i remember downloading Flex 2 Alpha at full speed when it just came 
out lol



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

 Ditto -- been trying for the past 12 hours with no luck :(
 
 Helen
 
 pk_wasp wrote:
 
 Are people having problems downloading it?
 
 I've turn off download managers etc, but keep getting Cannot find 
 server or DNS Error if i click on any of the download links.
 
 (or are the servers getting hammered)?
 
 cheers
 
  
 











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Detecting client disconnection in FDSb3

2006-05-09 Thread Aldo Bucchi



Hi all,

Narrowing a little on a previous post...

* how can I detect a (flex) client disconnection ( RTMP ) when using
the messaging service??

I am trying to design a chat application on top of FDS but I'm finding
it insanely different to what I am used to ( FMS / FlashComm ). Any
pointers??

What would be the best approach??

Thanks,
Aldo

PD: My flexcoders list reached 7000 gmail conversations today!! jaja
man this list hast grown exponentially :)
congrats to the parents... Steve and Ali jajaj.

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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: Individual Tab Header Colors

2006-05-09 Thread Tim Hoff



Thanks Gordon and Jeremy.

Tim


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

 thanks Gordon, another new api scrub ? :-)
 
 On 5/9/06, Gordon Smith [EMAIL PROTECTED] wrote:
 
  Close... that should be getTabAt(), not getChildAt(). The tabs 
are
  actually grandchildren of the TabNavigator; they are children of 
the TabBar
  that is a child of the TabNavigator.
 
 
 
  - Gordon
 
 
  --
 
  *From:* flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] *On
  Behalf Of *jeremy lu
  *Sent:* Monday, May 08, 2006 7:03 PM
  *To:* flexcoders@yahoogroups.com
  *Subject:* Re: [flexcoders] Individual Tab Header Colors
 
 
 
 
  you can getChildAt() to get the individual button instance then 
setStyle()
  on it.
 
  see if this work.
 
  On 5/9/06, *Tim Hoff* [EMAIL PROTECTED] wrote:
 
  I read a great post recently that showed how to apply styles to
  individual tab headers in a tabNavigator with AS3. And like an 
idiot,
  I failed to bookmark it. Does anyone have a quick link that 
shows how
  to do this? I searched, but came up dry.
 
  As always - thanks,
  Tim Hoff
 
 
 
 
 
 
 
  --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
  Yahoo! Groups Links
 
 
 
 
 
 
 
 
 
  --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
 
 
 
  SPONSORED LINKS
  Web site design developmenthttp://groups.yahoo.com/gads?
t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=
Computer+software+developmentw3=Software+design+and+developmentw4=M
acromedia+flexw5=Software+development+best+practicec=5s=166.sig=L
-4QTvxB_quFDtMyhrQaHQ Computer
  software developmenthttp://groups.yahoo.com/gads?
t=msk=Computer+software+developmentw1=Web+site+design+developmentw
2=Computer+software+developmentw3=Software+design+and+developmentw4
=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig
=lvQjSRfQDfWudJSe1lLjHw Software
  design and developmenthttp://groups.yahoo.com/gads?
t=msk=Software+design+and+developmentw1=Web+site+design+development
w2=Computer+software+developmentw3=Software+design+and+development
w4=Macromedia+flexw5=Software+development+best+practicec=5s=166.s
ig=1pMBCdo3DsJbuU9AEmO1oQ Macromedia
  flexhttp://groups.yahoo.com/gads?
t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+sof
tware+developmentw3=Software+design+and+developmentw4=Macromedia+fl
exw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZ
I36cYzBjw Software
  development best practicehttp://groups.yahoo.com/gads?
t=msk=Software+development+best+practicew1=Web+site+design+developm
entw2=Computer+software+developmentw3=Software+design+and+developme
ntw4=Macromedia+flexw5=Software+development+best+practicec=5s=166
.sig=f89quyyulIDsnABLD6IXIw
  --
  YAHOO! GROUPS LINKS
 
 
  - Visit your 
group flexcodershttp://groups.yahoo.com/group/flexcoders
  on the web.
 
 
  To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]flexcoders-
[EMAIL PROTECTED]
 
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Servicehttp://docs.yahoo.com/info/terms/
  .
  --
 
 












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flex 2.0 Beta 3 - Mystic 3.0 beta

2006-05-09 Thread flexnadobe



Hello,

I have DL and Installed F2 Beta 3 after completely uninstalling
everything except coldfusion mx7. I then installed all of the new
install files except FDS2 beta 3, I would like to work without for Now.

I had built A very simple CFC that accessed the sample datbases that
ship with coldfusion. In beta 2 everything worked fine.

With Beta 3 I get the following error:


[RPC Fault faultString=java.lang.NullPointerException
faultCode=Server.Processing faultDetail=null]
 at
mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()
 at mx.rpc::Responder/fault()
 at mx.rpc::AsyncRequest/fault()
 at
::NetConnectionMessageResponder/NetConnectionChannel.as$42:NetConnectionMessageResponder::statusHandler()
 at mx.messaging::MessageResponder/status()

---
I believe I installed everything correctly as before.

Any body run into this and more importantly have you found out what
might be wrong.

Thanks,

Rich










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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Re: problems when creating a pop up

2006-05-09 Thread Anant Gilra



Have you compiled the SimpleTitleWindow?Thanks,Anant.On 5/9/06, Doug Lowder [EMAIL PROTECTED]
 wrote:Your code, exactly as posted, works fine for me.Do you have theSimpleTitleWindow.mxml
 and TitleWindowApp.mxml files in the samedirectory?--- In flexcoders@yahoogroups.com, Alin DICU [EMAIL PROTECTED]wrote: Hi,
 I'm having problems to create a popUp. My code is exactly the sameas the one in the Flex doc examples. Here it is again: SimpleTitleWindow.mxml-
 mx:TitleWindow xmlns:mx=http://www.macromedia.com/2003/mxml title=Title Window x=268 y=86 closeButton=true click=
this.deletePopUp(); width=200 height=180 mx:Label text=Enter Name: / mx:TextInput id=email width=150/
 mx:Button label=Cancel click=this.deletePopUp();/ /mx:TitleWindow TitleWindowApp.mxml ?xml version=
1.0 encoding=utf-8? !-- Simple application to demonstrate TitleWindow layout -- mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml
xmlns=* backgroundColor=#FF mx:Script ![CDATA[ import SimpleTitleWindow;function showWindow()
{var login=mx.managers.PopUpManager.createPopUp(_root, SimpleTitleWindow, true, {deffered:true});} ]] /mx:Script mx:Panel title=Simple Panel
 mx:Button label=Click to view title window click=showWindow();/ /mx:Panel /mx:Application When I launch TitleWindowApp I have the following error : The
class 'SimpleTitleWindow' could not be loaded. Do you have any advise? Thanks, Yahoo! Groups Sponsor ~--
Everything you need is oneclick away. Make Yahoo! your home pagenow.http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM~-
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links* To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
* To unsubscribe from this group, send an email to:[EMAIL PROTECTED]* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Simple XML web service call

2006-05-09 Thread Darren Houle



This is probably very simple and I'm just being stupid, but... why doesn't 
this work? I don't get any errors, just a blank swf w/o the Label. I'm in 
Beta 3.

mxml file

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml
 creationComplete=wsTest.testFunction.send()
 mx:WebService id=wsTest useProxy=false
  wsdl=http://localhost/ia_cleanup.cfc?wsdl
  mx:operation name=testFunction resultFormat=xml /
 /mx:WebService
 mx:Label text={wsTest.testFunction.lastResult.msg} /
/mx:Application


...and the accompanying CFC file
-
cfcomponent
 cffunction name=testFunction access=remote output=false 
returntype=xml
  cfxml variable=xmlResults
   msgHello World/msg
  /cfxml
  cfreturn xmlResults
 /cffunction
/cfcomponent

I've tried different resultFormats, different returnTypes... returning a 
string instead of the cfxml tag... building mystring and returning the 
result of parseXML(mystring). Nothing seems to work.

Thanks,
Darren








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Beta 3 runtime error Error: Cannot add a child that is already parented.

2006-05-09 Thread wlbagent



I'm working thru the errors/warnings in migrating a Beta 2 application
to Beta 3. I've cleared up all the Builder errors but get the
following runtime error (there is no error number):

Error: Cannot add a child that is already parented.
 at mx.states::AddChild/apply()
 at mx.core::UIComponent/::applyState()
 at mx.core::UIComponent/::commitCurrentState()
 at mx.core::UIComponent/mx.core:UIComponent::commitProperties()
 at mx.core::Container/mx.core:Container::commitProperties()
 at mx.core::UIComponent/validateProperties()
 at mx.managers::LayoutManager/::validateProperties()
 at mx.managers::LayoutManager/::doPhasedInstantiation()
 at mx.core::UIComponent/::callLaterDispatcher2()
 at mx.core::UIComponent/::callLaterDispatcher()

Of course everything worked fine in Beta 2. I've changed all the
child properties to target. I've commented out every occurrance
of mx:AddChild but still get the error at runtime.

What exactly is this error trying to tell me and how do I go about
fixing it?

Bill









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: Detecting client disconnection in FDSb3

2006-05-09 Thread Aldo Bucchi



hmm...
flex.messaging.FlexSession ?

On 5/9/06, Aldo Bucchi [EMAIL PROTECTED] wrote:
 Hi all,

 Narrowing a little on a previous post...

 * how can I detect a (flex) client disconnection ( RTMP ) when using
 the messaging service??

 I am trying to design a chat application on top of FDS but I'm finding
 it insanely different to what I am used to ( FMS / FlashComm ). Any
 pointers??

 What would be the best approach??

 Thanks,
 Aldo

 PD: My flexcoders list reached 7000 gmail conversations today!! jaja
 man this list hast grown exponentially :)
 congrats to the parents... Steve and Ali jajaj.

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



  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: Help with renderer in DataGrid

2006-05-09 Thread flexabledev



Manish, 

Thank you for the pointers! What event would you recommend that I use
in order to call the isItemSelected method when a user clicks on a
row in the DataGrid? Any chance that you could provide me with a quick
pseudo-code example of what a renderer would look like that
conditionally displays an iconic button if the row is selected? 
Thanks in advance...

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

 On 5/8/06, flexabledev [EMAIL PROTECTED] wrote:
  I am struggling with trying to figure out the best way to implement a
  renderer that would conditionally display iconic buttons in a DataGrid
  column if the Row has been selected.
 
 See the isItemSelected method of DataGrid (List).
 
  Also, when variableRowHeight is
  set to true how does one make sure that text is vertically centered
  in the rows whose height has increased due to the custom renderer?
 
 See the verticalAlign style of DataGrid.











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] F2B3 - Problem with ColdFusion/Flex Connectivity Beta 3

2006-05-09 Thread Kleber Voigt



I install the cf/flex conn3 with no erros. So, when I access the http://localhost/flex2gateway, the follow content appears:


headtitleJRun Servlet Error/title/headh1500 No configured channel has an endpoint path '/flex2gatewaynull'./h1body
No configured channel has an endpoint path '/flex2gatewaynull'./body


If I change the path of endpoint in flex-enterprise-services.xml to flex2gatewaynull, the test with the link above its works fine!


Anyone knows with this occurrs? Anyone have a tutorial to use cf with flex to tell me?

Thanks,

Kleber Voigt







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] whare are Flex 1.5 generated SWF's saved?

2006-05-09 Thread flexabledev



When I modify the flex-config file and set:

keep-generated-swfstrue/keep-generated-swfs

I still can't seem to find a directory that contains any SWF files. 
There is a generated folder that has SWO's, but no SWF's. Can
someone tell me how/where to generate/keep SWFs in flex 1.5?











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: whare are Flex 1.5 generated SWF's saved?

2006-05-09 Thread Doug Lowder



Look in the same directory as the main mxml file; the one with the 
mx:Application tag.

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

 When I modify the flex-config file and set:
 
 keep-generated-swfstrue/keep-generated-swfs
 
 I still can't seem to find a directory that contains any SWF files. 
 There is a generated folder that has SWO's, but no SWF's. Can
 someone tell me how/where to generate/keep SWFs in flex 1.5?











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] InstallAnywhere Error

2006-05-09 Thread Clarke Bishop





I'm 
trying to install FlexBuilder2_B3_5-08.exe. I uninstalled all my old stuff and 
launched the installer.

But, I 
get an error: "Please select another location to extract the installer to:" 
There's a Choose button, so I click it and select a temp folder with plenty of 
space. But, nothing happens. It just shows me the error message 
again.

Any 
ideas?

 Clarke





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Re: Detecting client disconnection in FDSb3

2006-05-09 Thread João Fernandes




Aldo, 

I would like to know how to do it. 

I would also like to know how to notify FDS from my CF Server with the changes and not making a refill for each connected client.

There isn't any documentation about this (at least I didn't found any).

João Fernandes

-Original Message-
From: flexcoders@yahoogroups.com on behalf of Aldo Bucchi
Sent: Tue 09-May-06 8:20 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Detecting client disconnection in FDSb3
 
hmm...
flex.messaging.FlexSession ?

On 5/9/06, Aldo Bucchi [EMAIL PROTECTED] wrote:
 Hi all,

 Narrowing a little on a previous post...

 * how can I detect a (flex) client disconnection ( RTMP ) when using
 the messaging service??

 I am trying to design a chat application on top of FDS but I'm finding
 it insanely different to what I am used to ( FMS / FlashComm ). Any
 pointers??

 What would be the best approach??

 Thanks,
 Aldo

 PD: My flexcoders list reached 7000 gmail conversations today!! jaja
 man this list hast grown exponentially :)
 congrats to the parents... Steve and Ali jajaj.

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


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











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  







winmail.dat

RE: [flexcoders] Current Node in tree when drop

2006-05-09 Thread Paul Williams



Hi Franca,

I was hoping to try this out myself before replying, but I haven't as yet. Anyway for beta 3, there is a method on the tree object called calculateDropIndex() which (according to the docs) you should be able to call from your dragOver and dragDrop handlers to work out the drop location within the tree.

Paul

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Franca Daniel
Sent: Tuesday, May 09, 2006 3:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Current Node in tree when drop

 
 How can i get current node of the Tree when i drop
a element from grid to that Tree ?

Help please, Thank you!


  
___ 
Navegue com o Yahoo! Acesso Grátis, assista aos jogos do Brasil na Copa e ganhe prêmios de hora em hora! 
http://br.yahoo.com/artilheirodacopa/



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



 









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] InstallAnywhere Error

2006-05-09 Thread João Fernandes



Clarke,
You have to download it again. 
You didn't get the full file.

João Fernandes
-Original Message-
From: flexcoders@yahoogroups.com on behalf of Clarke Bishop
Sent: Tue 09-May-06 8:22 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] InstallAnywhere Error
 
I'm trying to install FlexBuilder2_B3_5-08.exe. I uninstalled all my old
stuff and launched the installer.
 
But, I get an error: Please select another location to extract the
installer to: There's a Choose button, so I click it and select a temp
folder with plenty of space. But, nothing happens. It just shows me the
error message again.
 
Any ideas?
 
 Clarke







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  







winmail.dat

[flexcoders] Re: Beta 3 runtime error Error: Cannot add a child that is already parented.

2006-05-09 Thread ben.clinkinbeard



http://kuwamoto.org/2006/05/08/tips-for-flex-2-beta-3/










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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Test pls Ignore

2006-05-09 Thread Stacy Young



eom








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] How to bind to something programatically (not in MXML)?

2006-05-09 Thread rigidcode




How do you bind TO something via Actionscript 3, not MXML? All of the
documentation on how to bind to something uses the {} stuff or the
mx:Binding tag, it's very frustrating. How do you do that in
Actionscript?












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Re: Detecting client disconnection in FDSb3

2006-05-09 Thread Aldo Bucchi



hi Joe!

I got a lead

turn on debugging and play with
flex.messaging.FlexSession
take a look at the listeners nearby in the package

best,
Aldo

On 5/9/06, João Fernandes [EMAIL PROTECTED] wrote:

 Aldo,

 I would like to know how to do it.

 I would also like to know how to notify FDS from my CF Server with the changes and not making a refill for each connected client.

 There isn't any documentation about this (at least I didn't found any).

 João Fernandes

 -Original Message-
 From: flexcoders@yahoogroups.com on behalf of Aldo Bucchi
 Sent: Tue 09-May-06 8:20 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Detecting client disconnection in FDSb3

 hmm...
 flex.messaging.FlexSession ?

 On 5/9/06, Aldo Bucchi [EMAIL PROTECTED] wrote:
  Hi all,
 
  Narrowing a little on a previous post...
 
  * how can I detect a (flex) client disconnection ( RTMP ) when using
  the messaging service??
 
  I am trying to design a chat application on top of FDS but I'm finding
  it insanely different to what I am used to ( FMS / FlashComm ). Any
  pointers??
 
  What would be the best approach??
 
  Thanks,
  Aldo
 
  PD: My flexcoders list reached 7000 gmail conversations today!! jaja
  man this list hast grown exponentially :)
  congrats to the parents... Steve and Ali jajaj.
 
  --
  : 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


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

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

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


 





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








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






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] Current Node in tree when drop

2006-05-09 Thread Franca Daniel




--- Paul Williams [EMAIL PROTECTED] escreveu:
 
 Hey Paul,
 
 Thank you once more ! is Beta 3 Avaliable ?
 
 CYA!
 

-
Hi Franca,

I was hoping to try this out myself before replying,
but I haven't as yet. Anyway for beta 3, there is a
method on the tree object called calculateDropIndex()
which (according to the docs) you should be able to
call from your dragOver and dragDrop handlers to work
out the drop location within the tree.

Paul

-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of
Franca Daniel
Sent: Tuesday, May 09, 2006 3:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Current Node in tree when drop

 
 How can i get current node of the Tree when i drop
a element from grid to that Tree ?

Help please, Thank you!


 
___

Navegue com o Yahoo! Acesso Grátis, assista aos jogos
do Brasil na Copa e ganhe prêmios de hora em hora! 
http://br.yahoo.com/artilheirodacopa/



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

Yahoo! Groups Links



 





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

 

 SPONSORED LINKS 
 Web
site design development 
 Computer software development 
 Software design and development 
 
Macromedia flex 
Software development best practice 
 
 
-
 YAHOO! GROUPS LINKS

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

 
-





  
___ 
Novo Yahoo! Messenger com voz: Instale agora e faça ligações de graça. 
http://br.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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Beta 3 Debug Error

2006-05-09 Thread mvbaffa



Hi everybody,

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

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

and Internet Explorer closes

My Internet Explorer is version 6.0.2900 And windows XP SP2

Does anyone knows how to fix this problem 

Thanks in advance












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











  1   2   >