[flexcoders] JMS in FDS 2 and Flex examples

2006-03-26 Thread pk_wasp
Does anyone here (or will be it possible for Adobe in future releases 
to provide) have more complex examples of JMS/FDS 2 and Flex?

Data Services in FDS 2 seem pretty straight forward to use (very nice 
actually), but personally not that familiar with JMS given its not 
something you would normally associate with Web Applications :).

Something I would like to see as an example is a more advance chat JMS 
Application which can create chat rooms, manage connections, handle 
private messages between individual Flex client connections and so on.

Any chance of Adobe providing something like this in the future? :), or 
does anyone know of a JMS example like this somewhere?

thanks.







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

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

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

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





[flexcoders] Re: Flex 2 and FMS 2 for audio conferencing application

2006-03-26 Thread pk_wasp
cool thanks, will give this a go.



--- In flexcoders@yahoogroups.com, Brian Lesser <[EMAIL PROTECTED]> wrote:
>
> Yes, audio and video streaming seem to work. For example to play a 
stream:
> 
> private function play():void{
>if(_inStream) _inStream.close();
>// Create the stream:
>_inStream = new NetStream(_nc);
>// Setup the listeners:
>_inStream.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
>_inStream.addEventListener(SecurityErrorEvent.SECURITY_ERROR, 
> netSecurityError);
>// Play the stream and show the video:
>_inStream.play(_streamName);
>_video.attachNetStream(_inStream);
> }
> 
> And to publish a stream:
> 
> private function publish():void{
>if (_outStream ) _outStream.close();
>_outStream = new NetStream(_nc);
>_outStream.addEventListener(NetStatusEvent.NET_STATUS, 
netStatus);
>_outStream.addEventListener(SecurityErrorEvent.SECURITY_ERROR, 
> netSecurityError);
>
>// Capture video and publish it
>_camera = Camera.getCamera();
>if(_camera){
>   _camera.setMode(160, 120, 6, true);
>   _outStream.attachCamera(_camera);
>   _video.attachCamera(_camera);
>}
>_microphone = Microphone.getMicrophone();
>if(_microphone){
>   _outStream.attachAudio(_microphone);
>}
> }
> 
> Yours truly,
> -Brian
> 
> pk_wasp wrote:
> 
> >I want to build a simple audio conferencing Flex 2 (Beta 2) 
application 
> >(just people using their microphone) with Flash Media Server 2
> >
> >Does anyone have any examples/links/documentation to do this sort 
of 
> >thing? (if its possible)
> >
> >and is the microphone working with this Flash Player 8.5 now?
> >
> >searching through the archive found this:
> >
> >http://www.mail-
archive.com/flexcoders@yahoogroups.com/msg19222.html
> >
> >
> >thanks
> >
> >
> >
> >
> >
> >
> >--
> >Flexcoders Mailing List
> >FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> >Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com 
> >Yahoo! Groups Links
> >
> >
> >
> > 
> >
> >
> >  
> >
> 
> 
> -- 
> 
__
> Brian Lesser
> Assistant Director, Teaching and Technology Support
> Computing and Communications Services
> Ryerson University
> 350 Victoria St.
> Toronto, Ontario   Phone: (416) 979-5000 ext. 6835
> M5B 2K3Fax: (416) 979-5220
> Office: AB48D  E-mail: [EMAIL PROTECTED]
> (Enter through LB66)   Web: 
http://www.ryerson.ca/~blesser
> 
__
>







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

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

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

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





RE: [flexcoders] FB2 :: Flex printing

2006-03-26 Thread Mika Kiljunen










Hi,

My thoughts exactly Dima. 

 

One ill behaving flex 1.5 printing sample
coming _soon_ to a flexcoders
list near you.

 

-Mika

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of David Mendels
Sent: 26. maaliskuuta 2006 15:52
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] FB2 ::
Flex printing



 

Hi,

 

If folks post specific reproducible
errors, we'll make sure they get to the team to be reviewed.  Please do.

 

-David

Adobe



 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Carlos Rovira
Sent: Saturday, March 25, 2006
1:12 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] FB2 ::
Flex printing

Hi,

Printing in Flash is a little pain and should be
revisited by the Flash Player team before others in the Flex team do something
else because I my opinion the problem is in the plataform and not in the
framework. Is great to have nowadays a framework like flex that saves tons of
time but when we reach printing, there's no time calculations and only
experience would help you. 

I experience a lot of problems sometime ago and I
assume that the problem when we try to print vectors and bitmaps borns of the
different display engines in Flash Player 8. It seems Flash Player has a engine
for vectors and other one for bitmaps so printing is affected of this dual
display nature. Hope this issue will enhanced in the future because could be a
frustration for people coming to the Flash Platform in the future 






On 3/23/06, Dima Ulich <[EMAIL PROTECTED]> wrote:




Hi

I have used the package you are pointing at. To
reproduce the bug try to print out a page with
text
and bitmap image (do not embed image load it
dynamically).

When you use FlexPrintJob package, you'll get
bitmap
quality printing which is not good at all for use
in
reports.
  
When you use flash.print.PrintJob package you will
get
vector printing, but you won't get the image
printed. 

My question was would there be an option to print
images and text on one page in good vector
printing
quality? 
Is there a way to set FlexPrintJob to print in
vector
format?

Dima Ulich







--- David Mendels <[EMAIL PROTECTED]>
wrote:

> Hi,
>  
> a) Check out
>
http://livedocs.macromedia.com/labs/1/flex/langref/mx/print/package-deta

> il.html
> b) Please be specific and give us
reproducible bugs
> so we can address as
> many issues as possible and/or log ECRs for future!

>  
> -David
> Adobe
> 
> 
> 
> 
>   From: flexcoders@yahoogroups.com
> [mailto:flexcoders@yahoogroups.com]
On Behalf Of
> Phil Marston
>   Sent:
Wednesday, March 22, 2006 9:26 AM
>   To: flexcoders@yahoogroups.com
>   Subject: Re:
[flexcoders] FB2 :: Flex printing
>   
>   
>   I haven't used
this yet, but our University
> teaching apps would 
>   certainly need
good functionality here so hope
> there isn't a
> problem 
>   like there's
been with the implementation of
> printing in Flash
> in the past.
>   
>   As far back as
a Flash 5 project we hit a bug in
> the Flash
> player to do 
>   with printing
nested movieClips - after months of
> trying to fix
> it 
>   someone from
Macromedia eventually let us know that
> it was a
> known issue 
>   but they
didn't think anyone would notice - as far
> as I'm aware
> it's 
>   never been
fixed.
>   
>   Compared to
all the other features in Flash,
> printing always
> seems to be 
>   a bit of a
poor cousin sort of implementation. 
> Maybe with
> Adobe's print 
>   heritage that
will change . . . :-)
>   
>   Phil
>   
>   Dima Ulich
wrote:
>   > I would
like to ask adobe team. 
>   > Do you
guys have any plans on making printing
> from
>   > flex a
bit easier? 
>   >
>   > I think
it is very important for RIAs to have
> very
>   > flexible
printing feateres so users and devs
> wouldn't
>   > have
problems creating different kind of reports.
> 
>   > For now
it is not event possible to print bitmap
>   > images
aloing with vector graphics. 
>   > To print
images you need to have them embeded or
> use
>   >
printAsBitmap feature, but printAsBitmap makes
> all the
>   > other
things on page look nasty. It won't work
> for
>   > good
reports. 
>   > In Flex
Beta past and new version there was a
>   >
FlexPrintJob package it prints in bitmap format
> which
>   > makes it
impossible for use. And
> flash.print.printJob
>   > package
is pretty hard to use, and it doesn't
> solve
>   > the
problem.
>   >
>   >
Flexcoders, what do you think about printing in
> flex?
>   >
>   > Ulich
Dima
>   >
>   >
>   >
> __
>   > Do You
Yahoo!?
>   > Tired of
spam?  Yahoo! Mail has the best spam
> protection
> around 
>   > http://mail.yahoo.com 
>   >
>   >
>   >

RE: [flexcoders] DataGrid Sort Direction

2006-03-26 Thread Rajni



Hi,Try this code :                                                               Thanks-RajniOn Sat, Mar 25, 2006 at  3:50 AM, Mehdi, Agha wrote:Hi, How can I read sort direction (ASC/DESC) when user click s on Grid column to sort ? Thanks Agha Mehdi <> IDT - eBusiness Program Manager Work: 408.284.8239 Cell  : 209.275.0482 Fax  :  408.284.2766 -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com___YAHOO! GROUPS LINKS    •  Visit your group " flexcoders  " on the web.      •  To unsubscribe from this group, send an email to:   [EMAIL PROTECTED]     •  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service  . ___-- Sent using Laszlo Mail. Try it yourself.http://www.laszlomail.com





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Re: Flex Messaging or J2EE Messaging

2006-03-26 Thread Matt Chotin










I’m currently crying on the plane
back from Europe.  Do you need messages to be
sent from the server to the client (as push)?  If so, you can use the JMS
message support.  If you don’t need info pushed to the clients then using
RPC seems fine to me, though it may be easier to wire into JMS if you already
have those topics available.  If there’s functionality that we’re
not supporting you should let us know what it is so we can decide if we’re
intentionally not supporting it or if there’s just a misunderstanding.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of dos dedos
Sent: Wednesday, March 22, 2006
6:39 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: Flex
Messaging or J2EE Messaging



 

You'll make Adobe cry ...


Venu Vasireddy <[EMAIL PROTECTED]>
wrote:

I want to toss flex messaging
all together for external message exchange
and
RPC Service to speak with JMS Provider, that way I
won't be limited by
the
Flex messaging restrictions and capabilities.


-Original Message-
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
Behalf Of dosdedosmiamigos
Sent: Wednesday, March 22, 2006 3:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flex Messaging or J2EE
Messaging


It seems obvious (maybe I'm missing something)
that you would not want
to exchange messages between Flex clients using
the JMS adapter since
it would not be required. For communication
between external resources
and between external resources and Flex clients
you could use the JMS
adapter since it would be required.

The sample chat application that comes with FDS
follows this model. 

What exactly is your potential concern about this
approach?

--- In flexcoders@yahoogroups.com,
"Venu Vasireddy" <[EMAIL PROTECTED]>
wrote:
>
> Hi,
> 
>  
> 
>  
> 
> I need your opinion regarding one design
decision.
> 
>  
> 
> Our Flex 2.0 based system needs to exchange
messages with external
> systems using JMS compliant messaging
infrastructure.
> 
>  
> 
> My dilemma is either to use "Flex
Messaging" or pure J2EE messaging?
> 
>  
> 
> I convinced Executive team to use J2EE
messaging for external message
> exchange and Flex messaging for intra client
conversations.
> 
>  
> 
> Your opin! ion is highly regarded.
> 
>  
> 
> Thanks
> 
> Venu Vasireddy
> 
> Architect
>






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

Yahoo! Groups Links









 







Yahoo!
Messenger with Voice. PC-to-Phone calls for ridiculously low rates.








--
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] Formatting cells in datagrid

2006-03-26 Thread Stephen Gilson
Is this data entered by the user? There is an example in the doc of a custom 
item editor that uses the NumberFormatter with a DataGrid control to format 
data entered by the user. You can see it here:

http://livedocs.macromedia.com/labs/1/flex20beta2/1131.html

Otherwise, the doc on item renderers should show you what you need to know to 
create a custom item renderer that just formats the data:

http://livedocs.macromedia.com/labs/1/flex20beta2/1118.html

Stephen

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Torben 
Nielsen
Sent: Sunday, March 26, 2006 3:07 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Formatting cells in datagrid

Hi Nicolas,

I have number values like 8, 7.567 or 3.54 that I would like to format so they 
all have 3 decimals like this: 8.000, 7.567 and 3.540 I try to do this with the 
number formatter, but I can't make it work.

I hope that makes it clearer for you.

Thanks.

Best regards.

Torben Nielsen


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Nicholas Lansbury
Sent: venerdì 24 marzo 2006 23.35
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Formatting cells in datagrid

hi torben

you don't say what it is you are trying to format but I expect you need to use 
a cell renderer.

you then reference the cellrenderer from your datagridcell.

hth


Torben Nielsen wrote:

> Hi,
>
>  
>
> I have studied the documentation on the datagrid, but have been unable 
> to find any usefull information about how to format the values of a 
> datagrids cells. I found some information about the NumberFormatter, 
> but I run into trouble when I try to use it on my datagrid.
>
>  
>
> I hope some of you could give me a heads up on how to achieve this.
>
>  
>
> Thanks.
>
>  
>
> Best regards.
>
>  
>
> Torben Nielsen
>
>  
>
>  
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
>
>
> --
> --
> YAHOO! GROUPS LINKS
>
> *  Visit your group "flexcoders
>   " on the web.
>
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>   
> 
>
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>   Service .
>
>
> --
> --
>



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



 





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



 




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

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

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

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





[flexcoders] Re: Streaming video via RTMP into flex 1.5

2006-03-26 Thread Renaun Erickson
In Flex 1.5 the media components are MediaDisplay and MediaController
(almost identical to MX Media Components).  Just like you would use
the old MX components to stream video you can do that in Flex 1.5.

Renaun

--- In flexcoders@yahoogroups.com, "kjlinboomer"
<[EMAIL PROTECTED]> wrote:
>
> Hello,
> 
> I have been trying to get a .flv to stream into the MediaView
> component using a variety of techniques (NetConnection/NetStream) but
> to no avail.  Has anybody been able to stream video into a Flex 1.5
> application via RTMP successfully and if so I would greatly appreciate
> 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 
Yahoo! Groups Links

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

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

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




RE: [flexcoders] Formatting cells in datagrid

2006-03-26 Thread Torben Nielsen
Hi Nicolas,

I have number values like 8, 7.567 or 3.54 that I would like to format so
they all have 3 decimals like this: 8.000, 7.567 and 3.540
I try to do this with the number formatter, but I can't make it work.

I hope that makes it clearer for you.

Thanks.

Best regards.

Torben Nielsen


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Nicholas Lansbury
Sent: venerdì 24 marzo 2006 23.35
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Formatting cells in datagrid

hi torben

you don't say what it is you are trying to format but I expect you need to
use a cell renderer.

you then reference the cellrenderer from your datagridcell.

hth


Torben Nielsen wrote:

> Hi,
>
>  
>
> I have studied the documentation on the datagrid, but have been unable 
> to find any usefull information about how to format the values of a 
> datagrids cells. I found some information about the NumberFormatter, 
> but I run into trouble when I try to use it on my datagrid.
>
>  
>
> I hope some of you could give me a heads up on how to achieve this.
>
>  
>
> Thanks.
>
>  
>
> Best regards.
>
>  
>
> Torben Nielsen
>
>  
>
>  
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
>
>
> --
> --
> YAHOO! GROUPS LINKS
>
> *  Visit your group "flexcoders
>   " on the web.
>
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>   
> 
>
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>   Service .
>
>
> --
> --
>



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



 





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

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

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

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




Re: [flexcoders] Flex 2: Context Menu ... How To?

2006-03-26 Thread Michael Schmalle



Yeah, 

well, it's spring man! Don't get to excied!

Peace, MikeOn 3/26/06, dos dedos <[EMAIL PROTECTED]> wrote:



I was getting excited about those "green Classes" ...I
found language reference is under Adobe Flex Help from the top level
... I hadve already printed all that stuff but the online layout
enables random access a lot more efficiently... the days of looking up
stuff in a hefty manual are over.. i don't know what i was thinking! =)Michael Schmalle <
[EMAIL PROTECTED]> wrote:heh,  I mean non-green classes. :)  Peace, Mike
On 3/26/06, Michael Schmalle <
[EMAIL PROTECTED]> wrote: 
dos,  A trick that I use with the
 help...  Hit help contents.  Then hit Language reference  Then hit Frames  Then look for ContentMenu, then a big example follows the more green Classes.  ;-)  The helpp is really laid out well.
  Peace, MikeOn 3/26/06, dos dedos <
 [EMAIL PROTECTED]> wrote: 
  
LOL .. I'm using the 600 pages of documentation I printed as a pillow
for now... (I can't read while I'm awake [too boring] and when I'm
asleep the words get all scrambled and stuff... my import function is
broke) ... still goingthru the first 200 pagesThanks!111  =)Michael Schmalle <
  [EMAIL PROTECTED]> wrote:Hey,  Seeing as how the Help Content in FB2 works great, this might get you started; 
  package {import flash.ui.ContextMenu;import flash.ui.ContextMenuItem;import flash.events.ContextMenuEvent;import flash.events.ContextMenuEvent
;import flash.display.Sprite; import flash.display.Shape;import flash.util.trace;public class ContextMenuExample extends Sprite {private var myContextMenu:ContextMenu;
private var menuLabel:String = "Reverse Colors";private var textLabel:String = "Right Click";private var redRectangle:Sprite;private var label:TextField;
private var size:uint = 100;private var black:uint = 0x00;private var red:uint = 0xFF;public function ContextMenuExample() {myContextMenu = new ContextMenu();
removeDefaultItems();addCustomMenuItems();myContextMenu.addEventListener(ContextMenuEvent.MENU_SELECT, menuSelectHandler);addChildren();
redRectangle.contextMenu = myContextMenu;}private function addChildren():void {redRectangle = new Sprite();redRectangle.graphics.beginFill(red);
redRectangle.graphics.drawRect(0, 0, size, size);addChild(redRectangle);redRectangle.x = size;redRectangle.y = size;label = createLabel();
redRectangle.addChild(label);}private function removeDefaultItems():void {myContextMenu.hideBuiltInItems();var defaultItems:ContextMenuBuiltInItems = 
myContextMenu.builtInItems;defaultItems.print = true;}private function addCustomMenuItems():void {var item:ContextMenuItem = new ContextMenuItem(menuLabel);
myContextMenu.customItems.push(item);item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, menuItemSelectHandler);}private function menuSelectHandler(event:ContextMenuEvent):void {
trace("menuSelectHandler: " + event);}private function menuItemSelectHandler(event:ContextMenuEvent):void {trace("menuItemSelectHandler: " + event);
var textColor:uint = (label.textColor == black) ? red : black;var bgColor:uint = (label.textColor == black) ? black : red;redRectangle.graphics.clear();
redRectangle.graphics.beginFill(bgColor);redRectangle.graphics.drawRect(0, 0, size, size);label.textColor = textColor;}private function createLabel():TextField {
var txtField:TextField = new TextField();txtField.text = textLabel;return txtField;}};-)Peace, Mike}
  On 3/26/06,  dos dedos <
[EMAIL PROTECTED]> wrote:   
   speaking  of sunday morning hangover, it's CONTEXT not CONTENT :D ... sorrydos dedos <
[EMAIL PROTECTED]  > wrote:HiWhen I right-click on Flash/flex content I get the Adobe "About" context menu...  
It
would be very nice to have a context menu that relates to the
functionality of your application not the functionality of the Flash
player.I believe I had heard it was possible ...
 How?Thanks a lot in advancedos   New Yahoo! Messenger with Voice.  
  Call regular phones from your PC
 and save big. 
  Yahoo! Messenger with Voice.  PC-to-Phone calls for ridiculously low rates.  -- Flexcoders Mailing 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: 
  

Re: [flexcoders] Flex 2: Context Menu ... How To?

2006-03-26 Thread Michael Schmalle



... Then I look at my previous posts...

I say ContentMenu to, duh ContextMenuOn 3/26/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:
Yeah, 

well, it's spring man! Don't get to excied!

Peace, MikeOn 3/26/06, dos dedos <
[EMAIL PROTECTED]> wrote:



I was getting excited about those "green Classes" ...I
found language reference is under Adobe Flex Help from the top level
... I hadve already printed all that stuff but the online layout
enables random access a lot more efficiently... the days of looking up
stuff in a hefty manual are over.. i don't know what i was thinking! =)Michael Schmalle <

[EMAIL PROTECTED]> wrote:heh,  I mean non-green classes. :)  Peace, Mike
On 3/26/06, Michael Schmalle <

[EMAIL PROTECTED]> wrote: 

dos,  A trick that I use with the
 help...  Hit help contents.  Then hit Language reference  Then hit Frames  Then look for ContentMenu, then a big example follows the more green Classes.  ;-)  The helpp is really laid out well.
  Peace, MikeOn 3/26/06, dos dedos <

 [EMAIL PROTECTED]> wrote: 

  
LOL .. I'm using the 600 pages of documentation I printed as a pillow
for now... (I can't read while I'm awake [too boring] and when I'm
asleep the words get all scrambled and stuff... my import function is
broke) ... still goingthru the first 200 pagesThanks!111  =)Michael Schmalle <

  [EMAIL PROTECTED]> wrote:Hey,  Seeing as how the Help Content in FB2 works great, this might get you started; 
  package {import flash.ui.ContextMenu;import flash.ui.ContextMenuItem;import flash.events.ContextMenuEvent;import flash.events.ContextMenuEvent
;import flash.display.Sprite; import flash.display.Shape;import flash.util.trace;public class ContextMenuExample extends Sprite {private var myContextMenu:ContextMenu;
private var menuLabel:String = "Reverse Colors";private var textLabel:String = "Right Click";private var redRectangle:Sprite;private var label:TextField;
private var size:uint = 100;private var black:uint = 0x00;private var red:uint = 0xFF;public function ContextMenuExample() {myContextMenu = new ContextMenu();
removeDefaultItems();addCustomMenuItems();myContextMenu.addEventListener(ContextMenuEvent.MENU_SELECT, menuSelectHandler);addChildren();
redRectangle.contextMenu = myContextMenu;}private function addChildren():void {redRectangle = new Sprite();redRectangle.graphics.beginFill
(red);redRectangle.graphics.drawRect(0, 0, size, size);addChild(redRectangle);redRectangle.x = size;redRectangle.y = size;label = createLabel();
redRectangle.addChild(label);}private function removeDefaultItems():void {myContextMenu.hideBuiltInItems();var defaultItems:ContextMenuBuiltInItems = 
myContextMenu.builtInItems;defaultItems.print = true;}private function addCustomMenuItems():void {var item:ContextMenuItem = new ContextMenuItem(menuLabel);
myContextMenu.customItems.push(item);item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, menuItemSelectHandler);}private function menuSelectHandler(event:ContextMenuEvent):void {
trace("menuSelectHandler: " + event);}private function menuItemSelectHandler(event:ContextMenuEvent):void {trace("menuItemSelectHandler: " + event);
var textColor:uint = (label.textColor == black) ? red : black;var bgColor:uint = (label.textColor == black) ? black : red;redRectangle.graphics.clear();
redRectangle.graphics.beginFill(bgColor);redRectangle.graphics.drawRect(0, 0, size, size);label.textColor = textColor;}private function createLabel():TextField {
var txtField:TextField = new TextField();txtField.text = textLabel;return txtField;}};-)Peace, Mike}

  On 3/26/06,  dos dedos <

[EMAIL PROTECTED]> wrote:   

   speaking  of sunday morning hangover, it's CONTEXT not CONTENT :D ... sorrydos dedos <

[EMAIL PROTECTED]  > wrote:HiWhen I right-click on Flash/flex content I get the Adobe "About" context menu...  
It
would be very nice to have a context menu that relates to the
functionality of your application not the functionality of the Flash
player.I believe I had heard it was possible ...
 How?Thanks a lot in advancedos   New Yahoo! Messenger with Voice.  
  Call regular phones from your PC
 and save big. 

  Yahoo! Messenger with Voice.  PC-to-Phone calls for ridiculously low rates.  -- Flexcoders Mailing List FAQ: 

  http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt  Search Archives: 

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

Re: [flexcoders] Flex 2: Context Menu ... How To?

2006-03-26 Thread dos dedos



I was getting excited about those "green Classes" ...I found language reference is under Adobe Flex Help from the top level ... I hadve already printed all that stuff but the online layout enables random access a lot more efficiently... the days of looking up stuff in a hefty manual are over.. i don't know what i was thinking! =)Michael Schmalle <[EMAIL PROTECTED]> wrote:heh,  I mean non-green classes. :)  Peace, MikeOn 3/26/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: dos,  A trick that I use with the
 help...  Hit help contents.  Then hit Language reference  Then hit Frames  Then look for ContentMenu, then a big example follows the more green Classes.  ;-)  The helpp is really laid out well.  Peace, MikeOn 3/26/06, dos dedos < [EMAIL PROTECTED]> wrote:LOL .. I'm using the 600 pages of documentation I printed as a pillow for now... (I can't read while I'm awake [too boring] and when I'm asleep the words get all scrambled and stuff... my import function is broke) ... still
 goingthru the first 200 pagesThanks!111  =)Michael Schmalle <  [EMAIL PROTECTED]> wrote:Hey,  Seeing as how the Help Content in FB2 works great, this might get you started;   package {import flash.ui.ContextMenu;import flash.ui.ContextMenuItem;import flash.events.ContextMenuEvent;import flash.events.ContextMenuEvent;import flash.display.Sprite; import flash.display.Shape;import flash.util.trace;public class ContextMenuExample extends Sprite {private var myContextMenu:ContextMenu;private var
 menuLabel:String = "Reverse Colors";private var textLabel:String = "Right Click";private var redRectangle:Sprite;private var label:TextField;private var size:uint = 100;private var black:uint = 0x00;private var red:uint = 0xFF;public function ContextMenuExample() {myContextMenu = new ContextMenu();removeDefaultItems();addCustomMenuItems();myContextMenu.addEventListener(ContextMenuEvent.MENU_SELECT, menuSelectHandler);addChildren();redRectangle.contextMenu = myContextMenu;}private function addChildren():void {redRectangle = new Sprite();redRectangle.graphics.beginFill(red);redRectangle.graphics.drawRect(0, 0, size, size);addChild(redRectangle);  
  redRectangle.x = size;redRectangle.y = size;label = createLabel();redRectangle.addChild(label);}private function removeDefaultItems():void {myContextMenu.hideBuiltInItems();var defaultItems:ContextMenuBuiltInItems = myContextMenu.builtInItems;defaultItems.print = true;}private function addCustomMenuItems():void {var item:ContextMenuItem = new ContextMenuItem(menuLabel);myContextMenu.customItems.push(item);item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, menuItemSelectHandler);}private function menuSelectHandler(event:ContextMenuEvent):void {trace("menuSelectHandler: " + event);}private function menuItemSelectHandler(event:ContextMenuEvent):void {  
  trace("menuItemSelectHandler: " + event);var textColor:uint = (label.textColor == black) ? red : black;var bgColor:uint = (label.textColor == black) ? black : red;redRectangle.graphics.clear();redRectangle.graphics.beginFill(bgColor);redRectangle.graphics.drawRect(0, 0, size, size);label.textColor = textColor;}private function createLabel():TextField {var txtField:TextField = new TextField();txtField.text = textLabel;return txtField;}};-)Peace, Mike}  On 3/26/06,  dos dedos <[EMAIL PROTECTED]> wrote:  speaking  of sunday morning hangover, it's CONTEXT not CONTENT :D ... sorrydos dedos <[EMAIL PROTECTED]  > wrote:HiWhen I right-click on Flash/flex content I get the Adobe "About" context menu...  It would be very nice to have a context menu that relates to the functionality of your application not the functionality of the Flash player.I believe I had heard it was possible ...
 How?Thanks a lot in advancedos   New Yahoo! Messenger with Voice.Call regular phones from your PC and save big.   Yahoo! Messenger with Voice.  PC-to-Phone calls for ridiculously low rates.  -- Flexcoders Mailing List FAQ:   http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt  Search Archives:   http://www.mail-archive.com/flexcoders%40yahoogroups.comYAHOO! 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. 
 -- What goes up, does come down.   

Re: [flexcoders] [Flex 2 beta 2 - Cairngorm 2 - AMFPHP]

2006-03-26 Thread Oriol Gual



Hi,I've been working also on this, and I couldn't do it with the service locator, cause I didn't know how. I know it's not the best solution but I've defined the gateway in the model locator, and then, on each command I do this:
var model:ModelLocator = ModelLocator.getInstance();model.gateway.call( "service.method", new Responder(onResult, onFault), args);    My problem now is with VO, I always get a badversion error, and I think I've mapped it correctly at 
advancedsettings.php, any one has had the same problem?Oriol.2006/3/26, Alex Uhlmann <[EMAIL PROTECTED]>:









Hi William,
 
usually, you would define the AMFPHP interface in 
Services.mxml, retrieve it via ServiceLocator from your Delegate. But 
ServiceLocator can only return you either mx.rpc.AbstractService or 
mx.rpc.http.HTTPService (for Flex2 's out of the box RPC services). However you 
could create the AMFPHP specific details in your Delegate. But better would be 
to add a method to Cairngorm's ServiceLocator that either returns a generic 
object or an object compatible to AMFPHP (RemotingConnection or 
NetConnection). Let me know how you get on.
 
Best,
Alex
 


  
  

  


  
  

Alex UhlmannConsultant (Rich Internet 
Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, 
South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338 6969
m: +44 (0) 7917 428 951 [EMAIL PROTECTED] 
  
 


From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of William 
LambéSent: 25 March 2006 22:10To: 
flexcoders@yahoogroups.comSubject: [flexcoders] [Flex 2 beta 2 - 
Cairngorm 2 - AMFPHP]


Hello guys, 

 
Did someone try to use Cairngom 
(architectural framework for flex) with 
AMFPHP ?
 
I ask because I don't see clearly (in the sample 
Cairngorm Login) how to change LoginDelegate and Services.mxml to use it with 
AMFPHP… (for exemple where to introduce the RemotingConnection of Tweenpix 
(
http://www.tweenpix.net/blog/index.php?2006/01/03/543-hello-world-en-amfphp-avec-flex20 
))
 
If you tried one time, coud you explain us 
please.
 
Thank you, 
 
William.
 





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

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









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 

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



  















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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] [Flex 2 beta 2 - Cairngorm 2 - AMFPHP]

2006-03-26 Thread Oriol Gual



I've forgot to say that I import flash.net.Responder instead of org.nevis.cairngorm.Responder2006/3/26, Oriol Gual <[EMAIL PROTECTED]>:
Hi,I've been working also on this, and I couldn't do it with the service locator, cause I didn't know how. I know it's not the best solution but I've defined the gateway in the model locator, and then, on each command I do this:
var model:ModelLocator = ModelLocator.getInstance();model.gateway.call( "service.method", new Responder(onResult, onFault), args);    My problem now is with VO, I always get a badversion error, and I think I've mapped it correctly at 
advancedsettings.php, any one has had the same problem?Oriol.2006/3/26, Alex Uhlmann <
[EMAIL PROTECTED]>:









Hi William,
 
usually, you would define the AMFPHP interface in 
Services.mxml, retrieve it via ServiceLocator from your Delegate. But 
ServiceLocator can only return you either mx.rpc.AbstractService or 
mx.rpc.http.HTTPService (for Flex2 's out of the box RPC services). However you 
could create the AMFPHP specific details in your Delegate. But better would be 
to add a method to Cairngorm's ServiceLocator that either returns a generic 
object or an object compatible to AMFPHP (RemotingConnection or 
NetConnection). Let me know how you get on.
 
Best,
Alex
 


  
  

  


  
  

Alex UhlmannConsultant (Rich Internet 
Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, 
South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338 6969
m: +44 (0) 7917 428 951 [EMAIL PROTECTED] 
  
 


From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of William 
LambéSent: 25 March 2006 22:10To: 
flexcoders@yahoogroups.comSubject: [flexcoders] [Flex 2 beta 2 - 
Cairngorm 2 - AMFPHP]


Hello guys, 

 
Did someone try to use Cairngom 
(architectural framework for flex) with 
AMFPHP ?
 
I ask because I don't see clearly (in the sample 
Cairngorm Login) how to change LoginDelegate and Services.mxml to use it with 
AMFPHP… (for exemple where to introduce the RemotingConnection of Tweenpix 
(

http://www.tweenpix.net/blog/index.php?2006/01/03/543-hello-world-en-amfphp-avec-flex20 
))
 
If you tried one time, coud you explain us 
please.
 
Thank you, 
 
William.
 





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


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










  
  
SPONSORED LINKS
  
  
  



Web site design development
  
  


Computer software development
  
  


Software design and development
  
  




Macromedia flex
  
  


Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 


   To unsubscribe from this group, send an email to: 

[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service

.



  

















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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Flex 2: Context Menu ... How To?

2006-03-26 Thread Michael Schmalle



heh,

I mean non-green classes. :)

Peace, MikeOn 3/26/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:
dos,

A trick that I use with the help...

Hit help contents.

Then hit Language reference

Then hit Frames

Then look for ContentMenu, then a big example follows the more green Classes.

;-)

The helpp is really laid out well.

Peace, MikeOn 3/26/06, dos dedos <
[EMAIL PROTECTED]> wrote:



LOL .. I'm using the 600 pages of documentation I printed as a pillow
for now... (I can't read while I'm awake [too boring] and when I'm
asleep the words get all scrambled and stuff... my import function is
broke) ... still goingthru the first 200 pagesThanks!111  =)Michael Schmalle <

[EMAIL PROTECTED]> wrote:Hey,  Seeing as how the Help Content in FB2 works great, this might get you started;
  package {import flash.ui.ContextMenu;import flash.ui.ContextMenuItem;import flash.events.ContextMenuEvent;import flash.events.ContextMenuEvent;import 
flash.display.Sprite; import flash.display.Shape;import flash.util.trace;public class ContextMenuExample extends Sprite {private var myContextMenu:ContextMenu;private
 var menuLabel:String = "Reverse Colors";private var textLabel:String = "Right Click";private var redRectangle:Sprite;private var label:TextField;private var size:uint = 100;
private var black:uint = 0x00;private var red:uint = 0xFF;public function ContextMenuExample() {myContextMenu = new ContextMenu();removeDefaultItems();
addCustomMenuItems();myContextMenu.addEventListener(ContextMenuEvent.MENU_SELECT, menuSelectHandler);addChildren();redRectangle.contextMenu = myContextMenu;
}private function addChildren():void {redRectangle = new Sprite();redRectangle.graphics.beginFill(red);redRectangle.graphics.drawRect(0, 0, size, size);
addChild(redRectangle);redRectangle.x = size;redRectangle.y = size;label = createLabel();redRectangle.addChild(label);}
private function removeDefaultItems():void {myContextMenu.hideBuiltInItems();var defaultItems:ContextMenuBuiltInItems = myContextMenu.builtInItems;defaultItems.print
 = true;}private function addCustomMenuItems():void {var item:ContextMenuItem = new ContextMenuItem(menuLabel);myContextMenu.customItems.push(item);
item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, menuItemSelectHandler);}private function menuSelectHandler(event:ContextMenuEvent):void {trace("menuSelectHandler: " + event);
}private function menuItemSelectHandler(event:ContextMenuEvent):void {trace("menuItemSelectHandler: " + event);var textColor:uint = (label.textColor
 == black) ? red : black;var bgColor:uint = (label.textColor == black) ? black : red;redRectangle.graphics.clear();redRectangle.graphics.beginFill(bgColor);
redRectangle.graphics.drawRect(0, 0, size, size);label.textColor = textColor;}private function createLabel():TextField {var txtField:TextField = new TextField();
txtField.text = textLabel;return txtField;}};-)Peace, Mike} 
On 3/26/06, 
dos dedos <[EMAIL PROTECTED]> wrote:

speaking
 of sunday morning hangover, it's CONTEXT not CONTENT :D ... sorrydos dedos <[EMAIL PROTECTED] 
> wrote:HiWhen I right-click on Flash/flex content I get the Adobe "About" context menu... 
It
would be very nice to have a context menu that relates to the
functionality of your application not the functionality of the Flash
player.I believe I had heard it was possible ... How?Thanks a lot in advancedos   New Yahoo! Messenger with Voice. 

 Call regular phones from your PC and save big. 

Yahoo! Messenger with Voice.  PC-to-Phone calls for ridiculously low rates.  -- Flexcoders Mailing 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.   

 -- What goes up, does come down. 


		New Yahoo! Messenger with Voice. 

Call regular phones from your PC and save big.





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



We

Re: [flexcoders] Flex 2: Context Menu ... How To?

2006-03-26 Thread Michael Schmalle



dos,

A trick that I use with the help...

Hit help contents.

Then hit Language reference

Then hit Frames

Then look for ContentMenu, then a big example follows the more green Classes.

;-)

The helpp is really laid out well.

Peace, MikeOn 3/26/06, dos dedos <[EMAIL PROTECTED]> wrote:



LOL .. I'm using the 600 pages of documentation I printed as a pillow
for now... (I can't read while I'm awake [too boring] and when I'm
asleep the words get all scrambled and stuff... my import function is
broke) ... still goingthru the first 200 pagesThanks!111  =)Michael Schmalle <
[EMAIL PROTECTED]> wrote:Hey,  Seeing as how the Help Content in FB2 works great, this might get you started;
  package {import flash.ui.ContextMenu;import flash.ui.ContextMenuItem;import flash.events.ContextMenuEvent;import flash.events.ContextMenuEvent;import 
flash.display.Sprite; import flash.display.Shape;import flash.util.trace;public class ContextMenuExample extends Sprite {private var myContextMenu:ContextMenu;private
 var menuLabel:String = "Reverse Colors";private var textLabel:String = "Right Click";private var redRectangle:Sprite;private var label:TextField;private var size:uint = 100;
private var black:uint = 0x00;private var red:uint = 0xFF;public function ContextMenuExample() {myContextMenu = new ContextMenu();removeDefaultItems();
addCustomMenuItems();myContextMenu.addEventListener(ContextMenuEvent.MENU_SELECT, menuSelectHandler);addChildren();redRectangle.contextMenu = myContextMenu;
}private function addChildren():void {redRectangle = new Sprite();redRectangle.graphics.beginFill(red);redRectangle.graphics.drawRect(0, 0, size, size);
addChild(redRectangle);redRectangle.x = size;redRectangle.y = size;label = createLabel();redRectangle.addChild(label);}
private function removeDefaultItems():void {myContextMenu.hideBuiltInItems();var defaultItems:ContextMenuBuiltInItems = myContextMenu.builtInItems;defaultItems.print
 = true;}private function addCustomMenuItems():void {var item:ContextMenuItem = new ContextMenuItem(menuLabel);myContextMenu.customItems.push(item);
item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, menuItemSelectHandler);}private function menuSelectHandler(event:ContextMenuEvent):void {trace("menuSelectHandler: " + event);
}private function menuItemSelectHandler(event:ContextMenuEvent):void {trace("menuItemSelectHandler: " + event);var textColor:uint = (label.textColor
 == black) ? red : black;var bgColor:uint = (label.textColor == black) ? black : red;redRectangle.graphics.clear();redRectangle.graphics.beginFill(bgColor);
redRectangle.graphics.drawRect(0, 0, size, size);label.textColor = textColor;}private function createLabel():TextField {var txtField:TextField = new TextField();
txtField.text = textLabel;return txtField;}};-)Peace, Mike} On 3/26/06, 
dos dedos <[EMAIL PROTECTED]> wrote:
speaking
 of sunday morning hangover, it's CONTEXT not CONTENT :D ... sorrydos dedos <[EMAIL PROTECTED] 
> wrote:HiWhen I right-click on Flash/flex content I get the Adobe "About" context menu... 
It
would be very nice to have a context menu that relates to the
functionality of your application not the functionality of the Flash
player.I believe I had heard it was possible ... How?Thanks a lot in advancedos   New Yahoo! Messenger with Voice. 

 Call regular phones from your PC and save big. 
Yahoo! Messenger with Voice.  PC-to-Phone calls for ridiculously low rates.  -- Flexcoders Mailing 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.   
 -- What goes up, does come down. 

		New Yahoo! Messenger with Voice. 
Call regular phones from your PC and save big.





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

Re: [flexcoders] Flex 2: Context Menu ... How To?

2006-03-26 Thread dos dedos



LOL .. I'm using the 600 pages of documentation I printed as a pillow for now... (I can't read while I'm awake [too boring] and when I'm asleep the words get all scrambled and stuff... my import function is broke) ... still goingthru the first 200 pagesThanks!111  =)Michael Schmalle <[EMAIL PROTECTED]> wrote:Hey,  Seeing as how the Help Content in FB2 works great, this might get you started;  package {import flash.ui.ContextMenu;import flash.ui.ContextMenuItem;import flash.events.ContextMenuEvent;import flash.events.ContextMenuEvent;import flash.display.Sprite; import flash.display.Shape;import flash.util.trace;public class ContextMenuExample extends Sprite {private var myContextMenu:ContextMenu;private
 var menuLabel:String = "Reverse Colors";private var textLabel:String = "Right Click";private var redRectangle:Sprite;private var label:TextField;private var size:uint = 100;private var black:uint = 0x00;private var red:uint = 0xFF;public function ContextMenuExample() {myContextMenu = new ContextMenu();removeDefaultItems();addCustomMenuItems();myContextMenu.addEventListener(ContextMenuEvent.MENU_SELECT, menuSelectHandler);addChildren();redRectangle.contextMenu = myContextMenu;}private function addChildren():void {redRectangle = new Sprite();redRectangle.graphics.beginFill(red);redRectangle.graphics.drawRect(0, 0, size, size);addChild(redRectangle);redRectangle.x =
 size;redRectangle.y = size;label = createLabel();redRectangle.addChild(label);}private function removeDefaultItems():void {myContextMenu.hideBuiltInItems();var defaultItems:ContextMenuBuiltInItems = myContextMenu.builtInItems;defaultItems.print = true;}private function addCustomMenuItems():void {var item:ContextMenuItem = new ContextMenuItem(menuLabel);myContextMenu.customItems.push(item);item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, menuItemSelectHandler);}private function menuSelectHandler(event:ContextMenuEvent):void {trace("menuSelectHandler: " + event);}private function menuItemSelectHandler(event:ContextMenuEvent):void {trace("menuItemSelectHandler: " + event);   
 var textColor:uint = (label.textColor == black) ? red : black;var bgColor:uint = (label.textColor == black) ? black : red;redRectangle.graphics.clear();redRectangle.graphics.beginFill(bgColor);redRectangle.graphics.drawRect(0, 0, size, size);label.textColor = textColor;}private function createLabel():TextField {var txtField:TextField = new TextField();txtField.text = textLabel;return txtField;}};-)Peace, Mike} On 3/26/06, dos dedos <[EMAIL PROTECTED]> wrote:speaking
 of sunday morning hangover, it's CONTEXT not CONTENT :D ... sorrydos dedos <[EMAIL PROTECTED] > wrote:HiWhen I right-click on Flash/flex content I get the Adobe "About" context menu... It would be very nice to have a context menu that relates to the functionality of your application not the functionality of the Flash player.I believe I had heard it was possible ... How?Thanks a lot in advancedos   New Yahoo! Messenger with Voice. 
 Call regular phones from your PC and save big. Yahoo! Messenger with Voice.  PC-to-Phone calls for ridiculously low rates.  -- Flexcoders Mailing 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.-- What goes up, does come down. 
		New Yahoo! Messenger with Voice. Call regular phones from your PC and save big.





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

Re: [flexcoders] Flex 2: Context Menu ... How To?

2006-03-26 Thread dos dedos



awesome! thank you ... now i can see the light at the end of the tunnel--p.s. one day they'll have intravenous documentation and ignorance vaccines for platform n00bs [EMAIL PROTECTED] wrote:There are good examples in the docs for this. I haven't tested this code but generally you can do something like ---  myItem.contextMenu=generateContextMenu();// set the context menu   // generate the context menu public function generateContextMenu():ContextMenu{  var menu:ContextMenu=new ContextMenu();  menu.hideBuiltInItems();  var item:ContextMenuItem=new ContextMenuItem("tester");  menu.customItems.push(item); 
 item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,itemHandler)  return(menu);  } //handler to handle the press private function itemHandler(event:ContextMenuEvent):void{ trace("the menu item was hit"); }  /  > speaking of sunday morning hangover, it's CONTEXT not CONTENT :D ... > sorry > > dos dedos <[EMAIL PROTECTED]> wrote: > Hi > > When I right-click on Flash/flex content I get the Adobe "About" context > menu... > > It would be very nice to have a context menu that relates to the > functionality of your application not the functionality of the Flash > player. > > I believe I had heard it was possible ... > > How? > > Thanks a lot in advance > > > dos > > - >
 New Yahoo! Messenger with Voice. Call regular phones from your PC and > save big. > >   -- >  Flexcoders Mailing 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. > > > >
 - > > > > > > - > Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously low > 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





  




  
  
  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: Context Menu ... How To?

2006-03-26 Thread Michael Schmalle



Hey,

Seeing as how the Help Content in FB2 works great, this might get you started;

package {import flash.ui.ContextMenu;import flash.ui.ContextMenuItem;import flash.events.ContextMenuEvent;import flash.events.ContextMenuEvent;import flash.display.Sprite;
import flash.display.Shape;import flash.util.trace;public class ContextMenuExample extends Sprite {private var myContextMenu:ContextMenu;private var menuLabel:String = "Reverse Colors";
private var textLabel:String = "Right Click";private var redRectangle:Sprite;private var label:TextField;private var size:uint = 100;private var black:uint = 0x00;
private var red:uint = 0xFF;public function ContextMenuExample() {myContextMenu = new ContextMenu();removeDefaultItems();addCustomMenuItems();
myContextMenu.addEventListener(ContextMenuEvent.MENU_SELECT, menuSelectHandler);addChildren();redRectangle.contextMenu = myContextMenu;}private function addChildren():void {
redRectangle = new Sprite();redRectangle.graphics.beginFill(red);redRectangle.graphics.drawRect(0, 0, size, size);addChild(redRectangle);redRectangle.x
 = size;redRectangle.y = size;label = createLabel();redRectangle.addChild(label);}private function removeDefaultItems():void {myContextMenu.hideBuiltInItems
();var defaultItems:ContextMenuBuiltInItems = myContextMenu.builtInItems;defaultItems.print = true;}private function addCustomMenuItems():void {var item:ContextMenuItem = new ContextMenuItem(menuLabel);
myContextMenu.customItems.push(item);item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, menuItemSelectHandler);}private function menuSelectHandler(event:ContextMenuEvent):void {
trace("menuSelectHandler: " + event);}private function menuItemSelectHandler(event:ContextMenuEvent):void {trace("menuItemSelectHandler: " + event);
var textColor:uint = (label.textColor == black) ? red : black;var bgColor:uint = (label.textColor == black) ? black : red;redRectangle.graphics.clear();redRectangle.graphics.beginFill
(bgColor);redRectangle.graphics.drawRect(0, 0, size, size);label.textColor = textColor;}private function createLabel():TextField {var txtField:TextField = new TextField();
txtField.text = textLabel;return txtField;}};-)Peace, Mike}
On 3/26/06, dos dedos <[EMAIL PROTECTED]> wrote:



speaking of sunday morning hangover, it's CONTEXT not CONTENT :D ... sorrydos dedos <[EMAIL PROTECTED]
> wrote:HiWhen I right-click on Flash/flex content I get the Adobe "About" context menu...
It
would be very nice to have a context menu that relates to the
functionality of your application not the functionality of the Flash
player.I believe I had heard it was possible ... How?Thanks a lot in advancedos   New Yahoo! Messenger with Voice. 
Call regular phones from your PC and save big.
	
		Yahoo! Messenger with Voice.
 PC-to-Phone calls for ridiculously low rates.





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




  








-- What goes up, does come down.






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





  




  
  
  YAHOO! GROUPS LINKS



   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: Context Menu ... How To?

2006-03-26 Thread stacey
There are good examples in the docs for this.
I haven't tested this code but generally you can do something like ---

myItem.contextMenu=generateContextMenu();// set the context menu


// generate the context menu
public function generateContextMenu():ContextMenu{
 var menu:ContextMenu=new ContextMenu();
 menu.hideBuiltInItems();
 var item:ContextMenuItem=new ContextMenuItem("tester");
 menu.customItems.push(item);
 item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,itemHandler)
 return(menu);

}
//handler to handle the press
private function itemHandler(event:ContextMenuEvent):void{
trace("the menu item was hit");
}

/

> speaking of sunday morning hangover, it's CONTEXT not CONTENT :D ...
> sorry
>
> dos dedos <[EMAIL PROTECTED]> wrote:
> Hi
>
> When I right-click on Flash/flex content I get the Adobe "About" context
> menu...
>
> It would be very nice to have a context menu that relates to the
> functionality of your application not the functionality of the Flash
> player.
>
> I believe I had heard it was possible ...
>
> How?
>
> Thanks a lot in advance
>
>
> dos
>
> -
> New Yahoo! Messenger with Voice. Call regular phones from your PC and
> save big.
>
>   --
>  Flexcoders Mailing 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.
>
>
>
> -
>
>
>
>
>
> -
> Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously low
> rates.





--
Flexcoders Mailing 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] Error #1009 Troubleshooting

2006-03-26 Thread Brendan Meutzner



Reposting this as it got buried in a previous post with an inaccurate subject...Can someone from Adobe shed some light on this type of error?  This is occuring within a repeater that has it's dataProvider dynamically changed.  I've read the description, and have a general understanding of why this is occurring, but would appreciate it if someone could help me with troubleshooting it.
Thanks,Brendan
[SWF] C:\Inetpub\wwwroot\MyFile\bin\MyFile-debug.swf - 1,191,862 bytes after decompression
TypeError: Error #1009: null has no properties.
at mx.styles::StyleManager$/http://www.adobe.com/2006/flex/mx/internal::initProtoChainRoots()[C:\dev\beta2\sdk\frameworks\mx\styles\StyleManager.as:240]
at products.layout::MainGameLayout/http://www.adobe.com/2006/flex/mx/internal::_MainGameLayout_StylesInit()
at products.layout::MainGameLayout$iinit()[C:\dev\beta2\sdk\frameworks\mx\core\UIComponentDescriptor.as:5]
at containers::ContentContainer$cinit()
at global$init()[C:\Inetpub\wwwroot\BestBuy\containers\ContentContainer.mxml:15]
at _containers_ContentContainerWatcherSetupUtil$/init()
at mx.managers::SystemManager/mx.managers:SystemManager::frameEndHandler()[C:\dev\beta2\sdk\frameworks\mx\managers\SystemManager.as:1830]







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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Flex 2: Context Menu ... How To?

2006-03-26 Thread dos dedos



speaking of sunday morning hangover, it's CONTEXT not CONTENT :D ... sorrydos dedos <[EMAIL PROTECTED]> wrote:HiWhen I right-click on Flash/flex content I get the Adobe "About" context menu...It would be very nice to have a context menu that relates to the functionality of your application not the functionality of the Flash player.I believe I had heard it was possible ... How?Thanks a lot in advancedos   New Yahoo! Messenger with Voice. Call regular phones from your PC and save big.
	
		Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously low rates.





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Flex 2: Content Menu ... How To?

2006-03-26 Thread dos dedos



HiWhen I right-click on Flash/flex content I get the Adobe "About" context menu...It would be very nice to have a context menu that relates to the functionality of your application not the functionality of the Flash player.I believe I had heard it was possible ... How?Thanks a lot in advancedos
		New Yahoo! Messenger with Voice. Call regular phones from your PC and save big.





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Yahoo! Maps API

2006-03-26 Thread Matthew Simpson



Thanks for all the assistance folks!MatthewDavid Mendels <[EMAIL PROTECTED]> wrote:Hi,  I can add that we expect a Flash Player 8.5 (AS3/Flex2) revision so this will be possible in the relatively near term.  -David   > -Original Message- > From: flexcoders@yahoogroups.com  > [mailto:[EMAIL PROTECTED] On Behalf Of Mike Chambers > Sent: Sunday, March 26, 2006 1:16 AM > To: flexcoders@yahoogroups.com > Subject: Re: [flexcoders] Yahoo! Maps API >  > That is correct. >  > mike chambers >  > [EMAIL PROTECTED] >  > Brendan Meutzner wrote: > > Hey Matthew, > >  > > I'm going to go out on a limb here and suggest that the  > current swc is  > > only
 compatible with 1.5.  When I tried importing the it into a 2.0  > > project, it threw errors. > >  > > Someone correct me if I'm wrong. > >  > > Brendan > >  >  >  > -- > Flexcoders Mailing List > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > Search Archives:  > http://www.mail-archive.com/flexcoders%40yahoogroups.com > Yahoo! Groups Links >  >  >  >   >  >  >  >  
		New Yahoo! Messenger with Voice. Call regular phones from your PC for low, low rates.





--
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] need help with programatic skin

2006-03-26 Thread shemeshkale
hi,
i m working with the basic HALO skin.
i m trying to change some things without luck.

PLEASE HELP:

- how do i change the padding (the space between the text and the
border) inside a button? i want to make a deafult 2px.
- i want to make a top and bottom border on the selected item of a tree.
- i want to change the gray arrow in the tree to a +\- sign.

how do i do this?









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

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

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

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





Re: [flexcoders] Flex 2 and FMS 2 for audio conferencing application

2006-03-26 Thread dos dedos



re bandwidth... not thinking of competing with Yahoo IM .. only considering for building nice looking, branded corporate 'productivity' applications that run inside the browser .. I assume Flex 2 (more than Flash, since it has the desired RIA features) is a good choice Thanks for info about the FMS pieceI should be buying Adobe stock :)Brian Lesser <[EMAIL PROTECTED]> wrote:Hi Dos, Well, you could use Flash or Flex to make a simple IP-based audio  system. Ofcourse, it will not be truly point-to-point in the sense that  there are no swf-to-swf connections. All communications run through the  Flash Media Server: swf-fms-swf. Consequently you still must pay the  bandwidth costs used by all those connections and the audio flowing over  them from/to the server. For a reasonably secure system you
 will need to authenticate users  attempting to connect to the server. Yours truly, -Brian  dos dedos wrote:  >Is it realistic to suggest that Flex 2 could be used (with minimal server side processing [e.g. just to work around flash-to-flash security restriction]) to build a point-to-point VoIP application?  > >That would be nice to try one day ...  > >Brian Lesser <[EMAIL PROTECTED]> wrote:    Yes, audio and video streaming seem to work. For example to play a stream: >  > private function play():void{ >    if(_inStream) _inStream.close(); >    // Create the stream: >    _inStream = new NetStream(_nc); >    // Setup the listeners: >    _inStream.addEventListener(NetStatusEvent.NET_STATUS, netStatus); >   
 _inStream.addEventListener(SecurityErrorEvent.SECURITY_ERROR,  > netSecurityError); >    // Play the stream and show the video: >    _inStream.play(_streamName); >    _video.attachNetStream(_inStream); > } >  > And to publish a stream: >  > private function publish():void{ >    if (_outStream ) _outStream.close(); >    _outStream = new NetStream(_nc); >    _outStream.addEventListener(NetStatusEvent.NET_STATUS, netStatus); >    _outStream.addEventListener(SecurityErrorEvent.SECURITY_ERROR,  > netSecurityError); >     >    // Capture video and publish it >    _camera = Camera.getCamera(); >   
 if(_camera){ >   _camera.setMode(160, 120, 6, true); >   _outStream.attachCamera(_camera); >   _video.attachCamera(_camera); >    } >    _microphone = Microphone.getMicrophone(); >    if(_microphone){ >   _outStream.attachAudio(_microphone); >    } > } >  > Yours truly, > -Brian >  > pk_wasp wrote: >  > >I want to build a simple audio conferencing Flex 2 (Beta 2) application  > >(just people using their microphone) with Flash Media Server 2 > > > >Does anyone have any examples/links/documentation to do this sort of  > >thing? (if its possible) > > > >and is the microphone working with this Flash Player 8.5 now?
 > > > >searching through the archive found this: > > > >http://www.mail-archive.com/flexcoders@yahoogroups.com/msg19222.html > > > > > >thanks > > > > > > > > > > > > > >-- > >Flexcoders Mailing List > >FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > >Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com  > >Yahoo! Groups Links > > > > > > > >  > > > > > >   > > >  >  > --  >
 __ > Brian Lesser > Assistant Director, Teaching and Technology Support > Computing and Communications Services > Ryerson University > 350 Victoria St. > Toronto, Ontario   Phone: (416) 979-5000 ext. 6835 > M5B 2K3    Fax: (416) 979-5220 > Office: AB48D  E-mail: [EMAIL PROTECTED] > (Enter through LB66)   Web: http://www.ryerson.ca/~blesser
 > __ >  >  > >  -- > Flexcoders Mailing 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.  >  >     >- >  >  >  > >__ >Do You Yahoo!? >Tired of spam?  Yahoo! Mail has the best spam protection around  >http://mail.yahoo.com  > >   >   --  __ Brian Lesser Assistant Director, Teaching and Technology Support Computing and Communications Services Ryerson University 350 Victoria St. Toronto, Ontario   Phone: (416) 979-5000 ext. 6835 M5B
 2K3    Fax: (416) 979-5220 Office: AB48D  E-mail: [EMAIL PROTECTED] (Enter through LB66)   Web: http://www.ryerson.ca/~blesser ___

RE: [flexcoders] Re: Flex2: version control plugin

2006-03-26 Thread dos dedos



Thanks"Kelly @ Dekayd Media Inc." <[EMAIL PROTECTED]> wrote:I use MyEclipse with Hibernate.     It’s lacking some features so I also use Hibernate Synchronizer.     The combination of the two works pretty well.        --Kelly           From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of dos dedos Sent: Saturday, March 25, 2006 9:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Flex2: version control plugin    CVS is accessible in Flexbuilder (under Window->Show View->Other->add CVS repository)  I just never looked under "Other" before.  I checked out Eclipse 3.2 and it's looks pretty solid. I'll definitely use the
 subversion plugin.  Anyone working with a Hibrenate plugin for Eclipse? I found this one http://myeclipseide.com .. it may be worth checking out.  Thanks for the info  Mike Chambers <[EMAIL PROTECTED]> wrote:  Works well with FlexBuilder also.  Info on how to install it here:  http://labs.macromedia.com/wiki/index.php/Flex_Builder:resources:plugins:subversion  mike chambers  [EMAIL PROTECTED]  Kelly @ Dekayd Media Inc. wrote: > Subclipse is a great plugin. >  > It is definitely a timesaver. >  >  > --Kelly >  >  >  >  >  >  > -Original Message- > From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On > Behalf Of Dave Wolf > Sent: Saturday, March 25, 2006 4:06 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Flex2: version control plugin >  > There is also a subversion plugin for eclipse, although I havent used > it.  We use Eclipse
 as the Java editor and compiler, and then checkin > the changes using Tortoise for subversion. >  > Check out the ANT view in Eclipse as well.  Its pretty slick. >    New Yahoo! Messenger with Voice. Call regular phones from your PC and save big.
		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





  




  
  
  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 and FMS 2 for audio conferencing application

2006-03-26 Thread Brian Lesser
Hi Dos,
Well, you could use Flash or Flex to make a simple IP-based audio 
system. Ofcourse, it will not be truly point-to-point in the sense that 
there are no swf-to-swf connections. All communications run through the 
Flash Media Server: swf-fms-swf. Consequently you still must pay the 
bandwidth costs used by all those connections and the audio flowing over 
them from/to the server.
For a reasonably secure system you will need to authenticate users 
attempting to connect to the server.
Yours truly,
-Brian

dos dedos wrote:

>Is it realistic to suggest that Flex 2 could be used (with minimal server side 
>processing [e.g. just to work around flash-to-flash security restriction]) to 
>build a point-to-point VoIP application? 
>
>That would be nice to try one day ... 
>
>Brian Lesser <[EMAIL PROTECTED]> wrote:Yes, audio and video streaming seem 
>to work. For example to play a stream:
> 
> private function play():void{
>if(_inStream) _inStream.close();
>// Create the stream:
>_inStream = new NetStream(_nc);
>// Setup the listeners:
>_inStream.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
>_inStream.addEventListener(SecurityErrorEvent.SECURITY_ERROR, 
> netSecurityError);
>// Play the stream and show the video:
>_inStream.play(_streamName);
>_video.attachNetStream(_inStream);
> }
> 
> And to publish a stream:
> 
> private function publish():void{
>if (_outStream ) _outStream.close();
>_outStream = new NetStream(_nc);
>_outStream.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
>_outStream.addEventListener(SecurityErrorEvent.SECURITY_ERROR, 
> netSecurityError);
>
>// Capture video and publish it
>_camera = Camera.getCamera();
>if(_camera){
>   _camera.setMode(160, 120, 6, true);
>   _outStream.attachCamera(_camera);
>   _video.attachCamera(_camera);
>}
>_microphone = Microphone.getMicrophone();
>if(_microphone){
>   _outStream.attachAudio(_microphone);
>}
> }
> 
> Yours truly,
> -Brian
> 
> pk_wasp wrote:
> 
> >I want to build a simple audio conferencing Flex 2 (Beta 2) application 
> >(just people using their microphone) with Flash Media Server 2
> >
> >Does anyone have any examples/links/documentation to do this sort of 
> >thing? (if its possible)
> >
> >and is the microphone working with this Flash Player 8.5 now?
> >
> >searching through the archive found this:
> >
> >http://www.mail-archive.com/flexcoders@yahoogroups.com/msg19222.html
> >
> >
> >thanks
> >
> >
> >
> >
> >
> >
> >--
> >Flexcoders Mailing List
> >FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> >Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> >Yahoo! Groups Links
> >
> >
> >
> > 
> >
> >
> >  
> >
> 
> 
> -- 
> __
> Brian Lesser
> Assistant Director, Teaching and Technology Support
> Computing and Communications Services
> Ryerson University
> 350 Victoria St.
> Toronto, Ontario   Phone: (416) 979-5000 ext. 6835
> M5B 2K3Fax: (416) 979-5220
> Office: AB48D  E-mail: [EMAIL PROTECTED]
> (Enter through LB66)   Web: http://www.ryerson.ca/~blesser
> __
> 
> 
>
>  --
> Flexcoders Mailing 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. 
> 
>
>-
> 
> 
> 
>
>__
>Do You Yahoo!?
>Tired of spam?  Yahoo! Mail has the best spam protection around 
>http://mail.yahoo.com 
>
>  
>


-- 
__
Brian Lesser
Assistant Director, Teaching and Technology Support
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario   Phone: (416) 979-5000 ext. 6835
M5B 2K3Fax: (416) 979-5220
Office: AB48D  E-mail: [EMAIL PROTECTED]
(Enter through LB66)   Web: http://www.ryerson.ca/~blesser
__



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

<*>

[flexcoders] File - flexcodersFAQ.txt

2006-03-26 Thread flexcoders

 Flexcoders Frequently Asked Questions
  Last Updated: 30th May 2005

 Contributors:

Matt Chotin, Steven Webster, Alistair McLeod, Tariq Ahmed, Jeff Tapper,
 Peter Farland, Abdul Qabiz, Tracy Spratt, Jesse Warden, Dan Harfleet,
  Manish Jethani, Dimitrios Gianninas


1. What is Flexcoders?
2. How does Flexcoders relate to the Macromedia Flex Forum on
   www.macromedia.com?
3. Who posts to Flexcoders?
4. Resources to check before asking a question
5. Guidelines for effective question-asking
6. FAQ


1. What is Flexcoders?

Flexcoders is a forum where developers can ask questions about Flex,
FlexBuilder, and Flex-related technologies (like Cairngorm, FlexUnit and
SynergyFLEX).  The community is made up of everyday Flex developers as
well as Macromedia employees. However, this is not an official
Macromedia-sponsored forum, it is actually moderated by the folks at
iteration::two, a consultancy responsible for authoring the book
Developing Rich Internet Applications with Macromedia Flex.


2. How does Flexcoders relate to the Macromedia Flex Forum on
   www.macromedia.com?

Both the Macromedia Flex Forum and Flexcoders provide help on issues
related to Flex, and neither is an official support mechanism.  Some
people monitor both forums, some only one.  It is up to you to decide
where you might have a better experience getting a question answered and
being able to subsequently help others.


3. Who posts to Flexcoders?

Everyone who has a question or an answer.  Many members of the Flex
development team read and respond to Flexcoders as well as other
Macromedia folks who monitor the community.

Some recurring Macromedia folks are:

David Mendels: EVP and GM, highest-level executive in charge of Flex.
Lucian Beebe: Sr. Product Manager, Flex. Matt Chotin, Manish Jethani,
Abdul Qabiz, Gordon Smith, Peter Farland and many more: Engineers on
Flex.

Active community members include:

Steven Webster (Technical Director at iteration::two and co-author of
Developing Rich Clients with Macromedia Flex), Alistair McLeod
(Development Director at iteration::two and co-author of Developing Rich
Clients with Macromedia Flex), Jesse Warden (JesterXL - Flash badass
playing with Flex), Tracy Spratt (long-time member, holder of all
knowledge related to 32K limits), Jeff Steiner (maintainer of
www.flexauthority.com), Tariq Ahmed (maintainer of www.cflex.net), Jimmy
Gianninas (long-time member, developer at Optimal Payments).

And so many more!


4. Resources to check before asking a question

The Flexcoders Mail Archive (better searching than YahooGroups):
http://www.mail-archive.com/flexcoders%40yahoogroups.com

http://www.cflex.net/showfaq.cfm
http://livedocs.macromedia.com/flex/15/asdocs_en/index.html
http://www.macromedia.com/go/flex15_java_livedocs
http://www.macromedia.com/cfusion/knowledgebase/index.cfm
http://www.cflex.net http://www.flexauthority.com
http://www.macromedia.com/devnet/flex http://coenraets.com
http://weblogs.macromedia.com/mxna/ http://www.google.com 

The Book "Developing Rich Clients with Macromedia Flex" (check your
favorite bookstore)



5. Guidelines to effective question-asking

Include a useful subject; this will help people find their own questions
and answers later.

Explain what you are trying to accomplish.

Explain the error (include compilation errors or a description of the
runtime behavior).

Be prepared to break your problem down into a simpler scenario in case
someone wants to try to debug the code themselves.  Remember, private
web services are inaccessible; you may need to create some dummy data to
emulate problems.

Phrases to avoid:

"URGENT" (we all have deadlines, no one is intentionally delaying a
response to you)

"Please send code" (this is very frustrating to read as it implies you
aren't interested in learning anything on your own.  Where code is
appropriate you can expect someone to provide it, but in many cases you
will learn more by doing it on your own with appropriate guidance.  It
may be that you're on a deadline and just want to finish, but many of
those who respond regularly would prefer to "teach you to fish" so that
you can answer your own questions next time and even help out others).


6. Mini-FAQ



Q: Can I mail Matt, Manish, Abdul, Pete, Gordon, iteration::two, or
anyone else for that matter off-line with my question?

A: Please don't!  If someone is capable of answering your question on-
list please believe that it will be done.  Everyone on the list has
full-time jobs doing their own work and often answer flexcoders on their
own time; mailing them off- list doesn’t endear you to them.  If no one
answers on-list in a reasonable amount of time (24 hours) you can try to
rephrase the question and perhaps include more detail (including a
version of the problem that someone can run without doing any setup on
their o

Re: [flexcoders] Flex 2 and FMS 2 for audio conferencing application

2006-03-26 Thread dos dedos



Is it realistic to suggest that Flex 2 could be used (with minimal server side processing [e.g. just to work around flash-to-flash security restriction]) to build a point-to-point VoIP application? That would be nice to try one day ... Brian Lesser <[EMAIL PROTECTED]> wrote:Yes, audio and video streaming seem to work. For example to play a stream:  private function play():void{    if(_inStream) _inStream.close();    // Create the stream:    _inStream = new NetStream(_nc);    // Setup the listeners:    _inStream.addEventListener(NetStatusEvent.NET_STATUS, netStatus);    _inStream.addEventListener(SecurityErrorEvent.SECURITY_ERROR,  netSecurityError);    // Play the stream and show the video:   
 _inStream.play(_streamName);    _video.attachNetStream(_inStream); }  And to publish a stream:  private function publish():void{    if (_outStream ) _outStream.close();    _outStream = new NetStream(_nc);    _outStream.addEventListener(NetStatusEvent.NET_STATUS, netStatus);    _outStream.addEventListener(SecurityErrorEvent.SECURITY_ERROR,  netSecurityError);        // Capture video and publish it    _camera = Camera.getCamera();    if(_camera){   _camera.setMode(160, 120, 6, true);   _outStream.attachCamera(_camera);   _video.attachCamera(_camera);    }    _microphone = Microphone.getMicrophone();   
 if(_microphone){   _outStream.attachAudio(_microphone);    } }  Yours truly, -Brian  pk_wasp wrote:  >I want to build a simple audio conferencing Flex 2 (Beta 2) application  >(just people using their microphone) with Flash Media Server 2 > >Does anyone have any examples/links/documentation to do this sort of  >thing? (if its possible) > >and is the microphone working with this Flash Player 8.5 now? > >searching through the archive found this: > >http://www.mail-archive.com/flexcoders@yahoogroups.com/msg19222.html > > >thanks > > > > > > >-- >Flexcoders Mailing List >FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt >Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com  >Yahoo! Groups Links > > > >  > > >   >   --  __ Brian Lesser Assistant Director, Teaching and Technology Support Computing and Communications Services Ryerson University 350 Victoria St. Toronto, Ontario   Phone: (416) 979-5000 ext. 6835 M5B 2K3    Fax:
 (416) 979-5220 Office: AB48D  E-mail: [EMAIL PROTECTED] (Enter through LB66)   Web: http://www.ryerson.ca/~blesser __ 
 __Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around http://mail.yahoo.com 





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





  




  
  
  YAHOO! GROUPS LINKS



   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: FB2 :: Plugin, where is it?

2006-03-26 Thread dos dedos



I understand why they can't be all mixed up in one project but I'd think it's safe to assume they can be all mixed up in one CVS repository ...  Ant is a critical component but it may have one of those open source licenses that prohibit commercial use, which would explain why Flexbuilder doesn't come with it. Dave Wolf <[EMAIL PROTECTED]> wrote:The only bummer is that if you have a Java project with some mxml in it (like we do since we've been using Eclipse since before Zorn)  you can't use the MXML editors.  They seem to only work inside the Flex projects themselves.  But yes, you do get to have everything in one tool, just not all mixed up in one project.  --  Dave Wolf Cynergy Systems, Inc. Macromedia Flex Alliance Partner http://www.cynergysystems.com  Email:  [EMAIL PROTECTED] Office: 866-CYNERGY  --- In flexcoders@yahoogroups.com, "Michael Schmalle" <[EMAIL PROTECTED]> wrote: > > Well, it took me 4 minutes to uninstall and reinstall on top of Eclipse. >  > Never know what I need in the future, now everything is in one place. >  > Peace, Mike >  > On 3/26/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > > >  i am not certain about beta 2, but in beta 1 the ant was disabled, and > > that is a killer for me as i use ant the whole time as a workflow tool. you > > never know what you might need until you find its not there so... > > > > > > On 3/26/06, Michael Schmalle <[EMAIL PROTECTED] > wrote: > > > > > >  HAHA, > > >
 > > > You know, that figures it was right in front of my face! > > > > > > Thanks Johannes for pointing out the obvious. Maybe it's becasue I am > > > here since alpha and it was a seperate download. I really think that is what > > > screwed up my thinking. > > > > > > Lets say I am not using Java in Eclipse, it is still wise for me to > > > install Flex Builder as the plugin right? > > > > > > Peace, Mike > > > > > > > > > On 3/26/06, Johannes Nel < [EMAIL PROTECTED]> wrote: > > > > > > > >  ant is not installed by default, which is the the real killler, other > > > > than that none of the standard java stuff is there. the pluging version of > > > > zorn is in the same installer, all you do is you choose to install the >
 > > > plugin version and point it to a eclipse folder. > > > > > > > > > > > > On 3/26/06, Michael Schmalle < [EMAIL PROTECTED]> wrote: > > > > > > > > >  Hey, > > > > > > > > > > I have so much on my plate... > > > > > > > > > > I just read in a previous thread that the standalone is severly > > > > > cippled in Eclipse. What is not implemented? > > > > > > > > > > I want to use the subversion plugin, I have Eclipse installed > > > > > already, where do I get the plugin version of Flex Builder? > > > > > > > > > > Could somone point me in the resources direction or at least give a > > > > > couple steps to get this going for me in my mind? > > > > >
 > > > > > Peace, Mike > > > > > > > > > > -- > > > > > What goes up, does come down. > > > > > > > > > >  -- > > > > > Flexcoders Mailing List > > > > > FAQ: > > > > > http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > > > > > Search Archives: > > > > > http://www.mail-archive.com/flexcoders%40yahoogroups.com > > > > > > > > > > > > > > >  -- > > > > >  YAHOO! GROUPS LINKS > > > > > > > > > > > > > > > -  Visit your
 group "flexcoders" > > > > >    on the web. > > > > > > > > > >    -  To unsubscribe from this group, send an email to: > > > > >  [EMAIL PROTECTED]<[EMAIL PROTECTED]> > > > > > > > > > >    -  Your use of Yahoo! Groups is subject to the Yahoo! Terms of > > > > >    Service . > > > > > > > > > > > > > > >  -- > > > > > > > > > > > > > > > >
 > > > > > -- > > > > j:pn > > > > http://www.lennel.org > > > > > > > > > > > >  -- > > > > Flexcoders Mailing 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]<[EMAIL PROTECTED]> > > > > > > > >    -  Your use of Yahoo! Groups is subject to the Yahoo! Terms of > > > >    Service . > > > > > > > > > > > >  -- > > > > > > > > > > > > > > > > -- > > > What goes up, does come down. > > > >
 > > > > >  -- > > > Flexcoders Mailing List > > > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > > > Search Archives: > > > http://www.mail-archive.com/flexcoders%40yahoogroups.com > > > > > > > > >  -- > > >  YAHOO! GROUPS LINKS > > > > > > > > > -  Visit your group "flexcoders

Re: [flexcoders] Flex & Mac

2006-03-26 Thread Simeon Bateman



Hey John,I use ant in eclipse to compile my flex apps.  But if you wanted to use ant you could still run it from the command line.  i also posted about how to make that work with cf as well as get the cf mystic updater working on you mac.
if you are interested you can take a look herehttp://www.simb.net/blog/index.cfm/2006/3/1/Compiling-Mystic-Compatible-SWFs-with-Ant
Good Luck.  Feel free to drop me a note if you have any questions about compiling with ant.simeonOn 3/26/06, Alisdair Mills <
[EMAIL PROTECTED]> wrote:


Hi John,looks like you are using an old tutorial put up for the flex2 alpha... things have changed somewhat since then - try :flex/bin/mxmlc flex/frameworks/HelloMXML.mxml
note you'll need to change the macromedia namespace to http://www.adobe.com/2006/mxml
.There are loads of ways to make mxmlc compiling easier on a Mac - ANT if using eclipse, or setting up your .bash_profile to automatically find the flex bin folder if you prefer the command line. Have been meaning to collect a lot of this kind of info and gather it in one place... i'll try and sort that out this week.
Hope this helps.cheers, Al
On 26 Mar 2006, at 05:15, John wrote:  Hi Everybody,
I downloaded the Flex SDK 2.0 (
http://www.macromedia.com/cfusion/entitlement/index.cfm?e=labs)I hae some questions:
How do I compile the flex and actionscript files? I tried:java -jar flex/lib/mxmlc.jar -flexlib flex/frameworks/HelloMXML.mxml
I get the error message:
Unable to access jarfile {flex}/lib/mxmlc.jarsame problem with actionscript.java -jar flex/lib/mxmlc.jar -flexlib flex/frameworks/HelloAS3.as
I did check, and this file does exsist in flex/lib/mxmlc.jarI haved flex at /Users/johnbarrett/flex
I am just hoping to compile the flex application to get the swfsI tried many different ways to get this to work, but could not. The flex download came with samples, and I am lost on how to get those compiled too:(
I heard about Ant too, is that a better way? is ant java? I am just taking java I now at school, learning, but no where near to "knowing java"can anybody offer me some help?Thanks so much,
John     		Blab-away for as little as 1¢/min. Make 
 PC-to-Phone Calls using 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  
  YAHOO! GROUPS LINKS  Visit your group "
flexcoders" on the web.    To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED]    Your use of Yahoo! Groups is subject to the 
Yahoo! Terms of Service. 






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

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






  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 

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



  














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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Flex & Mac

2006-03-26 Thread Alisdair Mills


Hi John,looks like you are using an old tutorial put up for the flex2 alpha... things have changed somewhat since then - try :flex/bin/mxmlc flex/frameworks/HelloMXML.mxmlnote you'll need to change the macromedia namespace to http://www.adobe.com/2006/mxml.There are loads of ways to make mxmlc compiling easier on a Mac - ANT if using eclipse, or setting up your .bash_profile to automatically find the flex bin folder if you prefer the command line. Have been meaning to collect a lot of this kind of info and gather it in one place... i'll try and sort that out this week.Hope this helps.cheers, AlOn 26 Mar 2006, at 05:15, John wrote:  Hi Everybody,I downloaded the Flex SDK 2.0 (http://www.macromedia.com/cfusion/entitlement/index.cfm?e=labs)I hae some questions:How do I compile the flex and actionscript files? I tried:java -jar flex/lib/mxmlc.jar -flexlib flex/frameworks/HelloMXML.mxmlI get the error message:Unable to access jarfile {flex}/lib/mxmlc.jarsame problem with actionscript.java -jar flex/lib/mxmlc.jar -flexlib flex/frameworks/HelloAS3.asI did check, and this file does exsist in flex/lib/mxmlc.jarI haved flex at /Users/johnbarrett/flexI am just hoping to compile the flex application to get the swfsI tried many different ways to get this to work, but could not. The flex download came with samples, and I am lost on how to get those compiled too:(I heard about Ant too, is that a better way? is ant java? I am just taking java I now at school, learning, but no where near to "knowing java"can anybody offer me some help?Thanks so much,John     		Blab-away for as little as 1¢/min. Make  PC-to-Phone Calls using 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.comYAHOO! GROUPS LINKS  Visit your group "flexcoders" on the web.    To unsubscribe from this group, send an email to: [EMAIL PROTECTED]    Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 





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





  




  
  
  YAHOO! GROUPS LINKS



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



  








Re: [flexcoders] Flexbuilder 2.0 missing mx:link ?

2006-03-26 Thread Paolo Bernardini



Hi Alex,
I can tell you that FlexBuilder is showing the code hint for the click event, but it doesn't show selectedChild for the ViewStack.
Sorry to post it here but I didn't know where to report this bug. 
2006/3/26, Alex Uhlmann <[EMAIL PROTECTED]>:
Hi jim,The name Link changed to LinkButton in beta 2, the tutorials might notreflect this change just yet. LinkButton should have a click property.
Let me know if it doesn't work. It might be just FlexBuilder not showingyou the code hint.Best,AlexAlex UhlmannConsultant (Rich Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
p: +44 (0) 131 338 6969m: +44 (0) 7917 428 951[EMAIL PROTECTED]-Original Message-From: flexcoders@yahoogroups.com
 [mailto:flexcoders@yahoogroups.com] OnBehalf Of anonymothSent: 26 March 2006 03:51To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flexbuilder 2.0 missing mx:link ?Hello..I'm completely new at the whole Flex game, so please be gentle:-)I'm running through the 2.0 tutorial and it asks for a Link component.
Well there's only a LinkButton, and it doesn't have the 'click'property. Am I missing something (or is Flexbuilder)?I tried coding mx:Link but it went unrecognized.thanks,jim
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.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] Re: FB2 :: Plugin, where is it?

2006-03-26 Thread Dave Wolf
The only bummer is that if you have a Java project with some mxml in
it (like we do since we've been using Eclipse since before Zorn)  you
can't use the MXML editors.  They seem to only work inside the Flex
projects themselves.

But yes, you do get to have everything in one tool, just not all mixed
up in one project.

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

Email:  [EMAIL PROTECTED]
Office: 866-CYNERGY

--- In flexcoders@yahoogroups.com, "Michael Schmalle"
<[EMAIL PROTECTED]> wrote:
>
> Well, it took me 4 minutes to uninstall and reinstall on top of Eclipse.
> 
> Never know what I need in the future, now everything is in one place.
> 
> Peace, Mike
> 
> On 3/26/06, Johannes Nel <[EMAIL PROTECTED]> wrote:
> >
> >  i am not certain about beta 2, but in beta 1 the ant was
disabled, and
> > that is a killer for me as i use ant the whole time as a workflow
tool. you
> > never know what you might need until you find its not there so...
> >
> >
> > On 3/26/06, Michael Schmalle <[EMAIL PROTECTED] > wrote:
> > >
> > >  HAHA,
> > >
> > > You know, that figures it was right in front of my face!
> > >
> > > Thanks Johannes for pointing out the obvious. Maybe it's becasue
I am
> > > here since alpha and it was a seperate download. I really think
that is what
> > > screwed up my thinking.
> > >
> > > Lets say I am not using Java in Eclipse, it is still wise for me to
> > > install Flex Builder as the plugin right?
> > >
> > > Peace, Mike
> > >
> > >
> > > On 3/26/06, Johannes Nel < [EMAIL PROTECTED]> wrote:
> > > >
> > > >  ant is not installed by default, which is the the real
killler, other
> > > > than that none of the standard java stuff is there. the
pluging version of
> > > > zorn is in the same installer, all you do is you choose to
install the
> > > > plugin version and point it to a eclipse folder.
> > > >
> > > >
> > > > On 3/26/06, Michael Schmalle < [EMAIL PROTECTED]> wrote:
> > > >
> > > > >  Hey,
> > > > >
> > > > > I have so much on my plate...
> > > > >
> > > > > I just read in a previous thread that the standalone is severly
> > > > > cippled in Eclipse. What is not implemented?
> > > > >
> > > > > I want to use the subversion plugin, I have Eclipse installed
> > > > > already, where do I get the plugin version of Flex Builder?
> > > > >
> > > > > Could somone point me in the resources direction or at least
give a
> > > > > couple steps to get this going for me in my mind?
> > > > >
> > > > > Peace, Mike
> > > > >
> > > > > --
> > > > > What goes up, does come down.
> > > > >
> > > > >  --
> > > > > Flexcoders Mailing List
> > > > > FAQ:
> > > > > http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > > > > Search Archives:
> > > > > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > > > >
> > > > >
> > > > >  --
> > > > >  YAHOO! GROUPS LINKS
> > > > >
> > > > >
> > > > > -  Visit your group
"flexcoders"
> > > > >on the web.
> > > > >
> > > > >-  To unsubscribe from this group, send an email to:
> > > > > 
[EMAIL PROTECTED]<[EMAIL PROTECTED]>
> > > > >
> > > > >-  Your use of Yahoo! Groups is subject to the Yahoo!
Terms of
> > > > >Service .
> > > > >
> > > > >
> > > > >  --
> > > > >
> > > >
> > > >
> > > >
> > > > --
> > > > j:pn
> > > > http://www.lennel.org
> > > >
> > > >
> > > >  --
> > > > Flexcoders Mailing 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]<[EMAIL PROTECTED]>
> > > >
> > > >-  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > > >Service .
> > > >
> > > >
> > > >  --
> > > >
> > >
> > >
> > >
> > > --
> > > What goes up, does come down.
> > >
> > >
> > >  --
> > > Flexcoders Mailing List
> > > FAQ:
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > > Search Archives:
> > > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > >
> > >
> > >  --
> > >  YAHOO! GROUPS LINKS
> > >
> > >
> > > -  Visit your group
"flexcoders"
> > >on the web.
> > >
> > >-  To unsubscribe from this group, send an email to:
> > > 
[EMAIL PROTECTED]<[EMAIL PROTECTED]>
> > >
> > >-  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > >Service .
> > >
> > >
> > >  --
>

Re: [flexcoders] FB2 :: Plugin, where is it?

2006-03-26 Thread Michael Schmalle



Well, it took me 4 minutes to uninstall and reinstall on top of Eclipse.

Never know what I need in the future, now everything is in one place.

Peace, MikeOn 3/26/06, Johannes Nel <[EMAIL PROTECTED]> wrote:



i am not certain about beta 2, but in beta 1 the ant was disabled, and
that is a killer for me as i use ant the whole time as a workflow tool.
you never know what you might need until you find its not there so...On 3/26/06, 
Michael Schmalle <[EMAIL PROTECTED]
> wrote:


HAHA,

You know, that figures it was right in front of my face!

Thanks Johannes for pointing out the obvious. Maybe it's becasue I am
here since alpha and it was a seperate download. I really think that is
what screwed up my thinking.

Lets say I am not using Java in Eclipse, it is still wise for me to install Flex Builder as the plugin right?

Peace, MikeOn 3/26/06, Johannes Nel <

[EMAIL PROTECTED]> wrote:



ant is not installed by default, which is the the real killler, other
than that none of the standard java stuff is there. the pluging version
of zorn is in the same installer, all you do is you choose to install
the plugin version and point it to a eclipse folder.

On 3/26/06, Michael Schmalle <


[EMAIL PROTECTED]> wrote:






Hey,

I have so much on my plate...

I just read in a previous thread that the standalone is severly cippled in Eclipse. What is not implemented?

I want to use the subversion plugin, I have Eclipse installed already, where do I get the plugin version of Flex Builder?
Could somone point me in the resources direction or at least give a couple steps to get this going for me in my mind?

Peace, Mike
-- What goes up, does come down.






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




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









  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 



   To unsubscribe from this group, send an email to: 



[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.







  








-- j:pn http://www.lennel.org






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






  








-- What goes up, does come down.






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


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







  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 

   To unsubscribe from this group, send an email to: 

[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.





  








-- j:pn http://www.lennel.org






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




  








-- What goes up, does come down.






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





  




  
  
  YAHOO! GROUPS LINKS



   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] FB2 :: Flex printing

2006-03-26 Thread Carlos Rovira



Hi David,I don't have at this time some specific code that doesn't work, I only try to give feedback about something that we, the users of the Flash Platform, find very frustrating to handle and finally we must workaround the problem if we invest enough time to find other way to accomplish what we are trying to do.
I don't know about the internals of Flash Player only what I could read from post of people like Tinic or others and I can only imagine what's happen when something doesn't work as I would expect. I'm talking about usability problems with features like printing that people coming to Flash or Flex will find very problematic.
I know that this kind of things will enhanced in the future as others points to this problems. But as a software developer I know the hard work that people at Adobe are doing and know that maybe this one is not a primary target to enhance at this time, taking account of the huge amount of products based on Flash Platform that are coming in the incoming months.
Best,C.On 3/26/06, David Mendels <[EMAIL PROTECTED]> wrote:







Hi,
 
If folks post specific reproducible errors, we'll make sure 
they get to the team to be reviewed.  Please do.
 
-David
Adobe

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:flexcoders@yahoogroups.com] On Behalf Of Carlos 
  RoviraSent: Saturday, March 25, 2006 1:12 PMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] FB2 :: Flex 
  printing
  Hi,Printing in Flash is a little pain and should be 
  revisited by the Flash Player team before others in the Flex team do something 
  else because I my opinion the problem is in the plataform and not in the 
  framework. Is great to have nowadays a framework like flex that saves tons of 
  time but when we reach printing, there's no time calculations and only 
  experience would help you. I experience a lot of problems sometime ago 
  and I assume that the problem when we try to print vectors and bitmaps borns 
  of the different display engines in Flash Player 8. It seems Flash Player has 
  a engine for vectors and other one for bitmaps so printing is affected of this 
  dual display nature. Hope this issue will enhanced in the future because could 
  be a frustration for people coming to the Flash Platform in the future 
  
  On 3/23/06, Dima 
  Ulich <[EMAIL PROTECTED]> 
  wrote:
  
HiI have used the package you are 
pointing at. Toreproduce the bug try to print out a page with 
textand bitmap image (do not embed image load 
itdynamically).When you use FlexPrintJob package, you'll get 
bitmapquality printing which is not good at all for use 
inreports.  When you use flash.print.PrintJob package you 
will getvector printing, but you won't get the image printed. My 
question was would there be an option to printimages and text on one 
page in good vector printingquality? Is there a way to set 
FlexPrintJob to print in vectorformat?Dima 
Ulich
--- David Mendels <[EMAIL PROTECTED]
> 
wrote:> Hi,>  > a) Check out>
http://livedocs.macromedia.com/labs/1/flex/langref/mx/print/package-deta 
> il.html> b) Please be specific and give us reproducible 
bugs> so we can address as> many issues as possible and/or log 
ECRs for future! >  > -David> Adobe> 
> > > > 
  From: flexcoders@yahoogroups.com> [mailto:
flexcoders@yahoogroups.com] On Behalf Of> Phil 
Marston>   Sent: Wednesday, March 22, 
2006 9:26 AM>   To: flexcoders@yahoogroups.com> 
  Subject: Re: [flexcoders] FB2 :: Flex 
printing>   > 
  >   I 
haven't used this yet, but our University> teaching apps would 
>   certainly need good functionality 
here so hope> there isn't a> problem > 
  like there's been with the implementation 
of> printing in Flash> in the past.> 
  >   As 
far back as a Flash 5 project we hit a bug in> the Flash> 
player to do >   with printing nested 
movieClips - after months of> trying to fix> it > 
  someone from Macromedia eventually let us 
know that> it was a> known issue > 
  but they didn't think anyone would notice - 
as far> as I'm aware> it's > 
  never been fixed.> 
  >   
Compared to all the other features in Flash,> printing always> 
seems to be >   a bit of a poor cousin 
sort of implementation. > Maybe with> Adobe's print > 
  heritage that will change . . . :-)> 
  >   
Phil>   > 
  Dima Ulich wrote:> 
  > I would like to ask adobe team. > 
  > Do you guys have any plans on making 
printing> from>   > flex a bit 
easier? >   >> 
  > I think it is very important for RIAs to 
have> very>   > flexible 
printing feateres so users and devs> wouldn't> 
  > have problems creating different kind of 
reports.> >   > For now it is 
not event poss

Re: [flexcoders] FB2 :: Plugin, where is it?

2006-03-26 Thread Johannes Nel



i am not certain about beta 2, but in beta 1 the ant was disabled, and
that is a killer for me as i use ant the whole time as a workflow tool.
you never know what you might need until you find its not there so...On 3/26/06, Michael Schmalle <[EMAIL PROTECTED]
> wrote:


HAHA,

You know, that figures it was right in front of my face!

Thanks Johannes for pointing out the obvious. Maybe it's becasue I am
here since alpha and it was a seperate download. I really think that is
what screwed up my thinking.

Lets say I am not using Java in Eclipse, it is still wise for me to install Flex Builder as the plugin right?

Peace, MikeOn 3/26/06, Johannes Nel <
[EMAIL PROTECTED]> wrote:



ant is not installed by default, which is the the real killler, other
than that none of the standard java stuff is there. the pluging version
of zorn is in the same installer, all you do is you choose to install
the plugin version and point it to a eclipse folder.

On 3/26/06, Michael Schmalle <

[EMAIL PROTECTED]> wrote:





Hey,

I have so much on my plate...

I just read in a previous thread that the standalone is severly cippled in Eclipse. What is not implemented?

I want to use the subversion plugin, I have Eclipse installed already, where do I get the plugin version of Flex Builder?
Could somone point me in the resources direction or at least give a couple steps to get this going for me in my mind?

Peace, Mike
-- What goes up, does come down.






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



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








  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 


   To unsubscribe from this group, send an email to: 


[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.






  








-- j:pn http://www.lennel.org






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





  








-- What goes up, does come down.






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

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






  




  
  
  YAHOO! GROUPS LINKS



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




  








-- j:pn http://www.lennel.org






--
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] FB2 :: Plugin, where is it?

2006-03-26 Thread Michael Schmalle



I'll answer my own question;

Of course it is because you get Eclipse not an Adobe program that can't
be extended as Eclipse can when Flex Builder is the plugin. :)

This week has been, we you know!

Peace, MikeOn 3/26/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:
HAHA,

You know, that figures it was right in front of my face!

Thanks Johannes for pointing out the obvious. Maybe it's becasue I am
here since alpha and it was a seperate download. I really think that is
what screwed up my thinking.

Lets say I am not using Java in Eclipse, it is still wise for me to install Flex Builder as the plugin right?

Peace, MikeOn 3/26/06, Johannes Nel <
[EMAIL PROTECTED]> wrote:



ant is not installed by default, which is the the real killler, other
than that none of the standard java stuff is there. the pluging version
of zorn is in the same installer, all you do is you choose to install
the plugin version and point it to a eclipse folder.

On 3/26/06, Michael Schmalle <

[EMAIL PROTECTED]> wrote:





Hey,

I have so much on my plate...

I just read in a previous thread that the standalone is severly cippled in Eclipse. What is not implemented?

I want to use the subversion plugin, I have Eclipse installed already, where do I get the plugin version of Flex Builder?
Could somone point me in the resources direction or at least give a couple steps to get this going for me in my mind?

Peace, Mike
-- What goes up, does come down.






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



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








  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 


   To unsubscribe from this group, send an email to: 


[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.






  








-- j:pn http://www.lennel.org






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





  








-- What goes up, does come down.

-- What goes up, does come down.






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





  




  
  
  YAHOO! GROUPS LINKS



   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] FB2 :: Plugin, where is it?

2006-03-26 Thread Michael Schmalle



HAHA,

You know, that figures it was right in front of my face!

Thanks Johannes for pointing out the obvious. Maybe it's becasue I am
here since alpha and it was a seperate download. I really think that is
what screwed up my thinking.

Lets say I am not using Java in Eclipse, it is still wise for me to install Flex Builder as the plugin right?

Peace, MikeOn 3/26/06, Johannes Nel <[EMAIL PROTECTED]> wrote:



ant is not installed by default, which is the the real killler, other
than that none of the standard java stuff is there. the pluging version
of zorn is in the same installer, all you do is you choose to install
the plugin version and point it to a eclipse folder.

On 3/26/06, Michael Schmalle <
[EMAIL PROTECTED]> wrote:




Hey,

I have so much on my plate...

I just read in a previous thread that the standalone is severly cippled in Eclipse. What is not implemented?

I want to use the subversion plugin, I have Eclipse installed already, where do I get the plugin version of Flex Builder?
Could somone point me in the resources direction or at least give a couple steps to get this going for me in my mind?

Peace, Mike
-- What goes up, does come down.






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


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







  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 

   To unsubscribe from this group, send an email to: 

[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.





  








-- j:pn http://www.lennel.org






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




  








-- What goes up, does come down.






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





  




  
  
  YAHOO! GROUPS LINKS



   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] FB2 :: Plugin, where is it?

2006-03-26 Thread Johannes Nel



ant is not installed by default, which is the the real killler, other
than that none of the standard java stuff is there. the pluging version
of zorn is in the same installer, all you do is you choose to install
the plugin version and point it to a eclipse folder.

On 3/26/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:



Hey,

I have so much on my plate...

I just read in a previous thread that the standalone is severly cippled in Eclipse. What is not implemented?

I want to use the subversion plugin, I have Eclipse installed already, where do I get the plugin version of Flex Builder?
Could somone point me in the resources direction or at least give a couple steps to get this going for me in my mind?

Peace, Mike
-- What goes up, does come down.






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

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






  




  
  
  YAHOO! GROUPS LINKS



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




  








-- j:pn http://www.lennel.org






--
Flexcoders Mailing 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] FB2 :: Plugin, where is it?

2006-03-26 Thread Michael Schmalle



Hey,

I have so much on my plate...

I just read in a previous thread that the standalone is severly cippled in Eclipse. What is not implemented?

I want to use the subversion plugin, I have Eclipse installed already, where do I get the plugin version of Flex Builder?
Could somone point me in the resources direction or at least give a couple steps to get this going for me in my mind?

Peace, Mike
-- What goes up, does come down.






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





  




  
  
  YAHOO! GROUPS LINKS



   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 and FMS 2 for audio conferencing application

2006-03-26 Thread Brian Lesser
Yes, audio and video streaming seem to work. For example to play a stream:

private function play():void{
   if(_inStream) _inStream.close();
   // Create the stream:
   _inStream = new NetStream(_nc);
   // Setup the listeners:
   _inStream.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
   _inStream.addEventListener(SecurityErrorEvent.SECURITY_ERROR, 
netSecurityError);
   // Play the stream and show the video:
   _inStream.play(_streamName);
   _video.attachNetStream(_inStream);
}

And to publish a stream:

private function publish():void{
   if (_outStream ) _outStream.close();
   _outStream = new NetStream(_nc);
   _outStream.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
   _outStream.addEventListener(SecurityErrorEvent.SECURITY_ERROR, 
netSecurityError);
   
   // Capture video and publish it
   _camera = Camera.getCamera();
   if(_camera){
  _camera.setMode(160, 120, 6, true);
  _outStream.attachCamera(_camera);
  _video.attachCamera(_camera);
   }
   _microphone = Microphone.getMicrophone();
   if(_microphone){
  _outStream.attachAudio(_microphone);
   }
}

Yours truly,
-Brian

pk_wasp wrote:

>I want to build a simple audio conferencing Flex 2 (Beta 2) application 
>(just people using their microphone) with Flash Media Server 2
>
>Does anyone have any examples/links/documentation to do this sort of 
>thing? (if its possible)
>
>and is the microphone working with this Flash Player 8.5 now?
>
>searching through the archive found this:
>
>http://www.mail-archive.com/flexcoders@yahoogroups.com/msg19222.html
>
>
>thanks
>
>
>
>
>
>
>--
>Flexcoders Mailing List
>FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
>Yahoo! Groups Links
>
>
>
> 
>
>
>  
>


-- 
__
Brian Lesser
Assistant Director, Teaching and Technology Support
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario   Phone: (416) 979-5000 ext. 6835
M5B 2K3Fax: (416) 979-5220
Office: AB48D  E-mail: [EMAIL PROTECTED]
(Enter through LB66)   Web: http://www.ryerson.ca/~blesser
__



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

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

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

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





RE: [flexcoders] FB2 :: Flex printing

2006-03-26 Thread David Mendels





Hi,
 
If folks post specific reproducible errors, we'll make sure 
they get to the team to be reviewed.  Please do.
 
-David
Adobe

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Carlos 
  RoviraSent: Saturday, March 25, 2006 1:12 PMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] FB2 :: Flex 
  printing
  Hi,Printing in Flash is a little pain and should be 
  revisited by the Flash Player team before others in the Flex team do something 
  else because I my opinion the problem is in the plataform and not in the 
  framework. Is great to have nowadays a framework like flex that saves tons of 
  time but when we reach printing, there's no time calculations and only 
  experience would help you. I experience a lot of problems sometime ago 
  and I assume that the problem when we try to print vectors and bitmaps borns 
  of the different display engines in Flash Player 8. It seems Flash Player has 
  a engine for vectors and other one for bitmaps so printing is affected of this 
  dual display nature. Hope this issue will enhanced in the future because could 
  be a frustration for people coming to the Flash Platform in the future 
  
  On 3/23/06, Dima 
  Ulich <[EMAIL PROTECTED]> 
  wrote:
  
HiI have used the package you are 
pointing at. Toreproduce the bug try to print out a page with 
textand bitmap image (do not embed image load 
itdynamically).When you use FlexPrintJob package, you'll get 
bitmapquality printing which is not good at all for use 
inreports.  When you use flash.print.PrintJob package you 
will getvector printing, but you won't get the image printed. My 
question was would there be an option to printimages and text on one 
page in good vector printingquality? Is there a way to set 
FlexPrintJob to print in vectorformat?Dima 
Ulich
--- David Mendels <[EMAIL PROTECTED]> 
wrote:> Hi,>  > a) Check out>http://livedocs.macromedia.com/labs/1/flex/langref/mx/print/package-deta 
> il.html> b) Please be specific and give us reproducible 
bugs> so we can address as> many issues as possible and/or log 
ECRs for future! >  > -David> Adobe> 
> > > > 
  From: flexcoders@yahoogroups.com> [mailto:flexcoders@yahoogroups.com] On Behalf Of> Phil 
Marston>   Sent: Wednesday, March 22, 
2006 9:26 AM>   To: flexcoders@yahoogroups.com> 
  Subject: Re: [flexcoders] FB2 :: Flex 
printing>   > 
  >   I 
haven't used this yet, but our University> teaching apps would 
>   certainly need good functionality 
here so hope> there isn't a> problem > 
  like there's been with the implementation 
of> printing in Flash> in the past.> 
  >   As 
far back as a Flash 5 project we hit a bug in> the Flash> 
player to do >   with printing nested 
movieClips - after months of> trying to fix> it > 
  someone from Macromedia eventually let us 
know that> it was a> known issue > 
  but they didn't think anyone would notice - 
as far> as I'm aware> it's > 
  never been fixed.> 
  >   
Compared to all the other features in Flash,> printing always> 
seems to be >   a bit of a poor cousin 
sort of implementation. > Maybe with> Adobe's print > 
  heritage that will change . . . :-)> 
  >   
Phil>   > 
  Dima Ulich wrote:> 
  > I would like to ask adobe team. > 
  > Do you guys have any plans on making 
printing> from>   > flex a bit 
easier? >   >> 
  > I think it is very important for RIAs to 
have> very>   > flexible 
printing feateres so users and devs> wouldn't> 
  > have problems creating different kind of 
reports.> >   > For now it is 
not event possible to print bitmap>   
> images aloing with vector graphics. > 
  > To print images you need to have them 
embeded or> use>   > 
printAsBitmap feature, but printAsBitmap makes> all the> 
  > other things on page look nasty. It 
won't work> for>   > good 
reports. >   > In Flex Beta past and 
new version there was a>   > 
FlexPrintJob package it prints in bitmap format> which> 
  > makes it impossible for use. And> 
flash.print.printJob>   > package is 
pretty hard to use, and it doesn't> solve> 
  > the problem.> 
  >>   
> Flexcoders, what do you think about printing in> flex?> 
  >>   
> Ulich Dima>   >> 
  >>   
>> __> 
  > Do You Yahoo!?> 
  > Tired of spam?  Yahoo! Mail has the 
best spam> protection> around > 
  > http://mail.yahoo.com 
>   >> 
  >>   
> -->   > Flexcoders Mailing 
List>   > FAQ:>http://group

RE: [flexcoders] Yahoo! Maps API

2006-03-26 Thread David Mendels
Hi,

I can add that we expect a Flash Player 8.5 (AS3/Flex2) revision so this
will be possible in the relatively near term.

-David 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Mike Chambers
> Sent: Sunday, March 26, 2006 1:16 AM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Yahoo! Maps API
> 
> That is correct.
> 
> mike chambers
> 
> [EMAIL PROTECTED]
> 
> Brendan Meutzner wrote:
> > Hey Matthew,
> > 
> > I'm going to go out on a limb here and suggest that the 
> current swc is 
> > only compatible with 1.5.  When I tried importing the it into a 2.0 
> > project, it threw errors.
> > 
> > Someone correct me if I'm wrong.
> > 
> > Brendan
> > 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 


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

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

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

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





RE: [flexcoders] Flexbuilder 2.0 missing mx:link ?

2006-03-26 Thread Alex Uhlmann
Hi jim,

The name Link changed to LinkButton in beta 2, the tutorials might not
reflect this change just yet. LinkButton should have a click property.
Let me know if it doesn't work. It might be just FlexBuilder not showing
you the code hint.

Best,
Alex

Alex Uhlmann
Consultant (Rich Internet Applications)
Adobe Consulting
Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
p: +44 (0) 131 338 6969
m: +44 (0) 7917 428 951 
[EMAIL PROTECTED] 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of anonymoth
Sent: 26 March 2006 03:51
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flexbuilder 2.0 missing mx:link ?

Hello..I'm completely new at the whole Flex game, so please be gentle
:-)

I'm running through the 2.0 tutorial and it asks for a Link component.
Well there's only a LinkButton, and it doesn't have the 'click'
property. Am I missing something (or is Flexbuilder)? 

I tried coding mx:Link but it went unrecognized. 

thanks,
jim





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



 




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

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

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

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




RE: [flexcoders] [Flex 2 beta 2 - Cairngorm 2 - AMFPHP]

2006-03-26 Thread Alex Uhlmann





Hi William,
 
usually, you would define the AMFPHP interface in 
Services.mxml, retrieve it via ServiceLocator from your Delegate. But 
ServiceLocator can only return you either mx.rpc.AbstractService or 
mx.rpc.http.HTTPService (for Flex2 's out of the box RPC services). However you 
could create the AMFPHP specific details in your Delegate. But better would be 
to add a method to Cairngorm's ServiceLocator that either returns a generic 
object or an object compatible to AMFPHP (RemotingConnection or 
NetConnection). Let me know how you get on.
 
Best,
Alex
 


  
  

  


  
  

Alex UhlmannConsultant (Rich Internet 
Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, 
South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338 6969
m: +44 (0) 7917 428 951 [EMAIL PROTECTED] 
  
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of William 
LambéSent: 25 March 2006 22:10To: 
flexcoders@yahoogroups.comSubject: [flexcoders] [Flex 2 beta 2 - 
Cairngorm 2 - AMFPHP]


Hello guys, 

 
Did someone try to use Cairngom 
(architectural framework for flex) with 
AMFPHP ?
 
I ask because I don’t see clearly (in the sample 
Cairngorm Login) how to change LoginDelegate and Services.mxml to use it with 
AMFPHP… (for exemple where to introduce the RemotingConnection of Tweenpix 
(http://www.tweenpix.net/blog/index.php?2006/01/03/543-hello-world-en-amfphp-avec-flex20 
))
 
If you tried one time, coud you explain us 
please.
 
Thank you, 
 
William.
 





--
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 1.5 to 2.0 migration problem

2006-03-26 Thread Alex Uhlmann
Hi,

Your top-level Application stored in Application.application is not
dynamic. You can't add or access custom objects in there. You could have
done this in Flex 1.5, though. Just change the location of your custom
modGen property to an instance property of a custom class in your
application. Using Cairngorm, you could use the ModelLocator for this.
Note, that you cannot bind to class properies, only to instance
properies. 

Best,
Alex


Alex Uhlmann
Consultant (Rich Internet Applications)
Adobe Consulting
Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
p: +44 (0) 131 338 6969
m: +44 (0) 7917 428 951 
[EMAIL PROTECTED] 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of oiland_barry
Sent: 26 March 2006 10:05
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 1.5 to 2.0 migration problem

I have performed a 1.5 to 2.0 migration and i have almost got things
working after alot of headaches (im really wondering if its worth my
while to migrate!).

I have got rid of all my errors, but when i run the application i get
the following error:

  ReferenceError: Error #1069: Property application not found on
  complantAdd and there is no default value
at _complantAddWatcherSetupUtil/setup()
at complantAdd/complantAdd::_complantAdd_bindingsSetup()
at complantAdd/initialize()

I have a main mxml application file in which i use an instance of a
local mxml component:
  

In this component, i have a combobox which i bind the contents of a data
model to (the model 'modGen' is defined in the main mxml
application): 
  


I guess the error is because of the binding above, but im totally lost
and it starting to make me think that i should just stick with Flex 1.5!
Maybe this is not enough information for someone to comment on, if more
is needed (like a code listing) then please let me know.

Please help anybody, quickly would be good... cos i cant spend much more
time on getting nothing done, im getting paid by the hour and not able
to produce anything!







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



 





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

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

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

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





[flexcoders] Simple Question (Flex 1.5) about LinkBar

2006-03-26 Thread digital_eyezed
Is there any wy to have the LinkBar color with a gradient like the 
headerColors of a panel? Or is it only single color fills without 
having to extend it?

Cheers,

Iain






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

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

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

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





[flexcoders] Flex 1.5 to 2.0 migration problem

2006-03-26 Thread oiland_barry
I have performed a 1.5 to 2.0 migration and i have almost got things
working after alot of headaches (im really wondering if its worth my
while to migrate!).

I have got rid of all my errors, but when i run the application i get
the following error:

  ReferenceError: Error #1069: Property application not found on
  complantAdd and there is no default value
at _complantAddWatcherSetupUtil/setup()
at complantAdd/complantAdd::_complantAdd_bindingsSetup()
at complantAdd/initialize()

I have a main mxml application file in which i use an instance of a
local mxml component:
  

In this component, i have a combobox which i bind the contents of a
data model to (the model 'modGen' is defined in the main mxml
application): 
  


I guess the error is because of the binding above, but im totally lost
and it starting to make me think that i should just stick with Flex
1.5!  Maybe this is not enough information for someone to comment on,
if more is needed (like a code listing) then please let me know.

Please help anybody, quickly would be good... cos i cant spend much
more time on getting nothing done, im getting paid by the hour and not
able to produce anything!







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

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

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

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





[flexcoders] Flex & Mac

2006-03-26 Thread John



Hi Everybody,I downloaded the Flex SDK 2.0 (http://www.macromedia.com/cfusion/entitlement/index.cfm?e=labs)I hae some questions:How do I compile the flex and actionscript files? I tried:java -jar flex/lib/mxmlc.jar -flexlib flex/frameworks/HelloMXML.mxmlI get the error message:Unable to access jarfile {flex}/lib/mxmlc.jarsame problem with actionscript.java -jar flex/lib/mxmlc.jar -flexlib flex/frameworks/HelloAS3.asI did check, and this file does exsist in flex/lib/mxmlc.jarI haved flex at /Users/johnbarrett/flexI am just hoping to compile the flex application to get the swfsI tried many different ways to get this to work, but could not. The flex download came with samples, and I am lost on how to get those compiled too:(I heard about Ant too, is that a better way? is ant
 java? I am just taking java I now at school, learning, but no where near to "knowing java"can anybody offer me some help?Thanks so much,John
   

		Blab-away for as little as 1¢/min. Make  PC-to-Phone Calls using 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





  




  
  
  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.