Re: [flexcoders] Is it possible to add Flex components to the Stage?

2011-09-23 Thread ganaraj p r
Flex is a complete framework and each and every component follows the rules
of the framework. Without the framework running in the background its
probably impossible to get a component working unless you do a lot of work
to make it work. Perhaps much easier to write a separate AS3 component.

On Thu, Sep 22, 2011 at 11:22 PM, Jeffry Houser jef...@dot-com-it.comwrote:

 **



  addElement is only defined in spark components; that will just throw a
 compile time error.

  I'm not sure why you want to add a Flex Component directly to the stage.
 I suppose in theory you could; but that would bypass all the Flex Framework
 code to position and size the component.  You'd, in essence, need to write
 your own layout manager. that performs the same functionality as the Flex
 Layout manager.

  In the context of Flex; it probably isn't a good idea to access the stage
 directly.

 On 9/22/2011 2:33 PM, grimmwerks wrote:



 Try stage.addElement  rather than addChild?


  On Sep 22, 2011, at 2:30 PM, Hogs Haven wrote:

  From everything I've read, Flex components can only be added to Flex
 Components (ie: VBox to Application, VGroup to Panel, etc)

 I'm working in an AS3 view library (no Flex, just Sprites) where I need to
 add a Scrollable container component to the Stage on a click event. There's
 no way to do this as I see it unless I write my own Scroll container, use
 Flex SDK (don't think this works), or use fl.containers.ScrollPane (which is
 not an option since we're not using a .fla)

 So basically, I'm trying to accomplish this, as simple runnable example,
 but it fails silently and nothing appears...any ideas? Thanks.


 ?xml version=1.0 encoding=utf-8?
 s:Application xmlns:fx=http://ns.adobe.com/mxml/2009;
 xmlns:s=library://ns.adobe.com/flex/spark
 xmlns:mx=library://ns.adobe.com/flex/mx
 creationComplete=application1_creationCompleteHandler(event)
  fx:Script
  ![CDATA[
   import mx.containers.Panel;
   import mx.core.UIComponent;
   import mx.events.FlexEvent;


 protected function
 application1_creationCompleteHandler(event:FlexEvent):void
 {
  addEventListener(Event.ADDED_TO_STAGE, onAdded);
 }

 private function onAdded(e:Event):void
 {
var myPanel : Panel = new Panel();
myPanel.width=100;
myPanel.height=100;
stage.addChild(myPanel); //nothing happens
 }
  ]]
  /fx:Script
  fx:Declarations/fx:Declarations

 /s:Application




 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location:
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo!http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo%21Groups
  Links




   Garry Schafer
 grimmwerks
 gr...@grimmwerks.com
 portfolio: www.grimmwerks.com/







 --
 Jeffry Houser
 Technical Entrepreneur203-379-0773
 --http://www.flextras.com?c=104
 UI Flex Components: Tested! Supported! Ready!
 --http://www.theflexshow.comhttp://www.jeffryhouser.comhttp://www.asktheflexpert.com
 --
 Part of the DotComIt Brain Trust

  




-- 
Regards,
Ganaraj P R


Re: [flexcoders] Is it possible to add Flex components to the Stage?

2011-09-22 Thread grimmwerks
Try stage.addElement  rather than addChild?


On Sep 22, 2011, at 2:30 PM, Hogs Haven wrote:

 From everything I've read, Flex components can only be added to Flex 
 Components (ie: VBox to Application, VGroup to Panel, etc)
 
 I'm working in an AS3 view library (no Flex, just Sprites) where I need to 
 add a Scrollable container component to the Stage on a click event. There's 
 no way to do this as I see it unless I write my own Scroll container, use 
 Flex SDK (don't think this works), or use fl.containers.ScrollPane (which is 
 not an option since we're not using a .fla)
 
 So basically, I'm trying to accomplish this, as simple runnable example, but 
 it fails silently and nothing appears...any ideas? Thanks.
 
 
 ?xml version=1.0 encoding=utf-8?
 s:Application xmlns:fx=http://ns.adobe.com/mxml/2009; 
  xmlns:s=library://ns.adobe.com/flex/spark 
  xmlns:mx=library://ns.adobe.com/flex/mx
 creationComplete=application1_creationCompleteHandler(event)
   fx:Script
   ![CDATA[
   import mx.containers.Panel;
   import mx.core.UIComponent;
   import mx.events.FlexEvent;
   
   
 protected function application1_creationCompleteHandler(event:FlexEvent):void
 {
  addEventListener(Event.ADDED_TO_STAGE, onAdded);
 }
   
 private function onAdded(e:Event):void 
 {
var myPanel : Panel = new Panel();
myPanel.width=100;
myPanel.height=100;
stage.addChild(myPanel); //nothing happens
 }
   ]]
   /fx:Script
   fx:Declarations/fx:Declarations
   
 /s:Application
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location: 
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
 
 
 

Garry Schafer
grimmwerks
gr...@grimmwerks.com
portfolio: www.grimmwerks.com/







Re: [flexcoders] Is it possible to add Flex components to the Stage?

2011-09-22 Thread Jeffry Houser


 addElement is only defined in spark components; that will just throw a 
compile time error.


 I'm not sure why you want to add a Flex Component directly to the 
stage.  I suppose in theory you could; but that would bypass all the 
Flex Framework code to position and size the component.  You'd, in 
essence, need to write your own layout manager. that performs the same 
functionality as the Flex Layout manager.


 In the context of Flex; it probably isn't a good idea to access the 
stage directly.


On 9/22/2011 2:33 PM, grimmwerks wrote:


Try stage.addElement  rather than addChild?



On Sep 22, 2011, at 2:30 PM, Hogs Haven wrote:

From everything I've read, Flex components can only be added to Flex 
Components (ie: VBox to Application, VGroup to Panel, etc)


I'm working in an AS3 view library (no Flex, just Sprites) where I 
need to add a Scrollable container component to the Stage on a click 
event. There's no way to do this as I see it unless I write my own 
Scroll container, use Flex SDK (don't think this works), or use 
fl.containers.ScrollPane (which is not an option since we're not 
using a .fla)


So basically, I'm trying to accomplish this, as simple runnable 
example, but it fails silently and nothing appears...any ideas? Thanks.



?xml version=1.0 encoding=utf-8?
s:Application xmlns:fx=http://ns.adobe.com/mxml/2009;
  xmlns:s=library://ns.adobe.com/flex/spark
  xmlns:mx=library://ns.adobe.com/flex/mx
creationComplete=application1_creationCompleteHandler(event)
fx:Script
![CDATA[
import mx.containers.Panel;
import mx.core.UIComponent;
import mx.events.FlexEvent;


protected function 
application1_creationCompleteHandler(event:FlexEvent):void

{
 addEventListener(Event.ADDED_TO_STAGE, onAdded);
}

private function onAdded(e:Event):void
{
   var myPanel : Panel = new Panel();
   myPanel.width=100;
   myPanel.height=100;
   stage.addChild(myPanel); //nothing happens
}
]]
/fx:Script
fx:Declarations/fx:Declarations

/s:Application






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
Search Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo%21 
Groups Links



flexcoders-fullfeatu...@yahoogroups.com 
mailto:flexcoders-fullfeatu...@yahoogroups.com





Garry Schafer
grimmwerks
gr...@grimmwerks.com mailto:gr...@grimmwerks.com
portfolio: www.grimmwerks.com/ http://www.grimmwerks.com/









--
Jeffry Houser
Technical Entrepreneur
203-379-0773
--
http://www.flextras.com?c=104
UI Flex Components: Tested! Supported! Ready!
--
http://www.theflexshow.com
http://www.jeffryhouser.com
http://www.asktheflexpert.com
--
Part of the DotComIt Brain Trust



Re: [flexcoders] Is this possible with Flex 4?

2010-08-20 Thread Wesley Acheson
I don't think flex can interact with a third party website *except* to post
data to that website.  It would be a major security risk if you could do all
of this.

AIR may be able to do it but I believe only if the origional website owners
have a crossdomain.xml file.

On Fri, Aug 20, 2010 at 10:38 PM, George georgelav...@yahoo.com wrote:



 Hey guys!

 I love this group...I've read a lot of good conversations here.

 I have a question for you guys. I'm just starting my journey in Flex (been
 through the Lynda.com training) and I want to create an application like
 this:

 1) Allows the user to add any number of websites to a navigation bar
 2) Allows the user to enter information like Name, email, username, and
 password.
 3) When the website is clicked on from the side nav bar, a different part
 of the screen will automatically go to the website's registration page and
 auto-fill in the right info (for example, let's say this page:
 http://questionland.com/signup) and click the button to sign up or
 register
 4) When a different button is pressed, it logs into their email, reads all
 of the emails, and clicks on all of the activation links

 Is this possible with Flex? And if so, how (can you guide me to some
 resources at least)?
 I know how to do parts 1 and 2. I'm not sure whether flex has the
 capability to interact between Flex and a website's registration form. I
 also don't know if Flex can be coded to read through email and click the
 activation link.

 Any help would be truly appreciated

 Thanks so much!

  



RE: [flexcoders] Is this possible with Flex 4?

2010-08-20 Thread Bill Brutzman
While it may be possible to do this all from FB, for this app, some
middleware would help to make the app more robust.  Check out Adobe's
ColdFusion.  There are a few good CF courses on Lynda.

 

--Bill

 

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of George
Sent: Friday, August 20, 2010 4:39 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is this possible with Flex 4?

 

  

Hey guys!

I love this group...I've read a lot of good conversations here.

I have a question for you guys. I'm just starting my journey in Flex (been
through the Lynda.com training) and I want to create an application like
this:

1) Allows the user to add any number of websites to a navigation bar
2) Allows the user to enter information like Name, email, username, and
password.
3) When the website is clicked on from the side nav bar, a different part of
the screen will automatically go to the website's registration page and
auto-fill in the right info (for example, let's say this page:
http://questionland.com/signup) and click the button to sign up or register
4) When a different button is pressed, it logs into their email, reads all
of the emails, and clicks on all of the activation links

Is this possible with Flex? And if so, how (can you guide me to some
resources at least)?
I know how to do parts 1 and 2. I'm not sure whether flex has the capability
to interact between Flex and a website's registration form. I also don't
know if Flex can be coded to read through email and click the activation
link.

Any help would be truly appreciated

Thanks so much!





Re: [flexcoders] Is it possible to define a component's skin within the component itself using something like fx:component?

2010-05-27 Thread Oleg Sivokon
Nope. Or maybe I don't know how, and maybe someone will correct me. I think
this was one of the first feature requests after Spark framework was
released.


Re: [flexcoders] Is it possible to define a component's skin within the component itself using something like fx:component?

2010-05-27 Thread Baz
Thank you.


Re: [flexcoders] Is it possible to remove the 3d effects on controls like dropdownlist and scroller without extending them?

2010-05-21 Thread Alex Harui
You should be able to do that with skins.


On 5/21/10 10:32 AM, Baz li...@thinkloop.com wrote:






is it possible to remove the 3d effects on controls like dropdownlist and 
scroller without extending them? I just want them to be flat.

Thanks,
Baz





--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui


Re: [flexcoders] Is it possible to make multiple labels selectable as one text block like in regular html

2010-05-21 Thread Alex Harui
That’s not a feature of the framework, but if you write enough code I think it 
should be possible.


On 5/21/10 10:37 AM, Baz li...@thinkloop.com wrote:






If you have an item renderer with multiple labels like:

s:Group
s:Label text=abc /
s:Label text=def /
s:Label text=ghi /
/s:Group

Is it possible to make the text selectable across renderers and labels as one 
logical block exactly like in html?






--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui


Re: [flexcoders] Is it possible to make multiple labels selectable as one text block like in regular html

2010-05-21 Thread Baz
I don't mind writing code, any clues on where to start? Perhaps something
like a global selection manager that detects mousedown and secretly
traverses all the components behind the scenes?



On Fri, May 21, 2010 at 11:14 AM, Alex Harui aha...@adobe.com wrote:



 That’s not a feature of the framework, but if you write enough code I think
 it should be possible.



 On 5/21/10 10:37 AM, Baz li...@thinkloop.com wrote:






 If you have an item renderer with multiple labels like:

 s:Group
 s:Label text=abc /
 s:Label text=def /
 s:Label text=ghi /
 /s:Group

 Is it possible to make the text selectable across renderers and labels as
 one logical block exactly like in html?






 --
 Alex Harui
 Flex SDK Team
 Adobe System, Inc.
 http://blogs.adobe.com/aharui

  



Re: [flexcoders] Is it possible to make multiple labels selectable as one text block like in regular html

2010-05-21 Thread Alex Harui
Yeah, probably two pieces: some MOUSE_DOWN/MOUSE_MOVE/MOUSE_UP code that draws 
a selection rectangle, and code that walks the tree of display objects using 
getChildAt, checks to see if the child is contained in the rectangle, and sees 
if it has any text.


On 5/21/10 1:08 PM, Baz li...@thinkloop.com wrote:






I don't mind writing code, any clues on where to start? Perhaps something like 
a global selection manager that detects mousedown and secretly traverses all 
the components behind the scenes?



On Fri, May 21, 2010 at 11:14 AM, Alex Harui aha...@adobe.com wrote:





That’s not a feature of the framework, but if you write enough code I think it 
should be possible.




On 5/21/10 10:37 AM, Baz li...@thinkloop.com http://li...@thinkloop.com  
wrote:






If you have an item renderer with multiple labels like:

s:Group
s:Label text=abc /
s:Label text=def /
s:Label text=ghi /
/s:Group

Is it possible to make the text selectable across renderers and labels as one 
logical block exactly like in html?






--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui


Re: [flexcoders] Is it possible to make multiple labels selectable as one text block like in regular html

2010-05-21 Thread Baz
It would be very beneficial if Flex/we could interact with all text in a
particular view as a single, separate logical unit on its own *layer*.


RE: [flexcoders]Is it possible to write a googletalk client in AIR

2009-08-12 Thread Tracy Spratt
I can't speak to googletalk specifically, but I am working on a project to
build a front end to google analytics.  If googletalk uses the standard
google api stuff I may be able to help a little, though I am learning as I
go.

 

One problem I have found is that while the API is available through straight
http, the docs are heavily oriented around the client libraries, like java,
javascript, php, python and ruby, and straight http examples are not easy to
find.  Anyone who can point to some examples will help me a lot.  Of course,
if someone will write a library in AS3, that would be even better!

 

I can provide AS3 examples of clientLogin and account/Profile list retrieval
but that is as far as I have gotten.  I will be attempting to get my first
GA data in the next few days. 

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of dorkie dork from dorktown
Sent: Wednesday, August 12, 2009 4:16 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]Is it possible to write a googletalk client in AIR

 

  

If so can you provide some guidance before hand? Thanks!





Re: [flexcoders]Is it possible to write a googletalk client in AIR

2009-08-12 Thread Ian Thomas
I believe GoogleTalk uses the open XMPP format. There's an AS3 library
for XMPP here:

http://code.google.com/p/as3xmpp/

HTH,
   Ian

On Wed, Aug 12, 2009 at 9:16 PM, dorkie dork from
dorktowndorkiedorkfromdorkt...@gmail.com wrote:


 If so can you provide some guidance before hand? Thanks!

 


RE: [flexcoders] PopUp databinding - possible?

2009-08-07 Thread Tracy Spratt
Sure.  In the pop-up, define a bindable variable, say

[Bindable]private var  _app:MyMainAppFileName;

 

In a creation complete handler, assign:

_var = Application.application as MyMainAppFileName;

 

Now you can bind to any bindable property in MyMainAppFileName

 

If that is backwards to what you want, then I advise dispatching events from
the Pop-up.  Remember, binding is just an event mechanism that is created by
the compiler.

 

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Dave Cates
Sent: Friday, August 07, 2009 10:01 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] PopUp databinding - possible?

 

  

Hi all,

I have an mxml component that I am displaying via the popup manager method.

But, I have data that is sent to this popup that needs to be data bound -
database updates etc.

So, how do you databind to the vars inside the popup? If the MXML component
was on the stage as normal I'd have no problems but the popup, my nature, is
created at run-time.

So is it possible and if so, how?!

Thanks!
Dave. 





Re: [flexcoders] PopUp databinding - possible?

2009-08-07 Thread Dave Cates
Hi Tracey,

Thanks for your advice.

The compiler is ing Œaccess of undefined property Application¹

Any ideas?

Thanks,
Dave.

From: Tracy Spratt tr...@nts3rd.com
Reply-To: flexcoders@yahoogroups.com
Date: Fri, 7 Aug 2009 10:31:06 -0400
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] PopUp databinding - possible?

 
 
 

Sure.  In the pop-up, define a bindable variable, say
[Bindable]private var  _app:MyMainAppFileName;
 
In a creation complete handler, assign:
_var = Application.application as MyMainAppFileName;
 
Now you can bind to any bindable property in MyMainAppFileName
 
If that is backwards to what you want, then I advise dispatching events from
the Pop-up.  Remember, binding is just an event mechanism that is created by
the compiler.
 
 

Tracy Spratt,
Lariat Services, development services available


From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Dave Cates
Sent: Friday, August 07, 2009 10:01 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] PopUp databinding - possible?
 
  

Hi all,

I have an mxml component that I am displaying via the popup manager method.

But, I have data that is sent to this popup that needs to be data bound ­
database updates etc.

So, how do you databind to the vars inside the popup? If the MXML component
was on the stage as normal I¹d have no problems but the popup, my nature, is
created at run-time.

So is it possible and if so, how?!

Thanks!
Dave. 
  


 



RE: [flexcoders] Is it possible to do a right-click ContextMenu for a TabNavigator tab?

2009-04-15 Thread Tracy Spratt
Consider TabBar and Viewstack, it is more flexible than TabNavigator.

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of e_baggg
Sent: Wednesday, April 15, 2009 2:43 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to do a right-click ContextMenu for a
TabNavigator tab?

 






I have a requirement where a user can right-click any one of the tabs and
have options to delete, duplicate, disable, etc. 

The tabs (children) of the mx:TabNavigator are VBoxs, and the tab name is
pulled from the label attribute of the VBox. I can't put the ContextMenu
against the VBox otherwise the entire area of the opened tab has the
right-click menu. In fact, the ContextMenu only shows for the display area
below the tab (not including the tab).

Any ideas? thanks in advance for your help.





RE: [flexcoders] Is it possible to include a .as file in actionscript within a function?

2009-04-07 Thread Battershall, Jeff
What problem are you trying to solve by taking this approach? Code
re-use? Wny not write a class you can instantiate wherever you want?

Jeff

-Original Message-
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of sailorsea21
Sent: Tuesday, April 07, 2009 12:58 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to include a .as file in
actionscript within a function?


Hi everyone, is it possible to include an .as file in actionscript
within a function but not have the included .as be restricted within
the function?

private function loaded():void
{
include axis.as;
}

Above, the include file will only apply to the function. How can I
include a file to the main file or app???

Thanks.

-David






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location:
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-
1e62079f6847
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
Links





Re: [flexcoders] Is it possible to include a .as file in actionscript within a function?

2009-04-07 Thread - -
If my class creates a graph with a dropdown menu, how can I add it as a child 
to a component on my MXML module?





From: Battershall, Jeff jeff.battersh...@dowjones.com
To: flexcoders@yahoogroups.com
Sent: Tuesday, April 7, 2009 1:24:50 PM
Subject: RE: [flexcoders] Is it possible to include a .as file in 
actionscript within a function?


What problem are you trying to solve by taking this approach? Code
re-use? Wny not write a class you can instantiate wherever you want?

Jeff

-Original Message-
From: flexcod...@yahoogro ups.com [mailto:flexcod...@yahoogro ups.com] On
Behalf Of sailorsea21
Sent: Tuesday, April 07, 2009 12:58 PM
To: flexcod...@yahoogro ups.com
Subject: [flexcoders] Is it possible to include a .as file in
actionscript within a function?

Hi everyone, is it possible to include an .as file in actionscript
within a function but not have the included .as be restricted within
the function?

private function loaded():void
{
include axis.as;
}

Above, the include file will only apply to the function. How can I
include a file to the main file or app???

Thanks.

-David

 - - --

--
Flexcoders Mailing List
FAQ: http://groups. yahoo.com/ group/flexcoders /files/flexcoder sFAQ.txt
Alternative FAQ location:
https://share. acrobat.com/ adc/document. do?docid= 942dbdc8- e469-446f- b4cf-
1e62079f6847
Search Archives:
http://www.mail- archive.com/ flexcoders% 40yahoogroups. comYahoo! Groups
Links





  

Re: [flexcoders] Is it possible to include a .as file in actionscript within a function?

2009-04-07 Thread - -
Thanks Jeff!


 




From: Battershall, Jeff jeff.battersh...@dowjones.com
To: flexcoders@yahoogroups.com
Sent: Tuesday, April 7, 2009 2:24:27 PM
Subject: RE: [flexcoders] Is it possible to include a .as file in 
actionscript within a function?


var myObj:MyClass = new MyClass();
 
addChild(myObj) ;
-Original Message-
From: flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On 
Behalf Of - -
Sent: Tuesday, April 07, 2009 1:49 PM
To: flexcod...@yahoogro ups.com
Subject: Re: [flexcoders] Is it possible to include a .as file in 
actionscript within a function?


If my class creates a graph with a dropdown menu, how can I add it as a child 
to a component on my MXML module?





From: Battershall, Jeff jeff.battershall@ dowjones. com
To: flexcod...@yahoogro ups.com
Sent: Tuesday, April 7, 2009 1:24:50 PM
Subject: RE: [flexcoders] Is it possible to include a .as file in 
actionscript within a function?


What problem are you trying to solve by taking this approach? Code
re-use? Wny not write a class you can instantiate wherever you want?

Jeff

-Original Message-
From: flexcod...@yahoogro ups.com [mailto:flexcod...@yahoogro ups.com] On
Behalf Of sailorsea21
Sent: Tuesday, April 07, 2009 12:58 PM
To: flexcod...@yahoogro ups.com
Subject: [flexcoders] Is it possible to include a .as file in
actionscript within a function?

Hi everyone, is it possible to include an .as file in actionscript
within a function but not have the included .as be restricted within
the function?

private function loaded():void
{
include axis.as;
}

Above, the include file will only apply to the function. How can I
include a file to the main file or app???

Thanks.

-David

 - - --

--
Flexcoders Mailing List
FAQ: http://groups. yahoo.com/ group/flexcoders /files/flexcoder sFAQ.txt
Alternative FAQ location:
https://share. acrobat.com/ adc/document. do?docid= 942dbdc8- e469-446f- b4cf-
1e62079f6847
Search Archives:
http://www.mail- archive.com/ flexcoders% 40yahoogroups. comYahoo! Groups
Links






  

RE: [flexcoders] Is it possible to include a .as file in actionscript within a function?

2009-04-07 Thread Battershall, Jeff
var myObj:MyClass = new MyClass();
 
addChild(myObj);

-Original Message-
From: flexcoders@yahoogroups.com
[mailto:flexcod...@yahoogroups.com] On Behalf Of - -
Sent: Tuesday, April 07, 2009 1:49 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is it possible to include a .as file
in actionscript within a function?


If my class creates a graph with a dropdown menu, how can I add
it as a child to a component on my MXML module?





From: Battershall, Jeff jeff.battersh...@dowjones.com
To: flexcoders@yahoogroups.com
Sent: Tuesday, April 7, 2009 1:24:50 PM
Subject: RE: [flexcoders] Is it possible to include a .as file
in actionscript within a function?



What problem are you trying to solve by taking this approach?
Code
re-use? Wny not write a class you can instantiate wherever you
want?

Jeff

-Original Message-
From: flexcod...@yahoogro ups.com
mailto:flexcoders%40yahoogroups.com  [mailto:flexcod...@yahoogro
ups.com mailto:flexcoders%40yahoogroups.com ] On
Behalf Of sailorsea21
Sent: Tuesday, April 07, 2009 12:58 PM
To: flexcod...@yahoogro ups.com
mailto:flexcoders%40yahoogroups.com 
Subject: [flexcoders] Is it possible to include a .as file in
actionscript within a function?

Hi everyone, is it possible to include an .as file in
actionscript
within a function but not have the included .as be restricted
within
the function?

private function loaded():void
{
include axis.as http://axis.as/ ;
}

Above, the include file will only apply to the function. How can
I
include a file to the main file or app???

Thanks.

-David

 - - --

--
Flexcoders Mailing List
FAQ: http://groups. yahoo.com/ group/flexcoders /files/flexcoder
sFAQ.txt
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
Alternative FAQ location:
https://share. acrobat.com/ adc/document. do?docid= 942dbdc8-
e469-446f- b4cf-
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf
- 
1e62079f6847
Search Archives:
http://www.mail- archive.com/ flexcoders% 40yahoogroups.
comYahoo http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo
! Groups
Links










RE: [flexcoders] is it possible to track visitors / the page an swf is embedded on

2009-02-17 Thread Tracy Spratt
Look into the BrowserManager, perhaps it will help.

 

Tracy Spratt 
Lariat Services 

Flex development bandwidth available 



From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of uclamerrick
Sent: Wednesday, February 18, 2009 12:24 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] is it possible to track visitors / the page an swf
is embedded on

 

Lets say I run a video site like youtube, how can I capture the url of
the page where my swf object is embedded.

For example someone takes the embed code from
http://youtube.com/videoid123 http://youtube.com/videoid123  and
places it onto the page at
http://myblog.wordpress.com/this_video_rocks
http://myblog.wordpress.com/this_video_rocks 

I know how to use HTTPService to report this information back to my
server and store it in the database, but I don't know how to use Flex
3 / Actionscript 3 to determine the URL of the page that embeds an
swf. In the example above I would want to capture:

http://myblog.wordpress.com/this_video_rocks
http://myblog.wordpress.com/this_video_rocks 

Thanks.





RE: [flexcoders] Is it possible to set different width for columns in HorizontalList ?

2009-02-16 Thread Alex Harui
All cells in HorizontalList must be the same size.  If you don't have lots of 
images, just use HBox and Repeater

Alex Harui
Flex SDK Developer
Adobe Systems Inc.http://www.adobe.com/
Blog: http://blogs.adobe.com/aharui

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of yossi.baram
Sent: Sunday, February 15, 2009 10:05 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to set different width for columns in 
HorizontalList ?


Hi,
I'm created a new HorizontalList()
and tried to set different width of its columns (by override set Data
())
but its always gives me the same width...
Can i set the columns width for HorizontalList or is it fixed?

Thanks

Jo



RE: [flexcoders] Is it possible to have the swf and LCDS app on different servers?

2009-02-04 Thread Seth Hodgson
 I have a flex client from which I would like to make RemoteObject calls 
 through LCDS to a J2EE server.

Not possible. LCDS remoting destinations invoke methods on local Java classes. 
These Java classes that you've exposed as remoting destinations could always 
make remote calls to other resources on other servers (i.e. RMI, JINI, etc.).

 Is it possible for my swf to be on a different server from my LCDS app?
 If so, how should my client be configured, compiled and deployed? What 
 would be deployed to my LCDS server?

Yes. You'd compile your swf against a services-config.xml file containing 
channel-definitions that use fully qualified URLs that refer to your LCDS 
server. Then you'd deploy this swf on some other server (maybe an Apache web 
tier). You'll need a crossdomain.xml file on your LCDS server to allow network 
access from this remotely hosted swf.

 How would my client know to call the server?

Based on the fully qualified URLs in the services-config.xml file you compile 
against. Or when your app starts up you could issue a URLRequest for a response 
containing a list the channels/endpoint URLs/etc. it should use to talk to a 
given LCDS server. Using this list, your app startup code would create and 
configure a ChannelSet/Channels and then assign that to your service components 
(RemoteObject, DataService, etc.).

Best,
Seth 


Re: [flexcoders] Is this possible?

2008-10-23 Thread Paul Andrews

- Original Message - 
From: donvoltz [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, October 23, 2008 2:19 PM
Subject: [flexcoders] Is this possible?


 Hello,

 I am working on a large app using Cairngorm and am trying to develop
 a sort of copmplex component amd am curious if this is a workable
 solution.

 I have created a custom component that extends a titleWindow. The
 data for this component will come from an ArrayCollection in my
 ModelLocator (ie, each of these components, there will be 30, will
 use getItemAt(an id number) to obtain the data using binding.

 What I am not sure is the following. I obtain the number of days in a
 month and cycle throught to create a custom TitleWindow for each day
 using actionscript. Each of these classes are then added to another
 ArrayCollection in the ModelLocator. This ArrayCollection is then
 regenerated with new custom components when a new month is selected.

 Now in my main application, I create a TileList and set the
 dataProvider to the ArrayCollection on the ModelLocator where these
 custom component classes exist.

 Will this work?? In my initial work, I seem to have a TileList that
 does contain these components, however, They are not displaying the
 title or other information that I added into each component.

Your tileList will expect to find label and icon fields in dataProvider, 
otherwise you'll need an itemRenderer to display the tiles (binding to the 
fields in the data).
Sounds like:

1) Your don't have an item renderer and the fields in your dataprovider 
don't include label or icon, or
2) You have an itemRenderer and the fields displyed in your itemRenderer 
aren't bound to the fields of your data object that is passed to it, or
3) Youn have no data!

Paul.


 I hope it is clear what I am trying to do. I want to make a calendar
 type component with each day as a custom component. The day is
 dynamically bound to a subset of an ArrayCollection. I also need to
 have the month (ie each day of the month would need to change as the
 month and year changes).

 Any help if I am on the right direction is appreciate.

 Thanks in advance

 Don


 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location: 
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups 
 Links



 



RE: [flexcoders] Is it possible to use OLAPResult as DataProvider for AdvancedDataGrid

2008-10-17 Thread Christophe Jolif
You should better use OLAPDataGrid?
 
Christophe



From: flexcoders@yahoogroups.com on behalf of thakkar_mithun2000
Sent: Fri 17/10/2008 10:39
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to use OLAPResult as DataProvider for 
AdvancedDataGrid



Hello,

Is it possible to use OLAPResult as DataProvider for AdvancedDataGrid?

Regards,
Mithun




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups Links







Re: [flexcoders] Is It possible to use ressources in a CustomPreloader

2008-10-09 Thread Haykel BEN JEMIA
I don't know if there's a way to access it (probably it's not even
initialized at that point), but even if you could, this would make your
preloader too heavy I think. I would put static text in the preloader and
display it depending on the user's preferred language. I don't know how you
detect the language, but I think it should be doable with javascript and
ExternalInterface (perhaps there's a simpler way?).

Hope this helps!


On Wed, Oct 8, 2008 at 2:58 PM, Farid SALAH [EMAIL PROTECTED] wrote:

   Hi folks,

 We are using the FB3-AS3-BazeDS-Tomcat combination.
 We are currently deploying a multi-language application (French,
 English and Russian).

 But we are stuck with our CustomPreloader. It refuses to display a
 localized text.

 Does someone know how to get a hold on the ResourceManager in the
 Preloader as we want to display some label with ProgressBar ?

 Thanks again

 Farid

  




-- 
Haykel Ben Jemia

Allmas
Web  RIA Development
http://www.allmas-tn.com


RE: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-11 Thread Gregor Kiddie
In all seriousness... any scrollbar skinning has always been along the
same lines as these posts.

http://axel.cfwebtools.com/index.cfm/2007/3/27/Custom-Scroll-Bar-Using-C
SS

http://breathflex.blogspot.com/2007/03/skinning-scrollbar-in-flex.html

http://www.gskinner.com/blog/archives/2008/05/designer_scroll.html

 

The Grant Skinner one in particular is pretty useful (as Grant always
is).

Hope this helps somewhat.

 

Oh, and my previous comment wasn't really directed at anyone, it was, as
Tim pointed out, a dig at English speakers ability to not only mangle
other peoples, but also our own language, with surprising regularity.

 

Gk.

Gregor Kiddie
Senior Developer
INPS

Tel:   01382 564343

Registered address: The Bread Factory, 1a Broughton Street, London SW8
3QJ

Registered Number: 1788577

Registered in the UK

Visit our Internet Web site at www.inps.co.uk
blocked::http://www.inps.co.uk/ 

The information in this internet email is confidential and is intended
solely for the addressee. Access, copying or re-use of information in it
by anyone else is not authorised. Any views or opinions presented are
solely those of the author and do not necessarily represent those of
INPS or any of its affiliates. If you are not the intended recipient
please contact [EMAIL PROTECTED]



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of anuj sharma
Sent: 10 September 2008 19:16
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is it possible to increase the heigth and
width of scroll bars in any container?

 

Alright guys
I found sample somehow related to that.
http://www.kerkness.ca/flexexamples/ScrollSkin/ScollSkin.html
http://www.kerkness.ca/flexexamples/ScrollSkin/ScollSkin.html 
That can give me little bit start to do something what i am looking fro.
If you guys have any better one please let me know .
Thanks for ur help
Anuj



On Wed, Sep 10, 2008 at 10:12 AM, anuj sharma [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

Hi Greg
Thanks for the reply. I am not sure if i get that. How would I use
renderer in my case? Can you show me any example where that have user
rendering in HBox' s scroll bar case. I used rendering for loading
images in the HBox but to cutomize scroll er , i haven't soemthign like
that LOL :-). Please send em some code or online example where they have
customized the scroll bar of HBox or VBox or any container.
Again i appreciate your help.
Thanks
Anuj

 



Re: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-11 Thread anuj sharma
Awesome Gregor
Great
These links will be definitely helpful.
Thanks a lot for your help Gregor.
I really appreciate that
Anuj

On Thu, Sep 11, 2008 at 12:11 AM, Gregor Kiddie [EMAIL PROTECTED]wrote:

In all seriousness… any scrollbar skinning has always been along the
 same lines as these posts.

 http://axel.cfwebtools.com/index.cfm/2007/3/27/Custom-Scroll-Bar-Using-CSS

 http://breathflex.blogspot.com/2007/03/skinning-scrollbar-in-flex.html

 http://www.gskinner.com/blog/archives/2008/05/designer_scroll.html



 The Grant Skinner one in particular is pretty useful (as Grant always is).

 Hope this helps somewhat.



 Oh, and my previous comment wasn't really directed at anyone, it was, as
 Tim pointed out, a dig at English speakers ability to not only mangle other
 peoples, but also our own language, with surprising regularity.



 Gk.

 *Gregor Kiddie*
 Senior Developer
 *INPS*

 Tel:   01382 564343

 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ

 Registered Number: 1788577

 Registered in the UK

 Visit our Internet Web site at www.inps.co.uk

 The information in this internet email is confidential and is intended
 solely for the addressee. Access, copying or re-use of information in it by
 anyone else is not authorised. Any views or opinions presented are solely
 those of the author and do not necessarily represent those of INPS or any of
 its affiliates. If you are not the intended recipient please contact
 [EMAIL PROTECTED]
   --

 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *anuj sharma
 *Sent:* 10 September 2008 19:16
 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] Is it possible to increase the heigth and
 width of scroll bars in any container?



 Alright guys
 I found sample somehow related to that.
 http://www.kerkness.ca/flexexamples/ScrollSkin/ScollSkin.html
 That can give me little bit start to do something what i am looking fro.
 If you guys have any better one please let me know .
 Thanks for ur help
 Anuj

  On Wed, Sep 10, 2008 at 10:12 AM, anuj sharma [EMAIL PROTECTED] wrote:

 Hi Greg
 Thanks for the reply. I am not sure if i get that. How would I use renderer
 in my case? Can you show me any example where that have user rendering in
 HBox' s scroll bar case. I used rendering for loading images in the HBox but
 to cutomize scroll er , i haven't soemthign like that LOL :-). Please send
 em some code or online example where they have customized the scroll bar of
 HBox or VBox or any container.
 Again i appreciate your help.
 Thanks
 Anuj

   



RE: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-10 Thread Gregor Kiddie
I suppose we could start being really cruel to the non-native English
speakers ont eh list and start talking in LOLs...

 

i can haz item renderer?

renderer.initialise()

Ur doin' it wrong!

 

Epic Fail!

 

Gregor Kiddie
Senior Developer
INPS

Tel:   01382 564343

Registered address: The Bread Factory, 1a Broughton Street, London SW8
3QJ

Registered Number: 1788577

Registered in the UK

Visit our Internet Web site at www.inps.co.uk
blocked::http://www.inps.co.uk/ 

The information in this internet email is confidential and is intended
solely for the addressee. Access, copying or re-use of information in it
by anyone else is not authorised. Any views or opinions presented are
solely those of the author and do not necessarily represent those of
INPS or any of its affiliates. If you are not the intended recipient
please contact [EMAIL PROTECTED]



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tracy Spratt
Sent: 09 September 2008 18:10
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Is it possible to increase the heigth and
width of scroll bars in any container?

 

Yes, IIRC is If I remember correctly. We do use jargon like that a
lot.

 

IMHO, you should always ask if you don't understand it. 

 

LOL,

Tracy

  



Re: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-10 Thread anuj sharma
Hi Greg
Thanks for the reply. I am not sure if i get that. How would I use renderer
in my case? Can you show me any example where that have user rendering in
HBox' s scroll bar case. I used rendering for loading images in the HBox but
to cutomize scroll er , i haven't soemthign like that LOL :-). Please send
em some code or online example where they have customized the scroll bar of
HBox or VBox or any container.
Again i appreciate your help.
Thanks
Anuj

On Wed, Sep 10, 2008 at 12:03 AM, Gregor Kiddie [EMAIL PROTECTED]wrote:

I suppose we could start being really cruel to the non-native English
 speakers ont eh list and start talking in LOLs…



 i can haz item renderer?

 renderer.initialise()

 Ur doin' it wrong!



 Epic Fail!



 *Gregor Kiddie*
 Senior Developer
 *INPS*

 Tel:   01382 564343

 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ

 Registered Number: 1788577

 Registered in the UK

 Visit our Internet Web site at www.inps.co.uk

 The information in this internet email is confidential and is intended
 solely for the addressee. Access, copying or re-use of information in it by
 anyone else is not authorised. Any views or opinions presented are solely
 those of the author and do not necessarily represent those of INPS or any of
 its affiliates. If you are not the intended recipient please contact
 [EMAIL PROTECTED]
   --

 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Tracy Spratt
 *Sent:* 09 September 2008 18:10
 *To:* flexcoders@yahoogroups.com
 *Subject:* RE: [flexcoders] Is it possible to increase the heigth and
 width of scroll bars in any container?



 Yes, IIRC is If I remember correctly. We do use jargon like that a lot.



 IMHO, you should always ask if you don't understand it.



 LOL,

 Tracy






Re: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-10 Thread anuj sharma
Alright guys
I found sample somehow related to that.
http://www.kerkness.ca/flexexamples/ScrollSkin/ScollSkin.html
That can give me little bit start to do something what i am looking fro.
If you guys have any better one please let me know .
Thanks for ur help
Anuj


On Wed, Sep 10, 2008 at 10:12 AM, anuj sharma [EMAIL PROTECTED] wrote:

 Hi Greg
 Thanks for the reply. I am not sure if i get that. How would I use renderer
 in my case? Can you show me any example where that have user rendering in
 HBox' s scroll bar case. I used rendering for loading images in the HBox but
 to cutomize scroll er , i haven't soemthign like that LOL :-). Please send
 em some code or online example where they have customized the scroll bar of
 HBox or VBox or any container.
 Again i appreciate your help.
 Thanks
 Anuj


 On Wed, Sep 10, 2008 at 12:03 AM, Gregor Kiddie [EMAIL PROTECTED]wrote:

I suppose we could start being really cruel to the non-native English
 speakers ont eh list and start talking in LOLs…



 i can haz item renderer?

 renderer.initialise()

 Ur doin' it wrong!



 Epic Fail!



 *Gregor Kiddie*
 Senior Developer
 *INPS*

 Tel:   01382 564343

 Registered address: The Bread Factory, 1a Broughton Street, London SW8
 3QJ

 Registered Number: 1788577

 Registered in the UK

 Visit our Internet Web site at www.inps.co.uk

 The information in this internet email is confidential and is intended
 solely for the addressee. Access, copying or re-use of information in it by
 anyone else is not authorised. Any views or opinions presented are solely
 those of the author and do not necessarily represent those of INPS or any of
 its affiliates. If you are not the intended recipient please contact
 [EMAIL PROTECTED]
   --

 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Tracy Spratt
 *Sent:* 09 September 2008 18:10
 *To:* flexcoders@yahoogroups.com
 *Subject:* RE: [flexcoders] Is it possible to increase the heigth and
 width of scroll bars in any container?



 Yes, IIRC is If I remember correctly. We do use jargon like that a lot.



 IMHO, you should always ask if you don't understand it.



 LOL,

 Tracy








Re: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread anuj sharma
Hi Alex
Thanks a lot for the reply. What exactly is IIRC? I googled it but could not
find enough good resources. Do you have any article which clears the concept
of IIRC. I would appreciate if you can give some more info/links.
Again many many Thanks
Anuj

On Mon, Sep 8, 2008 at 5:17 PM, Alex Harui [EMAIL PROTECTED] wrote:

IIRC, scrollbars size to their skins so make the skins bigger and the
 SB should be bigger, but if you want to go smaller than 16, it is a lot of
 work.



 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *anuj181
 *Sent:* Monday, September 08, 2008 3:54 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Is it possible to increase the heigth and width of
 scroll bars in any container?



 Hi Guys
 I have a general question. In general any scroll bar in
 container(either VBOX or HBOX etc)is (by default)16 pixels wide. Is it
 possible to change the width and height of any scroll bar for in built
 containers. Also for styling those scroll bars and scroll er within
 the container do i have to use CSS or there is any other way too.(By
 styling i mean if I can give my own look and feel and color to the
 scroll bars in containers).
 Reply will be appreciated.
 Thanks guys
 Anuj

   



Re: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread anuj sharma
Hi Alex
By RIIC do u mean If I Remember Correctly, if that's the case sorry for
not being familiar with internet slang. So do you think if i create bigger
skins and attach with the scoll bar that should be able to take care of the
sizing issue of the scroll bar.
Thanks for your help
Anuj


On Mon, Sep 8, 2008 at 11:00 PM, anuj sharma [EMAIL PROTECTED] wrote:

 Hi Alex
 Thanks a lot for the reply. What exactly is IIRC? I googled it but could
 not find enough good resources. Do you have any article which clears the
 concept of IIRC. I would appreciate if you can give some more info/links.
 Again many many Thanks
 Anuj


 On Mon, Sep 8, 2008 at 5:17 PM, Alex Harui [EMAIL PROTECTED] wrote:

IIRC, scrollbars size to their skins so make the skins bigger and the
 SB should be bigger, but if you want to go smaller than 16, it is a lot of
 work.



 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *anuj181
 *Sent:* Monday, September 08, 2008 3:54 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Is it possible to increase the heigth and width
 of scroll bars in any container?



 Hi Guys
 I have a general question. In general any scroll bar in
 container(either VBOX or HBOX etc)is (by default)16 pixels wide. Is it
 possible to change the width and height of any scroll bar for in built
 containers. Also for styling those scroll bars and scroll er within
 the container do i have to use CSS or there is any other way too.(By
 styling i mean if I can give my own look and feel and color to the
 scroll bars in containers).
 Reply will be appreciated.
 Thanks guys
 Anuj

   





RE: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread Tracy Spratt
Yes, IIRC is If I remember correctly. We do use jargon like that a
lot.

 

IMHO, you should always ask if you don't understand it. 

 

LOL,

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of anuj sharma
Sent: Tuesday, September 09, 2008 12:33 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is it possible to increase the heigth and
width of scroll bars in any container?

 

Hi Alex
By RIIC do u mean If I Remember Correctly, if that's the case sorry
for not being familiar with internet slang. So do you think if i create
bigger skins and attach with the scoll bar that should be able to take
care of the sizing issue of the scroll bar.
Thanks for your help
Anuj



On Mon, Sep 8, 2008 at 11:00 PM, anuj sharma [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

Hi Alex
Thanks a lot for the reply. What exactly is IIRC? I googled it but could
not find enough good resources. Do you have any article which clears the
concept of IIRC. I would appreciate if you can give some more
info/links.
Again many many Thanks 
Anuj

 

On Mon, Sep 8, 2008 at 5:17 PM, Alex Harui [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

IIRC, scrollbars size to their skins so make the skins bigger and the SB
should be bigger, but if you want to go smaller than 16, it is a lot of
work.

 

From: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com ]
On Behalf Of anuj181
Sent: Monday, September 08, 2008 3:54 PM
To: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com 
Subject: [flexcoders] Is it possible to increase the heigth and width of
scroll bars in any container?

 

Hi Guys
I have a general question. In general any scroll bar in
container(either VBOX or HBOX etc)is (by default)16 pixels wide. Is it
possible to change the width and height of any scroll bar for in built
containers. Also for styling those scroll bars and scroll er within
the container do i have to use CSS or there is any other way too.(By
styling i mean if I can give my own look and feel and color to the
scroll bars in containers).
Reply will be appreciated.
Thanks guys
Anuj

 

 

 



RE: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread Alex Harui
Yes, if you want a bigger scrollbar, just try adding larger skins

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of anuj 
sharma
Sent: Tuesday, September 09, 2008 9:33 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is it possible to increase the heigth and width of 
scroll bars in any container?

Hi Alex
By RIIC do u mean If I Remember Correctly, if that's the case sorry for not 
being familiar with internet slang. So do you think if i create bigger skins 
and attach with the scoll bar that should be able to take care of the sizing 
issue of the scroll bar.
Thanks for your help
Anuj

On Mon, Sep 8, 2008 at 11:00 PM, anuj sharma [EMAIL PROTECTED]mailto:[EMAIL 
PROTECTED] wrote:
Hi Alex
Thanks a lot for the reply. What exactly is IIRC? I googled it but could not 
find enough good resources. Do you have any article which clears the concept of 
IIRC. I would appreciate if you can give some more info/links.
Again many many Thanks
Anuj

On Mon, Sep 8, 2008 at 5:17 PM, Alex Harui [EMAIL PROTECTED]mailto:[EMAIL 
PROTECTED] wrote:

IIRC, scrollbars size to their skins so make the skins bigger and the SB should 
be bigger, but if you want to go smaller than 16, it is a lot of work.



From: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com] On 
Behalf Of anuj181
Sent: Monday, September 08, 2008 3:54 PM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to increase the heigth and width of scroll 
bars in any container?



Hi Guys
I have a general question. In general any scroll bar in
container(either VBOX or HBOX etc)is (by default)16 pixels wide. Is it
possible to change the width and height of any scroll bar for in built
containers. Also for styling those scroll bars and scroll er within
the container do i have to use CSS or there is any other way too.(By
styling i mean if I can give my own look and feel and color to the
scroll bars in containers).
Reply will be appreciated.
Thanks guys
Anuj





Re: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread anuj sharma
:-)
Yeah i will try to look for how to add skins to the flex components and if
you guys have seen any better tutorial/sample code/ swf which are doing then
the pls keep me posted.
Hopefully i will achieve that.
Thanks for your help Alex and Tracy.
Anuj

On Tue, Sep 9, 2008 at 10:00 AM, Alex Harui [EMAIL PROTECTED] wrote:

Yes, if you want a bigger scrollbar, just try adding larger skins



 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *anuj sharma
 *Sent:* Tuesday, September 09, 2008 9:33 AM
 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] Is it possible to increase the heigth and
 width of scroll bars in any container?



 Hi Alex
 By RIIC do u mean If I Remember Correctly, if that's the case sorry for
 not being familiar with internet slang. So do you think if i create bigger
 skins and attach with the scoll bar that should be able to take care of the
 sizing issue of the scroll bar.
 Thanks for your help
 Anuj

  On Mon, Sep 8, 2008 at 11:00 PM, anuj sharma [EMAIL PROTECTED] wrote:

 Hi Alex
 Thanks a lot for the reply. What exactly is IIRC? I googled it but could
 not find enough good resources. Do you have any article which clears the
 concept of IIRC. I would appreciate if you can give some more info/links.
 Again many many Thanks
 Anuj



 On Mon, Sep 8, 2008 at 5:17 PM, Alex Harui [EMAIL PROTECTED] wrote:

 IIRC, scrollbars size to their skins so make the skins bigger and the SB
 should be bigger, but if you want to go smaller than 16, it is a lot of
 work.



 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *anuj181
 *Sent:* Monday, September 08, 2008 3:54 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Is it possible to increase the heigth and width of
 scroll bars in any container?



 Hi Guys
 I have a general question. In general any scroll bar in
 container(either VBOX or HBOX etc)is (by default)16 pixels wide. Is it
 possible to change the width and height of any scroll bar for in built
 containers. Also for styling those scroll bars and scroll er within
 the container do i have to use CSS or there is any other way too.(By
 styling i mean if I can give my own look and feel and color to the
 scroll bars in containers).
 Reply will be appreciated.
 Thanks guys
 Anuj





   



RE: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-08 Thread Alex Harui
IIRC, scrollbars size to their skins so make the skins bigger and the SB should 
be bigger, but if you want to go smaller than 16, it is a lot of work.

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of anuj181
Sent: Monday, September 08, 2008 3:54 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to increase the heigth and width of scroll 
bars in any container?


Hi Guys
I have a general question. In general any scroll bar in
container(either VBOX or HBOX etc)is (by default)16 pixels wide. Is it
possible to change the width and height of any scroll bar for in built
containers. Also for styling those scroll bars and scroll er within
the container do i have to use CSS or there is any other way too.(By
styling i mean if I can give my own look and feel and color to the
scroll bars in containers).
Reply will be appreciated.
Thanks guys
Anuj



Re: [flexcoders] TileList: Tiles possible with different width/height ??

2008-09-02 Thread Sherif Abdou
I think it can, check this out 
http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/
 the TileListItemRenderer.mxml part and im sure you can switch the width and 
height.
--
Sherif Abdou
http://VadexFX.com
http://Sherifabdou.com
  - Original Message - 
  From: Manu Dhanda 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, September 02, 2008 1:10 AM
  Subject: [flexcoders] TileList: Tiles possible with different width/height ??



  Hii,

  My question is:

  Can a TileList hold tiles of variable width/height. Or can we play with a
  tiles's width/height at runtime?

  Thanks,
  Manu.
  -- 
  View this message in context: 
http://www.nabble.com/TileList%3A-Tiles-possible-with-different-width-heighttp19264644p19264644.html
  Sent from the FlexCoders mailing list archive at Nabble.com.



   

RE: [flexcoders] TileList: Tiles possible with different width/height ??

2008-09-02 Thread Alex Harui
All tiles in a tilelist must be same width/height (or at least, they'll take up 
the same width and height, you could add padding around smaller ones).  You can 
adjust the width and height of all tiles at runtime.

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif 
Abdou
Sent: Tuesday, September 02, 2008 6:06 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] TileList: Tiles possible with different width/height 
??

I think it can, check this out 
http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/
 the 
TileListItemRenderer.mxmlhttp://blog.flexexamples.com/wp-content/uploads/TileList_dataChangeEffect_test/TileListItemRenderer.mxml
 part and im sure you can switch the width and height.
--
Sherif Abdou
http://VadexFX.com
http://Sherifabdou.com
- Original Message -
From: Manu Dhandamailto:[EMAIL PROTECTED]
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Sent: Tuesday, September 02, 2008 1:10 AM
Subject: [flexcoders] TileList: Tiles possible with different width/height ??


Hii,

My question is:

Can a TileList hold tiles of variable width/height. Or can we play with a
tiles's width/height at runtime?

Thanks,
Manu.
--
View this message in context: 
http://www.nabble.com/TileList%3A-Tiles-possible-with-different-width-heighttp19264644p19264644.html
Sent from the FlexCoders mailing list archive at Nabble.com.



Re: [flexcoders] Is it possible to put a custom component inside itself?

2008-08-04 Thread Daniel Gold
Sure, as long as you hit your base case and the constructor actually returns
for the last one you create you'll be fine. Just to test and prove the logic
to yourself, create a static class variable and decrement it each time you
create a new one, check it in the constructor if its  0 declare a new
instance and that will be your base case. You should have a hierarchical
component where each instance has one child, that has a childwith a
depth equal to whatever your static var was initialized to.

On Mon, Aug 4, 2008 at 2:51 PM, Amy [EMAIL PROTECTED] wrote:

   Hi, all;

 I want to create a component that is recursive, but I'm not sure
 whether it's possible to create an instance of a component inside the
 definition of that component. Does anyone have any examples of doing
 recursion in a Flex component?

 I started out trying to modify RandomWalk, but it looks like I'd have
 to change a lot of logic in a lot of places to get it to work (plus it
 isn't truly recursive), and my time frame is too short for trying to
 root through and find everything I'd need to change.

 Thanks;

 Amy

  



Re: [flexcoders] Is it possible to listen to *all* events without hacking the SDK?

2008-07-17 Thread Alan
Add an event listener to the system manager.  Every event tat bubbles  
will hit the system manager.




On Jul 16, 2008, at 11:11 PM, Josh McDonald wrote:



Hey guys,

Is it possible to listen to all events that bubble to / are  
dispatched from a certain component?


Don't worry, I don't actually plan on using this in any actual code!  
I'm just interested in doing some extremely verbose logging to  
gather information for a blog post I have in mind ;-)


-Josh

--
Therefore, send not to know For whom the bell tolls. It tolls for  
thee.


:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED]






Re: [flexcoders] Is it possible to listen to *all* events without hacking the SDK?

2008-07-16 Thread Doug McCune
Is this your custom component or just any component you don't control?
If it's yours you could override dispatchEvent to know whenever the
component dispatches any event. Or you could override addEventListener
to know whenever something adds an event listener.

If it's not your custom component (ie you can't override anything)
then you might be out of luck (other than going through and manually
adding listeners for all possible strings you think the component
might dispatch). But I don't think there is any way to know all the
events that a component might dispatch in its lifetime. ALthough you
could probably do a search on the FLex SDK for dispatchEvent( and
compile a full list of all events that all Flex SDK components will
ever dispatch. I wonder how long that list is...

The other thing to try (although this probably violates your without
hacking clause) is this monkey patched version of FlexSprite I
blogged about: 
http://dougmccune.com/blog/2008/02/21/monkey-patching-flexsprite-to-list-all-event-listeners-on-any-flex-component/

What that does is gives you an array of all the event listeners that
have been registered on a certain component. That's not the same as a
list of all events that the component might ever dispatch (since the
component may very well dispatch events that nobody listens to). The
other thing I would suggest is you could use the same approach to
monkey patch FlexSprite and add some special code into the override
for dispatchEvent and then you could be notified about anytime the
component dispatches any event at all. Again, that probably goes
against the not hacking condition of the question :)

Doug

On Wed, Jul 16, 2008 at 8:11 PM, Josh McDonald [EMAIL PROTECTED] wrote:
 Hey guys,

 Is it possible to listen to all events that bubble to / are dispatched from
 a certain component?

 Don't worry, I don't actually plan on using this in any actual code! I'm
 just interested in doing some extremely verbose logging to gather
 information for a blog post I have in mind ;-)

 -Josh

 --
 Therefore, send not to know For whom the bell tolls. It tolls for thee.

 :: Josh 'G-Funk' McDonald
 :: 0437 221 380 :: [EMAIL PROTECTED]
 


Re: [flexcoders] Is it possible to listen to *all* events without hacking the SDK?

2008-07-16 Thread Manu Dhanda

Hii Josh,

I have no idea, if it is exactly related to your query.

I was looking for the same sort of solution to do an AuditLogger stuff. I
want event based logging. No traces and all.
It was like:
1. capture all the events
2. get their Target and currentTarget
3. log with timestamp
and much more.

The only place, I could think of is Application itself. Put your listener at
application, capture all the events there and log. 
But it has a few drawbacks:
even the mouseMove will give you a lodz of entries and then child components
and the underlying parents of it.
So, it's still pending on my list to get a best solution out of it.

Am curious to see expert thoughts here.

Thanks,
Manu.



Josh McDonald-4 wrote:
 
 Hey guys,
 
 Is it possible to listen to all events that bubble to / are dispatched
 from
 a certain component?
 
 Don't worry, I don't actually plan on using this in any actual code! I'm
 just interested in doing some extremely verbose logging to gather
 information for a blog post I have in mind ;-)
 
 -Josh
 
 -- 
 Therefore, send not to know For whom the bell tolls. It tolls for thee.
 
 :: Josh 'G-Funk' McDonald
 :: 0437 221 380 :: [EMAIL PROTECTED]
 
 

-- 
View this message in context: 
http://www.nabble.com/Is-it-possible-to-listen-to-*all*-events-without-hacking-the-SDK--tp18500774p18501011.html
Sent from the FlexCoders mailing list archive at Nabble.com.



Re: [flexcoders] Is it possible to listen to *all* events without hacking the SDK?

2008-07-16 Thread Josh McDonald
Thanks Doug, I figured that'd be the answer. Not against monkey patching by
any means (we use a few atm to fix bugs in SOAP code), just wanted to check
first to see if there was a secret way to do it that I didn't know about
before I go and mess about with FlexSprite :)

-Josh

On Thu, Jul 17, 2008 at 1:41 PM, Doug McCune [EMAIL PROTECTED] wrote:

 Is this your custom component or just any component you don't control?
 If it's yours you could override dispatchEvent to know whenever the
 component dispatches any event. Or you could override addEventListener
 to know whenever something adds an event listener.

 If it's not your custom component (ie you can't override anything)
 then you might be out of luck (other than going through and manually
 adding listeners for all possible strings you think the component
 might dispatch). But I don't think there is any way to know all the
 events that a component might dispatch in its lifetime. ALthough you
 could probably do a search on the FLex SDK for dispatchEvent( and
 compile a full list of all events that all Flex SDK components will
 ever dispatch. I wonder how long that list is...

 The other thing to try (although this probably violates your without
 hacking clause) is this monkey patched version of FlexSprite I
 blogged about:
 http://dougmccune.com/blog/2008/02/21/monkey-patching-flexsprite-to-list-all-event-listeners-on-any-flex-component/

 What that does is gives you an array of all the event listeners that
 have been registered on a certain component. That's not the same as a
 list of all events that the component might ever dispatch (since the
 component may very well dispatch events that nobody listens to). The
 other thing I would suggest is you could use the same approach to
 monkey patch FlexSprite and add some special code into the override
 for dispatchEvent and then you could be notified about anytime the
 component dispatches any event at all. Again, that probably goes
 against the not hacking condition of the question :)

 Doug

 On Wed, Jul 16, 2008 at 8:11 PM, Josh McDonald [EMAIL PROTECTED] wrote:
  Hey guys,
 
  Is it possible to listen to all events that bubble to / are dispatched
 from
  a certain component?
 
  Don't worry, I don't actually plan on using this in any actual code! I'm
  just interested in doing some extremely verbose logging to gather
  information for a blog post I have in mind ;-)
 
  -Josh
 
  --
  Therefore, send not to know For whom the bell tolls. It tolls for thee.
 
  :: Josh 'G-Funk' McDonald
  :: 0437 221 380 :: [EMAIL PROTECTED]
 

 

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






-- 
Therefore, send not to know For whom the bell tolls. It tolls for thee.

:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED]


Re: [flexcoders] Is it possible to get compontnet height is it doesnt have height=###

2008-06-25 Thread Tom Chiverton
You probably can't get the height immediately after addChild() because it 
hasn't been calculated yet.
You could try one of the invalidateNnn() methods or getting the height 
using callLater() to wait a frame.

-- 
Tom Chiverton



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

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

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

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



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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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



RE: [flexcoders] Is it possible to get compontnet height is it doesnt have height=###

2008-06-25 Thread Alex Harui
Read the doc on custom components.  The lifecycle methods
(commitProperties, measure, updateDisplayList are designed to handle
this kind of problem.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Body Works Studio
Sent: Wednesday, June 25, 2008 8:06 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to get compontnet height is it
doesnt have height=###

 

Hello all,

I have a flowContainer that is dynamically added to a vbox on load.
Inside that flowContainer I dynamically fill it with labels (one label
per phrase) via an addChild(). currently I do not define a height on
the flowContainer. The vbox and its parent make up a itemRenderer
component for a list.

Is it possible to get the height of the flowContainer? so I know how
to size the overall row? I have tried var rowHeight:int =
flowContainer.height but it does not work.

Any suggestions?

Thanks

Jeff

 



RE: [flexcoders] Synchronous HTTPService possible?

2008-06-03 Thread Tracy Spratt
Synchronous HTTPService is not possible, but you could simply disable
the table on send and enable it again on result.

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Chilcoat, Dee
Sent: Tuesday, June 03, 2008 12:28 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Synchronous HTTPService possible?

 

I need to know how to handle the other events generated by the datagrid
component while an update is being performed.  For example, I have an
editable datagrid into which numeric values can be entered.  When the
user edits a cell and presses enter, or otherwise clicks off the line, a
database table is updated with the data (via a remote object call) on
the line on which the cell was edited.  During the update, I want to
prevent the user from inputting any data into other cells.  I have found
that, by repeatedly hitting enter after editing a cell, and before the
update is complete, the screen freezes.  Worse yet, if I repeatedly edit
a cell and hit enter before the update is complete, the screen freezes
and data on a line that has an error will be updated.  Can you give me
an example of how to handle this situation?  

 

I will appreciate any help.

 

Dee A. Chilcoat

Enterprise Web Application Development

University of California San Diego

[EMAIL PROTECTED]

(858) 534-0719

 



Re: [flexcoders] Is it possible to build a Flex 3 app that will play in Flash Player 7 for Wii

2008-05-06 Thread Greg Hess
Thanks folks, much appreciated! Fresh new flash app and code base it is :-(.

-Greg

On Fri, May 2, 2008 at 3:23 PM, Battershall, Jeff 
[EMAIL PROTECTED] wrote:

I wouldn't get  your hopes up - at least as far as Flex 2 or 3 is
 concerned.  You can use component versions that shipped with Flash 2004 +
 AS2.  You could do alot of things, including remoting, but it would be a
 relatively slow and arduous process to develop.  It is possible to compile
 Flex 1.5 apps using mxmlc to standalone swfs, but there are licensing
 hurdles to surmount.

 Jeff

  -Original Message-
 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Greg Hess
  *Sent:* Friday, May 02, 2008 2:35 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] Is it possible to build a Flex 3 app that will
 play in Flash Player 7 for Wii

   Well, I'm not sure :-).

 Our application or at least one of our modules must be supported by the
 Flash 7 VM installed on the Wii.

 -Greg

 On Fri, May 2, 2008 at 1:46 PM, Tracy Spratt [EMAIL PROTECTED]
 wrote:

 Do you really mean Flash 7, or do you mean Flex 1.5 + AS 2?
 
 
 
  Tracy
 
 
   --
 
  *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
  Behalf Of *Greg Hess
  *Sent:* Friday, May 02, 2008 12:58 PM
  *To:* flexcoders@yahoogroups.com
  *Subject:* Re: [flexcoders] Is it possible to build a Flex 3 app that
  will play in Flash Player 7 for Wii
 
 
 
  Bummer. I was hoping to reuse 'some' code from our main application.
 
 
 
  Do you know the dev environment that supports building Flash 7
  applications?
 
 
 
  Thanks,
 
 
  Greg
 
  On Fri, May 2, 2008 at 11:13 AM, Jim Hayes [EMAIL PROTECTED]
  wrote:
 
  I don't believe so, flex 3 is AS3 only as far as I know.
 
 
 
  -Original Message-
  *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
  Behalf Of *Greg Hess
  *Sent:* 02 May 2008 16:08
  *To:* flexcoders@yahoogroups.com
  *Subject:* [flexcoders] Is it possible to build a Flex 3 app that will
  play in Flash Player 7 for Wii
 
 
 
  Hi All,
 
 
 
  I have a requirement to support Flash Player 7 for the Wii for one of
  our application modules. Is it possible to build this using Flex 3?
 
 
 
  Thanks,
 
 
  Greg
 
 
 
  __
  This communication is from Primal Pictures Ltd., a company registered in
  England and Wales with registration No. 02622298 and registered office: 4th
  Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK.
  VAT registration No. 648874577.
 
  This e-mail is confidential and may be privileged. It may be read,
  copied and used only by the intended recipient. If you have received it in
  error, please contact the sender immediately by return e-mail or by
  telephoning +44(0)20 7637 1010. Please then delete the e-mail and do not
  disclose its contents to any person.
  This email has been scanned for Primal Pictures by the MessageLabs Email
  Security System.
  __
 
 
 
 
 



RE: [flexcoders] Is this possible?

2008-05-06 Thread Tracy Spratt
Yes, in this case it would be worth getting our language accurate.

 

Flex is a client-side technology, and does not run on a server.  The swf 
executes in a Flash Player instance hosted in a browser.  Except for security 
sandbox issues, it is irrelevant what server serves the swf.  If you run a 
Flex app on a server, that server is really a local client, and the Flex 
app has no more functionality than it would from any remote client.

 

That simplifies this question to: Can Flex upload and delete images on a 
server.  The answeer is as Luciano says, yes, but you must have some 
server-side functionality to do it.

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Luciano 
Manerich Junior
Sent: Tuesday, May 06, 2008 4:45 PM
To: flexcoders@yahoogroups.com
Subject: RES: [flexcoders] Is this possible?

 

Hi,

 

Flex will just call some remote method. You will have to develop some server 
(java, php, asp, ...) to do that for your flex app.

 

There's a lot of samples over the internet.

 



De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de Phill B
Enviada em: terça-feira, 6 de maio de 2008 17:24
Para: flexcoders@yahoogroups.com
Assunto: [flexcoders] Is this possible?

I want to have a Flex app that will run on server A but it will upload and 
delete images from server B. Is this easy to do or is this going to be a pain 
in the butt? 

-- 
Phil 

 



Re: [flexcoders] Is this possible?

2008-05-06 Thread Phill B
So I would have a set of remote object's on server a that would deal with
the database and such. Then a remote object on server B that would take care
of the image. I guess I was over thanking. Thanks.

Phil

On Tue, May 6, 2008 at 3:45 PM, Luciano Manerich Junior 
[EMAIL PROTECTED] wrote:

Hi,

 Flex will just call some remote method. You will have to develop some
 server (java, php, asp, ...) to do that for your flex app.

 There's a lot of samples over the internet.

  --
 *De:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *Em
 nome de *Phill B
 *Enviada em:* terça-feira, 6 de maio de 2008 17:24
 *Para:* flexcoders@yahoogroups.com
 *Assunto:* [flexcoders] Is this possible?

  I want to have a Flex app that will run on server A but it will upload
 and delete images from server B. Is this easy to do or is this going to be a
 pain in the butt?




RE: [flexcoders] Is it possible to build a Flex 3 app that will play in Flash Player 7 for Wii

2008-05-02 Thread Jim Hayes
I don't believe so, flex 3 is AS3 only as far as I know.
 
-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Greg Hess
Sent: 02 May 2008 16:08
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to build a Flex 3 app that will
play in Flash Player 7 for Wii
 
Hi All,
 
I have a requirement to support Flash Player 7 for the Wii for one of
our application modules. Is it possible to build this using Flex 3?
 
Thanks,

Greg
 

__
This communication is from Primal Pictures Ltd., a company registered in 
England and Wales with registration No. 02622298 and registered office: 4th 
Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK. VAT 
registration No. 648874577.

This e-mail is confidential and may be privileged. It may be read, copied and 
used only by the intended recipient. If you have received it in error, please 
contact the sender immediately by return e-mail or by telephoning +44(0)20 7637 
1010. Please then delete the e-mail and do not disclose its contents to any 
person.
This email has been scanned for Primal Pictures by the MessageLabs Email 
Security System.
__

Re: [flexcoders] Is it possible to build a Flex 3 app that will play in Flash Player 7 for Wii

2008-05-02 Thread Greg Hess
Bummer. I was hoping to reuse 'some' code from our main application.

Do you know the dev environment that supports building Flash 7 applications?

Thanks,

Greg

On Fri, May 2, 2008 at 11:13 AM, Jim Hayes [EMAIL PROTECTED] wrote:

I don't believe so, flex 3 is AS3 only as far as I know.



 -Original Message-
 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Greg Hess
 *Sent:* 02 May 2008 16:08
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Is it possible to build a Flex 3 app that will
 play in Flash Player 7 for Wii



 Hi All,



 I have a requirement to support Flash Player 7 for the Wii for one of our
 application modules. Is it possible to build this using Flex 3?



 Thanks,


 Greg

 __
 This communication is from Primal Pictures Ltd., a company registered in
 England and Wales with registration No. 02622298 and registered office: 4th
 Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK.
 VAT registration No. 648874577.

 This e-mail is confidential and may be privileged. It may be read, copied
 and used only by the intended recipient. If you have received it in error,
 please contact the sender immediately by return e-mail or by telephoning
 +44(0)20 7637 1010. Please then delete the e-mail and do not disclose its
 contents to any person.
 This email has been scanned for Primal Pictures by the MessageLabs Email
 Security System.
 __

 



RE: [flexcoders] Is it possible to build a Flex 3 app that will play in Flash Player 7 for Wii

2008-05-02 Thread Tracy Spratt
Do you really mean Flash 7, or do you mean Flex 1.5 + AS 2?

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Greg Hess
Sent: Friday, May 02, 2008 12:58 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is it possible to build a Flex 3 app that will
play in Flash Player 7 for Wii

 

Bummer. I was hoping to reuse 'some' code from our main application. 

 

Do you know the dev environment that supports building Flash 7
applications?

 

Thanks,


Greg

On Fri, May 2, 2008 at 11:13 AM, Jim Hayes [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

I don't believe so, flex 3 is AS3 only as far as I know.

 

-Original Message-
From: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com ]
On Behalf Of Greg Hess
Sent: 02 May 2008 16:08
To: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com 
Subject: [flexcoders] Is it possible to build a Flex 3 app that will
play in Flash Player 7 for Wii

 

Hi All,

 

I have a requirement to support Flash Player 7 for the Wii for one of
our application modules. Is it possible to build this using Flex 3?

 

Thanks,


Greg

 

__
This communication is from Primal Pictures Ltd., a company registered in
England and Wales with registration No. 02622298 and registered office:
4th Floor, Tennyson House, 159-165 Great Portland Street, London, W1W
5PA, UK. VAT registration No. 648874577.

This e-mail is confidential and may be privileged. It may be read,
copied and used only by the intended recipient. If you have received it
in error, please contact the sender immediately by return e-mail or by
telephoning +44(0)20 7637 1010. Please then delete the e-mail and do not
disclose its contents to any person.
This email has been scanned for Primal Pictures by the MessageLabs Email
Security System.
__

 

 



Re: [flexcoders] Is it possible to build a Flex 3 app that will play in Flash Player 7 for Wii

2008-05-02 Thread Nick Collins
I think he means that it targets Flash Player 7.

On Fri, May 2, 2008 at 12:46 PM, Tracy Spratt [EMAIL PROTECTED] wrote:

Do you really mean Flash 7, or do you mean Flex 1.5 + AS 2?



 Tracy


  --

 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Greg Hess
 *Sent:* Friday, May 02, 2008 12:58 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] Is it possible to build a Flex 3 app that will
 play in Flash Player 7 for Wii



 Bummer. I was hoping to reuse 'some' code from our main application.



 Do you know the dev environment that supports building Flash 7
 applications?



 Thanks,


 Greg

 On Fri, May 2, 2008 at 11:13 AM, Jim Hayes [EMAIL PROTECTED] wrote:

 I don't believe so, flex 3 is AS3 only as far as I know.



 -Original Message-
 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Greg Hess
 *Sent:* 02 May 2008 16:08
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Is it possible to build a Flex 3 app that will
 play in Flash Player 7 for Wii



 Hi All,



 I have a requirement to support Flash Player 7 for the Wii for one of our
 application modules. Is it possible to build this using Flex 3?



 Thanks,


 Greg



 __
 This communication is from Primal Pictures Ltd., a company registered in
 England and Wales with registration No. 02622298 and registered office: 4th
 Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK.
 VAT registration No. 648874577.

 This e-mail is confidential and may be privileged. It may be read, copied
 and used only by the intended recipient. If you have received it in error,
 please contact the sender immediately by return e-mail or by telephoning
 +44(0)20 7637 1010. Please then delete the e-mail and do not disclose its
 contents to any person.
 This email has been scanned for Primal Pictures by the MessageLabs Email
 Security System.
 __



  



RE: [flexcoders] Is it possible to build a Flex 3 app that will play in Flash Player 7 for Wii

2008-05-02 Thread Tracy Spratt
In that case, Flex 1.5, if you recall, was built on an on-demand,
server-side process, web-tier compiler architecture.  Apps were not
pre-compiled into swfs, ie, no SDK.

 

So any editor is fine, but, of course, you have to have the Flex server
to run the app.  Obviously this is the case if this is a legacy app.

 

Flex Builder 1.5 was built on Dreamweaver.

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Nick Collins
Sent: Friday, May 02, 2008 1:42 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is it possible to build a Flex 3 app that will
play in Flash Player 7 for Wii

 

I think he means that it targets Flash Player 7.

On Fri, May 2, 2008 at 12:46 PM, Tracy Spratt [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

Do you really mean Flash 7, or do you mean Flex 1.5 + AS 2?

 

Tracy

 



From: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com ]
On Behalf Of Greg Hess
Sent: Friday, May 02, 2008 12:58 PM
To: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com 
Subject: Re: [flexcoders] Is it possible to build a Flex 3 app that will
play in Flash Player 7 for Wii

 

Bummer. I was hoping to reuse 'some' code from our main application. 

 

Do you know the dev environment that supports building Flash 7
applications?

 

Thanks,


Greg

On Fri, May 2, 2008 at 11:13 AM, Jim Hayes [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

I don't believe so, flex 3 is AS3 only as far as I know.

 

-Original Message-
From: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com ]
On Behalf Of Greg Hess
Sent: 02 May 2008 16:08
To: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com 
Subject: [flexcoders] Is it possible to build a Flex 3 app that will
play in Flash Player 7 for Wii

 

Hi All,

 

I have a requirement to support Flash Player 7 for the Wii for one of
our application modules. Is it possible to build this using Flex 3?

 

Thanks,


Greg

 

__
This communication is from Primal Pictures Ltd., a company registered in
England and Wales with registration No. 02622298 and registered office:
4th Floor, Tennyson House, 159-165 Great Portland Street, London, W1W
5PA, UK. VAT registration No. 648874577.

This e-mail is confidential and may be privileged. It may be read,
copied and used only by the intended recipient. If you have received it
in error, please contact the sender immediately by return e-mail or by
telephoning +44(0)20 7637 1010. Please then delete the e-mail and do not
disclose its contents to any person.
This email has been scanned for Primal Pictures by the MessageLabs Email
Security System.
__

 

 

 



Re: [flexcoders] Is it possible to build a Flex 3 app that will play in Flash Player 7 for Wii

2008-05-02 Thread Nick Collins
Yeah, I remember. I also remember that it was prohibitively expensive to
acquire. I don't know how the licensing might work with it being so
outdated, so he'll have to check with Adobe on that.

That being said, with the Open Screen project now available, it may not be
too long before there is a Flash Player 9 for the Wii, as he's looking for.

On Fri, May 2, 2008 at 12:58 PM, Tracy Spratt [EMAIL PROTECTED] wrote:

In that case, Flex 1.5, if you recall, was built on an on-demand,
 server-side process, web-tier compiler architecture.  Apps were not
 pre-compiled into swfs, ie, no SDK.



 So any editor is fine, but, of course, you have to have the Flex server to
 run the app.  Obviously this is the case if this is a legacy app.



 Flex Builder 1.5 was built on Dreamweaver.



 Tracy


  --

 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Nick Collins
 *Sent:* Friday, May 02, 2008 1:42 PM

 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] Is it possible to build a Flex 3 app that will
 play in Flash Player 7 for Wii



 I think he means that it targets Flash Player 7.

 On Fri, May 2, 2008 at 12:46 PM, Tracy Spratt [EMAIL PROTECTED]
 wrote:

 Do you really mean Flash 7, or do you mean Flex 1.5 + AS 2?



 Tracy


  --

 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Greg Hess
 *Sent:* Friday, May 02, 2008 12:58 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] Is it possible to build a Flex 3 app that will
 play in Flash Player 7 for Wii



 Bummer. I was hoping to reuse 'some' code from our main application.



 Do you know the dev environment that supports building Flash 7
 applications?



 Thanks,


 Greg

 On Fri, May 2, 2008 at 11:13 AM, Jim Hayes [EMAIL PROTECTED] wrote:

 I don't believe so, flex 3 is AS3 only as far as I know.



 -Original Message-
 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Greg Hess
 *Sent:* 02 May 2008 16:08
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Is it possible to build a Flex 3 app that will
 play in Flash Player 7 for Wii



 Hi All,



 I have a requirement to support Flash Player 7 for the Wii for one of our
 application modules. Is it possible to build this using Flex 3?



 Thanks,


 Greg



 __
 This communication is from Primal Pictures Ltd., a company registered in
 England and Wales with registration No. 02622298 and registered office: 4th
 Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK.
 VAT registration No. 648874577.

 This e-mail is confidential and may be privileged. It may be read, copied
 and used only by the intended recipient. If you have received it in error,
 please contact the sender immediately by return e-mail or by telephoning
 +44(0)20 7637 1010. Please then delete the e-mail and do not disclose its
 contents to any person.
 This email has been scanned for Primal Pictures by the MessageLabs Email
 Security System.
 __





  



Re: [flexcoders] Is it possible to build a Flex 3 app that will play in Flash Player 7 for Wii

2008-05-02 Thread Greg Hess
Well, I'm not sure :-).

Our application or at least one of our modules must be supported by the
Flash 7 VM installed on the Wii.

-Greg

On Fri, May 2, 2008 at 1:46 PM, Tracy Spratt [EMAIL PROTECTED] wrote:

Do you really mean Flash 7, or do you mean Flex 1.5 + AS 2?



 Tracy


  --

 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Greg Hess
 *Sent:* Friday, May 02, 2008 12:58 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] Is it possible to build a Flex 3 app that will
 play in Flash Player 7 for Wii



 Bummer. I was hoping to reuse 'some' code from our main application.



 Do you know the dev environment that supports building Flash 7
 applications?



 Thanks,


 Greg

 On Fri, May 2, 2008 at 11:13 AM, Jim Hayes [EMAIL PROTECTED] wrote:

 I don't believe so, flex 3 is AS3 only as far as I know.



 -Original Message-
 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Greg Hess
 *Sent:* 02 May 2008 16:08
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Is it possible to build a Flex 3 app that will
 play in Flash Player 7 for Wii



 Hi All,



 I have a requirement to support Flash Player 7 for the Wii for one of our
 application modules. Is it possible to build this using Flex 3?



 Thanks,


 Greg



 __
 This communication is from Primal Pictures Ltd., a company registered in
 England and Wales with registration No. 02622298 and registered office: 4th
 Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK.
 VAT registration No. 648874577.

 This e-mail is confidential and may be privileged. It may be read, copied
 and used only by the intended recipient. If you have received it in error,
 please contact the sender immediately by return e-mail or by telephoning
 +44(0)20 7637 1010. Please then delete the e-mail and do not disclose its
 contents to any person.
 This email has been scanned for Primal Pictures by the MessageLabs Email
 Security System.
 __



 



RE: [flexcoders] Is it possible to build a Flex 3 app that will play in Flash Player 7 for Wii

2008-05-02 Thread Battershall, Jeff
I wouldn't get  your hopes up - at least as far as Flex 2 or 3 is
concerned.  You can use component versions that shipped with Flash 2004
+ AS2.  You could do alot of things, including remoting, but it would be
a relatively slow and arduous process to develop.  It is possible to
compile Flex 1.5 apps using mxmlc to standalone swfs, but there are
licensing hurdles to surmount. 
 
Jeff

-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Greg Hess
Sent: Friday, May 02, 2008 2:35 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is it possible to build a Flex 3 app
that will play in Flash Player 7 for Wii


Well, I'm not sure :-). 
 
Our application or at least one of our modules must be supported
by the Flash 7 VM installed on the Wii. 
 
-Greg


On Fri, May 2, 2008 at 1:46 PM, Tracy Spratt
[EMAIL PROTECTED] wrote:




Do you really mean Flash 7, or do you mean Flex 1.5 +
AS 2?

 

Tracy

 





From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Greg Hess
Sent: Friday, May 02, 2008 12:58 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is it possible to build a Flex
3 app that will play in Flash Player 7 for Wii

 

Bummer. I was hoping to reuse 'some' code from our main
application. 

 

Do you know the dev environment that supports building
Flash 7 applications?

 

Thanks,


Greg

On Fri, May 2, 2008 at 11:13 AM, Jim Hayes
[EMAIL PROTECTED] wrote:

I don't believe so, flex 3 is AS3 only as far as I know.

 

-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Greg Hess
Sent: 02 May 2008 16:08
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to build a Flex 3
app that will play in Flash Player 7 for Wii

 

Hi All,

 

I have a requirement to support Flash Player 7 for the
Wii for one of our application modules. Is it possible to build this
using Flex 3?

 

Thanks,


Greg

 


__
This communication is from Primal Pictures Ltd., a
company registered in England and Wales with registration No. 02622298
and registered office: 4th Floor, Tennyson House, 159-165 Great Portland
Street, London, W1W 5PA, UK. VAT registration No. 648874577.

This e-mail is confidential and may be privileged. It
may be read, copied and used only by the intended recipient. If you have
received it in error, please contact the sender immediately by return
e-mail or by telephoning +44(0)20 7637 1010. Please then delete the
e-mail and do not disclose its contents to any person.
This email has been scanned for Primal Pictures by the
MessageLabs Email Security System.

__

 










 



RE: [flexcoders] Is it possible to have a .properties filethat contains keys with multiple lines?

2008-04-14 Thread Jim Hayes
You can continue a line by ending it with a backslash. Leading
whitespace on the next line is stripped.
 
From :
 
http://livedocs.adobe.com/flex/3/html/help.html?content=l10n_3.html
 
(I'd been meaning to look it up anyway, knew it was possible, just not
what the syntax was)
 
-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of guillaumeracine
Sent: 13 April 2008 19:39
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to have a .properties filethat
contains keys with multiple lines?
 
This is a major maintenance problem for me...
I have to put an entire text in ONE LINE un my resources.properties
file.

Someone have a good solution?
 

__
This communication is from Primal Pictures Ltd., a company registered in 
England and Wales with registration No. 02622298 and registered office: 4th 
Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK. VAT 
registration No. 648874577.

This e-mail is confidential and may be privileged. It may be read, copied and 
used only by the intended recipient. If you have received it in error, please 
contact the sender immediately by return e-mail or by telephoning +44(0)20 7637 
1010. Please then delete the e-mail and do not disclose its contents to any 
person.
This email has been scanned for Primal Pictures by the MessageLabs Email 
Security System.
__

Re: [flexcoders] Is it possible to have 2 items in viewstack visible?

2008-02-20 Thread Tom Chiverton
On Tuesday 12 Feb 2008, Max Frigge wrote:
 I would need to have 2 children visible at the same time, so that
 you can see the second child sliding in while the first one is
 sliding out. Is that possible or am I on the wrong path?

You might want to look at the DistortionEffects package.

-- 
Tom Chiverton
Helping to ambassadorially entrench six-generation metrics
on: http://thefalken.livejournal.com



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

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

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

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


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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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


Re: [flexcoders] Is it possible to have 2 items in viewstack visible?

2008-02-20 Thread Karthik pothuri
To my knowledge this is not possible Tom..

Tom Chiverton [EMAIL PROTECTED] wrote:  On Tuesday 12 Feb 2008, Max Frigge 
wrote:
 I would need to have 2 children visible at the same time, so that
 you can see the second child sliding in while the first one is
 sliding out. Is that possible or am I on the wrong path?

You might want to look at the DistortionEffects package.

-- 
Tom Chiverton
Helping to ambassadorially entrench six-generation metrics
on: http://thefalken.livejournal.com



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

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB. A list of 
members is available for inspection at the registered office. Any reference to 
a partner in relation to Halliwells LLP means a member of Halliwells LLP. 
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

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

For more information about Halliwells LLP visit www.halliwells.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





   
-
 Chat on a cool, new interface. No download required. Click here.

Re: [flexcoders] Is it possible to display Horizontal Scroll bar at the top

2008-02-15 Thread Nadeem Manzoor
Thanks alot Sherif Abdou , It works.


On Fri, Feb 15, 2008 at 1:30 AM, Sherif Abdou [EMAIL PROTECTED] wrote:

  create a custom one and just put this
 *

 override
 * *public* *function* validateDisplayList():*void*{

 *super*.validateDisplayList();

 *this*.*horizontalScrollBar*.move(0,0);

 }


 - Original Message 
 From: Nadeem Manzoor [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Thursday, February 14, 2008 2:08:58 PM
 Subject: [flexcoders] Is it possible to display Horizontal Scroll bar at
 the top

  Hello Guys

 By default the horizontal Scroll bar is appeared at the bottom of
 container. I want it to be displayed on the top . Is it possible

 Thanks

 Nadeem Manzoor


 --
 Looking for last minute shopping deals? Find them fast with Yahoo! 
 Search.http://us.rd.yahoo.com/evt=51734/*http://tools.search.yahoo.com/newsearch/category.php?category=shopping
 




-- 
Regards,

Nadeem Manzoor


Re: [flexcoders] Is it possible to display Horizontal Scroll bar at the top

2008-02-14 Thread Sherif Abdou
create a custom one and just put this
override public function validateDisplayList():void{
super.validateDisplayList();
this.horizontalScrollBar.move(0,0);
}



- Original Message 
From: Nadeem Manzoor [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, February 14, 2008 2:08:58 PM
Subject: [flexcoders] Is it possible to display Horizontal Scroll bar at the top

Hello Guys

By default the horizontal Scroll bar is appeared at the bottom of container. I 
want it to be displayed on the top . Is it possible

Thanks

Nadeem Manzoor 



  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

Re: [flexcoders] Is it possible to call a command automatically when compiling ends?

2008-02-08 Thread shaun
João wrote:
 Is it possible to configure FB so that after the compiling ends, an
 external command is called? I know that if i use ant tasks this might
 be solved, but I was looking for something simpler. Does this feature
 exists? Is there any simple and straightforward way to achieve this?
 
 Thanks, 
 
 João Saleiro
 
 

You mean to run a shell script or something after a compile? You can do 
that by using the FB external tool builders GUI (or named something 
like that).
There is a GUI setting somewhere in there or you can create a dir called
.externalToolBuilders (if its not there already) and create a launch 
file eg) MyExternalCommand.launch with the follwoing contents:

prawn:~/Documents/myproject flex$ ls -l .externalToolBuilders/
-rw-r--r--1 flex  flex  634 Aug 15 17:40 CopyTo(flex).launch


(note the call to the .sh script in the xml below - change that to your 
script)

prawn:~/Documents/myproject flex$ less 
.externalToolBuilders/CopyTo\(flex\).launch

?xml version=1.0 encoding=UTF-8?
launchConfiguration 
type=org.eclipse.ui.externaltools.ProgramBuilderLaunchConfigurationType
booleanAttribute key=org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND 
value=true/
stringAttribute key=org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS 
value=full,incremental,/

stringAttribute key=org.eclipse.ui.externaltools.ATTR_LOCATION 
value=/Users/flex/bin/copyTo.sh/

booleanAttribute 
key=org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED value=true/
booleanAttribute 
key=org.eclipse.debug.core.appendEnvironmentVariables value=true/
/launchConfiguration


HTH.
shaun


RE: [flexcoders] Is it possible to see the Actionscript generated by MXML files?

2007-11-21 Thread Jim Hayes
There's a compiler option : from the docs  
 
keep-generated-actionscript=true|false 
Determines whether to keep the generated ActionScript class files. 
The generated class files include stubs and classes that are generated
by the compiler and used to build the SWF file.
The default location of the files is the /generated subdirectory, which
is directly below the target MXML file. If the /generated directory does
not exist, the compiler creates one.
The default names of the primary generated class files are
filename-generated.as and filename-interface.as.
The default value is false.
This is an advanced option.
Hth, Jim.
 
 
 
-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of lawriegallardo
Sent: 21 November 2007 09:42
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to see the Actionscript generated
by MXML files?
 
Hi,

I'm currently learning Flex and LCDS and, in order to improve my
understanding of how MXML code is translated into Actionscript code 
during the compilation process, I'd like to be able to look at the
generated Actionscript code. Is this possible?

If not, are there any good explanations of this in the Flex
documentation or in any of the Flex books?

Thanks,

Lawrie
 

__
This communication is from Primal Pictures Ltd., a company registered in 
England and Wales with registration No. 02622298 and registered office: 4th 
Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK. VAT 
registration No. 648874577.

This e-mail is confidential and may be privileged. It may be read, copied and 
used only by the intended recipient. If you have received it in error, please 
contact the sender immediately by return e-mail or by telephoning +44(0)20 7637 
1010. Please then delete the e-mail and do not disclose its contents to any 
person.
This email has been scanned for Primal Pictures by the MessageLabs Email 
Security System.
__

Re: [flexcoders] Is it possible to save an FLV to a Shared Local Object and open it later ?

2007-10-30 Thread Abdul Qabiz
I can image that i can be saved by using URLStream (to read) and ByteArray
to store. But how you would play it again?

Not sure, if Video class can take ByteArray to play video... Can Video class
consider FLV as embedded video (which in my opinion is different)?

-abdul

On 10/30/07, helihobby [EMAIL PROTECTED] wrote:


 Does anyone know how ( if possible ) to save an FLV or Image to the
 shared local object ( SOL ) and than open it later on for use by the
 Video Class ?

 I am trying to build my own Cache system and since Flash can not
 access the file system my only option is to use the SOL. ( can't use
 Appolo for this project ).

 I would imagine one would need to use the ByteArray class but I have
 no idea where to begin ...

 If someone has an example that would be GREAT !!!

 Thank you,

 Sean.

  




-- 
-abdul
---
http://abdulqabiz.com/blog/
---


RE: [flexcoders] Is it possible to get a list of Shared Local Objects from my domain ?

2007-10-01 Thread Matt Horn
I don't think there's any way to iterate over the LSOs for your domain
without actually knowing the names of the objects.

-matt  

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of helihobby
 Sent: Saturday, September 29, 2007 10:32 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Is it possible to get a list of Shared 
 Local Objects from my domain ?
 
 Hello,
 
 Is it possible to somehow get a list of all the available 
 Shared Local Objects that are saved on disk that belong to my domain ?
 
 Regards,
 
 Sean.
 
 Click below to view my ALON Design Pattern:
 
 http://www.helihobby.com/html/alon_desingpattern.html 
 http://www.helihobby.com/html/alon_desingpattern.html 
 
 
 
  
 


Re: [flexcoders] Is it possible to anti-alias fonts without embedding?

2007-09-22 Thread Jon Bradley


On Sep 22, 2007, at 1:23 AM, Alex Harui wrote:

Device fonts are anti-aliased except when cached as bitmaps.  They  
should be anti-aliased even when cached as bitmaps in the upcoming  
Player 9,0,60 and later.


Now all you guys need to do is support rotation on non-embedded fonts.

That would so make my day - using the bitmap conversion hack is  
tricky (especially for user-controlled rotation and scale of a field).


Was there a nice elegant solution you guys developed for the Premier  
Express Flex application? I know now that chart labels do this, but  
I'm still having issues drawing the fields when they are first loaded  
up into an application - prior to them actually being rendered on the  
screen through normal interaction.


Maybe I'm missing an event or something that would solve that issue...

- jon





RE: [flexcoders] Is it possible to anti-alias fonts without embedding?

2007-09-22 Thread Alex Harui
If chart labels are looking fine to you, then you should be able to
duplicate.  What kind of issues are you having?  Is it that you're
trying to get bitmaps before attaching the text widgets to the display
list?  Or are you seeing visual problems over certain backgrounds or
angles?

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jon Bradley
Sent: Saturday, September 22, 2007 9:44 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is it possible to anti-alias fonts without
embedding?

 

 

On Sep 22, 2007, at 1:23 AM, Alex Harui wrote:





Device fonts are anti-aliased except when cached as bitmaps.  They
should be anti-aliased even when cached as bitmaps in the upcoming
Player 9,0,60 and later.

 

Now all you guys need to do is support rotation on non-embedded fonts.

 

That would so make my day - using the bitmap conversion hack is tricky
(especially for user-controlled rotation and scale of a field).

 

Was there a nice elegant solution you guys developed for the Premier
Express Flex application? I know now that chart labels do this, but I'm
still having issues drawing the fields when they are first loaded up
into an application - prior to them actually being rendered on the
screen through normal interaction.

 

Maybe I'm missing an event or something that would solve that issue...

 

- jon

 

 

 

 



Re: [flexcoders] Is it possible to anti-alias fonts without embedding?

2007-09-22 Thread Jon Bradley

Thanks for any help Alex...

I'm actually having issues on the initial draw of the bitmap - so  
visual problems.


While the user rotates and scales the field, everything is fine and  
dandy. BUT, when the class for handling the bitmap and the text field  
itself is first instantiated, the field is not drawn accurately.


The field draws out at the proper scale, but it doesn't respect the  
new 'width' that the field should have once type is added to it.


For example, the initial size of the created field is some width X  
height. I'm using autosize on the field itself, so when the text is  
changed, the new width and height are used to draw the result onto  
the screen (new bitmap size to match). This works fine during live  
editing, such as changing the text of the field. When the class first  
loads though, I get the right size and color font and Bitmap that it  
should be, but all that is drawn is up to the height/width of the  
field that it was when it was first created.


I looked to see if there was an event for autosize ... to no avail. I  
also tried to use resize events, render events, etc. Nothing has  
solved the problem.


My initial guess is that it might have to do with the styles that get  
set on the field and some type of delay.


Unfortunately, I can't share the code for the classes on the list,  
but I'd be more than happy to send along if you're willing to take a  
look.


best,

jon



On Sep 22, 2007, at 2:12 PM, Alex Harui wrote:

If chart labels are looking fine to you, then you should be able to  
duplicate.  What kind of issues are you having?  Is it that you’re  
trying to get bitmaps before attaching the text widgets to the  
display list?  Or are you seeing visual problems over certain  
backgrounds or angles?




Re: [flexcoders] Is it possible to anti-alias fonts without embedding?

2007-09-22 Thread Jon Bradley

I think I actually fixed it

I was doing this in my constructor for the custom field:

if (m != null)
{
transform.matrix = m;
setTransform(m);
}
else ...

when I should've been doing this:


if (m != identityMatrix)
{
transform.matrix = m;
setTransform(m);
}
else ...

I may or may not pass in a matrix to the class, but the 'optional'  
matrix has to evaluate to something, or else it doesn't compile. So,  
the m matrix is never null, and I was never updating the  
transformations on my class when a custom matrix was loaded up.


Testing local it seems to work when I load up a field that's rotated  
some arbitrary angle. I have to test online though, because I suspect  
there may be an underlying issue with the style loading.


Hope it works...

- j

On Sep 22, 2007, at 2:26 PM, Jon Bradley wrote:

I'm actually having issues on the initial draw of the bitmap - so  
visual problems.




RE: [flexcoders] Is it possible to anti-alias fonts without embedding?

2007-09-22 Thread Alex Harui
TextField definitely has quirks.  If you look in TextArea, you'll see
some callLaters used to deal with it.  And I think we don't use
autosize, we trust textWidth/Height and dictate size.

 

Also note that until applicationComplete event, you aren't really on the
display list.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jon Bradley
Sent: Saturday, September 22, 2007 11:27 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is it possible to anti-alias fonts without
embedding?

 

Thanks for any help Alex...

 

I'm actually having issues on the initial draw of the bitmap - so visual
problems.

 

While the user rotates and scales the field, everything is fine and
dandy. BUT, when the class for handling the bitmap and the text field
itself is first instantiated, the field is not drawn accurately.

 

The field draws out at the proper scale, but it doesn't respect the new
'width' that the field should have once type is added to it.

 

For example, the initial size of the created field is some width X
height. I'm using autosize on the field itself, so when the text is
changed, the new width and height are used to draw the result onto the
screen (new bitmap size to match). This works fine during live editing,
such as changing the text of the field. When the class first loads
though, I get the right size and color font and Bitmap that it should
be, but all that is drawn is up to the height/width of the field that it
was when it was first created.

 

I looked to see if there was an event for autosize ... to no avail. I
also tried to use resize events, render events, etc. Nothing has solved
the problem.

 

My initial guess is that it might have to do with the styles that get
set on the field and some type of delay.

 

Unfortunately, I can't share the code for the classes on the list, but
I'd be more than happy to send along if you're willing to take a look.

 

best,

 

jon

 

 

 

On Sep 22, 2007, at 2:12 PM, Alex Harui wrote:





If chart labels are looking fine to you, then you should be able to
duplicate.  What kind of issues are you having?  Is it that you're
trying to get bitmaps before attaching the text widgets to the display
list?  Or are you seeing visual problems over certain backgrounds or
angles?

 

 



RE: [flexcoders] Is it possible to anti-alias fonts without embedding?

2007-09-21 Thread Alex Harui
Device fonts are anti-aliased except when cached as bitmaps.  They
should be anti-aliased even when cached as bitmaps in the upcoming
Player 9,0,60 and later.

 

The anti-aliasing isn't as good for small fonts as when you embed the
font, so you have to trade off swf size for quality.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of williamkusumo
Sent: Friday, September 21, 2007 7:03 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to anti-alias fonts without
embedding?

 

Is it possible to get anti-alias fonts without having to embed a font?
I need to achieve anti-alias look, but doesn't want to increase the
size of the app by embedding fonts.

Thanks! Appreciate the help!

 



RE: [flexcoders] Is it possible for Flex Builder to echo the mxmlc.exe command it uses ?

2007-05-17 Thread Ravi Kumar Gummadi
See .actionScriptProperties created in the src folder..

It wud have all the arguments its using for mxmlc

 


** The
information contained in this email, and any attachments hereto, is
strictly confidential and solely intended for use by the individual(s)
and/or entity(s) to which it is addressed. If you have received this
email in error, please notify the System Manager at
[EMAIL PROTECTED] as soon as possible. Thank you for your attention
to this matter.

**



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of helihobby
Sent: Thursday, May 17, 2007 9:06 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible for Flex Builder to echo the
mxmlc.exe command it uses ?

 

How can I see ( if any ) the mxmlc.exe args that Flex Builder is using 
when I tell it to compile using the GUI ( Right Click - Compile ).

I wanna right a mxmlc script but need to see first what Flex Builder is 
using.

Thanks for the help,

Sean.

 



RE: [flexcoders] Is it possible for Flex Builder to echo the mxmlc.exe command it uses ?

2007-05-17 Thread Gordon Smith
In the Flex Compiler pane of the project's Properties dialog, enter
 
-dump-config myconfig.xml
 
in the Additional compiler arguments field. This will output a file in
the project directory similar to flex-config.xml which shows the options
that the compiler is using.
 
- Gordon



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of helihobby
Sent: Wednesday, May 16, 2007 8:36 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible for Flex Builder to echo the
mxmlc.exe command it uses ?



How can I see ( if any ) the mxmlc.exe args that Flex Builder is using 
when I tell it to compile using the GUI ( Right Click - Compile ).

I wanna right a mxmlc script but need to see first what Flex Builder is 
using.

Thanks for the help,

Sean.



 


Re: [flexcoders] Is it possible for a TitleWindow to open another TitleWindow?

2007-05-02 Thread Michael Schmalle

Hi,

Well, if I understand what you are saying, just create a creationComplete
handler on the parent window.

In that handler call PopUpManager.addPopUp() for the child window.

Peace, Mike

On 5/2/07, bruce1976 [EMAIL PROTECTED] wrote:


  Hi,

I haven't taken the time to try this out yet, but I wanted to know if
a TitleWindow could open another TitleWindow.

If anyone knows the answer, please let me know.

Thanks,

Bruce

 





--
Teoti Graphix
http://www.teotigraphix.com

Blog - Flex2Components
http://www.flex2components.com

You can find more by solving the problem then by 'asking the question'.


RE: [flexcoders] is it possible to disable the menuHide event on a menu?

2007-04-19 Thread Alex Harui
The menuHide event is a notification.  It tells you something got
hidden, but you can't prevent the hiding.  Some Flex events are
cancelable, but this one isn't
 
This is likely to be a bit tricky.  I guess my first attempt would be to
listen for mouse events in capture phase and call
stopimmediatepropagation on ones that would cause the menu to close.
 
You might have to make your own menu classes to really solve this well.



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Dave Turner
Sent: Wednesday, April 18, 2007 8:25 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] is it possible to disable the menuHide event on a
menu?



Is it possible to disable the menuHide event on a menu? I want a menu
to not close until i command it to. Overriding the event doesnt work
for me because the event still fires for a second causing a blink
effect. 

Im attempting to create a menu similiar to the menus that display
inside the File Explorer of Windows XP. Maybe the menu class is not
the right choice?

Any ideas?

thanks, 
Dave



 


Re: [flexcoders] Is it possible to embed font into the compiled CSS for runtime use?

2007-04-19 Thread Sergey Kovalyov

I get error marker in Flex IDE while everything is ok when I embed font in
the css that is included into the application via mx:Style and not marked
compile to SWF.

On 18 Apr 2007 07:41:27 -0700, Hilary Bridel [EMAIL PROTECTED] wrote:


   Hi Sergey,
I have embeded fonts into compiled css files to use at runtime and it
works ok.

Do you get an error when you use MXMLC to compile the css?

Hilary

www.bridel.org
.





Re: [flexcoders] Is it possible to embed font into the compiled CSS for runtime use?

2007-04-18 Thread Hilary Bridel

Hi Sergey,
I have embeded fonts into compiled css files to use at runtime and it works
ok.

Do you get an error when you use MXMLC to compile the css?

Hilary

www.bridel.org



On 18 Apr 2007 06:31:10 -0700, Sergey Kovalyov 
[EMAIL PROTECTED] wrote:


   Hi All!

I have tried to embed font into the compiled CSS for runtime use without
any luck. Everything works well, when I embed it into CSS that is included
into application mxml via mx:Style tag, though it seems there is no way to
compile font into the separate CSS. Am I right?

Sergey.







--
Hilary

--


Re: [flexcoders] Is it possible to resize a Cursor dynamically?

2007-04-16 Thread Rick Schmitty

Thanks for the replies guys.  I didnt see Troy's post at first and made a
hack of a solution to use a popup window (just a SWFLoader) that followed
the mouse cursor around the stage.  Not exactly skinnable, but I can load
different swfs for each cursor I need on demand

I'm going to give Troy's method a try of a monostate class with scale and
url exposed.

Thanks again!

On 13 Apr 2007 15:31:12 -0700, Troy Gilbert [EMAIL PROTECTED] wrote:


  The cursor is basically treated as if its a DisplayObject, which in
practice means that its a Sprite, MovieClip, Bitmap or Shape. Most of the
examples I've seen use embedded assets, most often a bitmap. But it can be
any class that can sit on the display list.

Of course, you're not able to access your specific instance of the class
as the CursorManager creates it internally and its not exposed. So, you have
to be tricky. Either you create a class that's a monostate (all of the
instances of the class share a common state) or have your custom class
listen for some particularly events that you're able to get into the display
list and to your class. Personally, I'd go for the monostate (more
predictable).

You'll need to create a class that inherits from DisplayObject, Sprite
would be a good choice. In your class, I'd add a static member that stores
the current size or scale. And in the ENTER_FRAME event, have your
sprite copy that value into the sprite's scaleX and scaleY members.
Basically, it's manual binding (you could probably do some more traditional
binding as well, but I'm assuming here that you'd probably be using
ENTER_FRAME anyway for some animation).

Pass off your custom cursor sprite class to the CursorManager to use...
internally, it will construct an instant as necessary (based on priority of
cursors, etc.). On your end, just modify the static state (scale) as
necessary. The result will be a cursor that resizes (because the
CursorManager's instance of the class is using the same static state that
you're manipulating).

If you're embedding an SWF, just embed it and use it inside of your custom
class (add it as a child, etc.). The display list is your friend! ;-)

Troy.




On 12 Apr 2007 08:48:19 -0700, Rick Schmitty [EMAIL PROTECTED] wrote:

   If I had a custom cursor, say a swf object, is it possible to size
 that object or do you have to embed each size you'd like to have?

 For example, say you had a drawing app with a brush stroke, and you
 wanted the cursor to reflect the size of the brush (which the user can
 adjust via slider bar)


 



Re: [flexcoders] Is it possible to resize a Cursor dynamically?

2007-04-13 Thread Troy Gilbert

The cursor is basically treated as if its a DisplayObject, which in practice
means that its a Sprite, MovieClip, Bitmap or Shape. Most of the examples
I've seen use embedded assets, most often a bitmap. But it can be any class
that can sit on the display list.

Of course, you're not able to access your specific instance of the class as
the CursorManager creates it internally and its not exposed. So, you have to
be tricky. Either you create a class that's a monostate (all of the
instances of the class share a common state) or have your custom class
listen for some particularly events that you're able to get into the display
list and to your class. Personally, I'd go for the monostate (more
predictable).

You'll need to create a class that inherits from DisplayObject, Sprite would
be a good choice. In your class, I'd add a static member that stores the
current size or scale. And in the ENTER_FRAME event, have your sprite
copy that value into the sprite's scaleX and scaleY members. Basically, it's
manual binding (you could probably do some more traditional binding as well,
but I'm assuming here that you'd probably be using ENTER_FRAME anyway for
some animation).

Pass off your custom cursor sprite class to the CursorManager to use...
internally, it will construct an instant as necessary (based on priority of
cursors, etc.). On your end, just modify the static state (scale) as
necessary. The result will be a cursor that resizes (because the
CursorManager's instance of the class is using the same static state that
you're manipulating).

If you're embedding an SWF, just embed it and use it inside of your custom
class (add it as a child, etc.). The display list is your friend! ;-)

Troy.



On 12 Apr 2007 08:48:19 -0700, Rick Schmitty [EMAIL PROTECTED] wrote:


  If I had a custom cursor, say a swf object, is it possible to size
that object or do you have to embed each size you'd like to have?

For example, say you had a drawing app with a brush stroke, and you
wanted the cursor to reflect the size of the brush (which the user can
adjust via slider bar)
 



RE: [flexcoders] Is it possible to find out how much RAM the end user has?

2007-04-05 Thread Gordon Smith
The totalMemory property of the flash.system.System class gives you The
amount of memory (in bytes) currently in use by Adobe Flash Player. I
don't know of a way to find out the total RAM.
 
- Gordon



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of footube42
Sent: Thursday, April 05, 2007 12:58 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to find out how much RAM the end
user has?



Is it possible to find out how much RAM the end user has? I'd like to
use this info to determine module loading/unloading.



 


Re: [flexcoders] Is it possible to build an actionscript only app that uses FDS remoting?

2007-02-26 Thread hank williams

Hey Brian,

Wow, not at all what I was thinking about but it looks like a better much
more flexible solution to the problem than what I had in mind.

Thanks
Hank

On 2/25/07, Brian Lesser [EMAIL PROTECTED] wrote:


Hi Hank,
I'm not using FDS, but do you mean like this:
http://www.mikenimer.com/index.cfm/2007/1/10/Bye-bye-services
Yours truly,
-Brian


hank williams wrote:

 I want to do java remoting, and I am currently using FDS. I would like
to
 build an actionscript project that uses java remoting via remoteObject.

 When you configure a flex project for remoting you indicate in the
 project
 settings where the flex server is, but these options are not available
 for
 an actionscript project. This would suggest that you cannot (or should
 not)
 do actionscript only projects that do FDS based remoting. My guess is
 that I
 am supposed to do this with a flex project but it does seem wierd that
an
 actionscript project is not supposed to be used for remoting.

 Any insight appreciated.

 Hank



--
__
Brian Lesser
Assistant Director, Application Development and Integration
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario   Phone: (416) 979-5000 ext. 6835
M5B 2K3Fax: (416) 979-5220
Office: POD??  E-mail: [EMAIL PROTECTED]
(Enter through LB99)   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






Re: [flexcoders] Is it possible to build an actionscript only app that uses FDS remoting?

2007-02-26 Thread Anatole Tartakovsky

Hank,
Create trivial MXML project with single remote object/destination. Compile
with -keep-generated-actionscript=true. Look for ...init... class - copy
part of it into your project.
Alternatively, you can use gateway java class that would do server side
translation - one destination talking to that class will support any number
of client destinations.
Regards,
Anatole


On 2/25/07, Brian Lesser [EMAIL PROTECTED] wrote:


  Hi Hank,
I'm not using FDS, but do you mean like this:
http://www.mikenimer.com/index.cfm/2007/1/10/Bye-bye-services
Yours truly,
-Brian

hank williams wrote:

 I want to do java remoting, and I am currently using FDS. I would like
to
 build an actionscript project that uses java remoting via remoteObject.

 When you configure a flex project for remoting you indicate in the
 project
 settings where the flex server is, but these options are not available
 for
 an actionscript project. This would suggest that you cannot (or should
 not)
 do actionscript only projects that do FDS based remoting. My guess is
 that I
 am supposed to do this with a flex project but it does seem wierd that
an
 actionscript project is not supposed to be used for remoting.

 Any insight appreciated.

 Hank


--
__
Brian Lesser
Assistant Director, Application Development and Integration
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario Phone: (416) 979-5000 ext. 6835
M5B 2K3 Fax: (416) 979-5220
Office: POD?? E-mail: [EMAIL PROTECTED] blesser%40ryerson.ca
(Enter through LB99) Web: 
http://www.ryerson.ca/~blesserhttp://www.ryerson.ca/%7Eblesser
__

 



Re: [flexcoders] Is it possible to build an actionscript only app that uses FDS remoting?

2007-02-25 Thread Brian Lesser
Hi Hank,
I'm not using FDS, but do you mean like this:
http://www.mikenimer.com/index.cfm/2007/1/10/Bye-bye-services
Yours truly,
-Brian


hank williams wrote:

 I want to do java remoting, and I am currently using FDS. I would like to
 build an actionscript project that uses java remoting via remoteObject.

 When you configure a flex project for remoting you indicate in the 
 project
 settings where the flex server is, but these options are not available 
 for
 an actionscript project. This would suggest that you cannot (or should 
 not)
 do actionscript only projects that do FDS based remoting. My guess is 
 that I
 am supposed to do this with a flex project but it does seem wierd that an
 actionscript project is not supposed to be used for remoting.

 Any insight appreciated.

 Hank



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



Re: [flexcoders] Is it possible to extends an Interface to an MXML Component ?

2007-02-05 Thread Michael Schmalle

Hi,

mx:Canvas implements=my.package.MyInterface, ect,etc
/mx:Canvas

Peace, Mike

On 2/5/07, helihobby [EMAIL PROTECTED] wrote:


  Of course you can extends an custom interface to an Action Script Class.

But is it possible to extend an Interface to an MXML Components ?
If so, what's the syntax ?

Regards,
Sean.

 





--
Teoti Graphix
http://www.teotigraphix.com

Blog - Flex2Components
http://www.flex2components.com

You can find more by solving the problem then by 'asking the question'.


RE: [flexcoders] Is it possible to write or to modify registrations of a xml with Flex?

2007-02-01 Thread Gordon Smith
What do you mean by registrations of a xml?

 

- Gordon

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of alphaclass525
Sent: Thursday, February 01, 2007 10:52 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to write or to modify registrations
of a xml with Flex?

 

Is it possible to write or to modify registrations of a xml in real 
time with Flex?

 



RE: [flexcoders] Is it possible to write or to modify a xml with Flex?

2007-02-01 Thread Tracy Spratt
An xml file on the server? See this:

http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI
D=544

 

On the client? No.

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of alphaclass525
Sent: Thursday, February 01, 2007 8:18 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to write or to modify a xml with
Flex?

 

Is it possible to write or to modify a xml with Flex?

 



Re: [flexcoders] Is this possible - SVG to PDF(vector) ?

2007-01-31 Thread Brendan Meutzner

I've had success in the past converting to EPS format from Flash Player
(which successfully opened in vector format inside Illustrator) by using
Print to File with specific print drivers... it's not exactly seamless, but
it worked.  I can track down the specific print drivers if that would
help...

Brendan



On 1/31/07, Alexander Tsoukias [EMAIL PROTECTED] wrote:


  Hi all...

How is it possible to take a canvas from FLEX and convert it to vector
PDF?

Is taking SVG and converting to a PDF a way? Does coldfusion have any
way of doing this?

Thanks,
Alexander

 





--
Brendan Meutzner
Stretch Media - RIA Adobe Flex Development
[EMAIL PROTECTED]
http://www.stretchmedia.ca


Re: [flexcoders] Is this possible - SVG to PDF(vector) ?

2007-01-31 Thread John Dowdell
Alexander Tsoukias wrote:
 How is it possible to take a canvas from FLEX and convert it to vector
 PDF?

I'm not sure... when you say FLEX are you thinking of the Flex Builder 
development environment, or the Flex Data Services server, or the Adobe 
Flash Player which is running a SWF which happened to be created using 
the Flex framework?

And where would the resulting PDF file be created... on your development 
machine during development, on your server when a visitor arrives, or 
would a PDF be created and stored on the enduser machine as they 
interact with a SWF?

There could be different paths, depending on where we're starting from, 
where we want to end up...?

jd





-- 
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.


RE: [flexcoders] Is it possible to Inheirt from an MX Application inside of an MX Application ?

2007-01-29 Thread Tracy Spratt
Yes, this is fine and it is exactly extending the other Application.  It
is apparently called code behind, search the archives for that.

 

Not sure why you are getting the error. 

 

Try this without the namespace name on local namespace declaration:

?xml version=1.0 encoding=utf-8?
ApplicationSecure xmlns=* ...

 

Assuming the two mxml files are in the same folder...

 

Tracy

 

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of helihobby
Sent: Monday, January 29, 2007 3:07 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to Inheirt from an MX Application
inside of an MX Application ?

 

Is it possible to Inheirt from an MX Application inside of an MX 
Application ?

We wish to make two MX applications.

One called:

ApplicationSecure ( file name is ApplicationSecure )

and One called:

ApplicationMain ( file name is ApplicationMain )

ApplicationSecure header looks normal such as:

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml
http://www.adobe.com/2006/mxml  
layout=absolute creationComplete=authenticate()
creationPolicy=all
xmlns:cc=dynaLib.common.components.* 

mx:Script
![CDATA[
...





However we wish ApplicationMain Header to look as the following:


?xml version=1.0 encoding=utf-8?
c:ApplicationSecure xmlns:c=* 
xmlns:mx=http://www.adobe.com/2006/mxml
http://www.adobe.com/2006/mxml  


...


/c:ApplicationSecure

So in ascence ApplicationSecure is inherting from Application.

ApplicationSecure will run first than ApplicationMain.

Everything seems ok, only that the compiler is comlaining that is can 
not find any 
of the MX components in its namespace path.

In other words, it is as if the ApplicationMain is ignoring the line: 
xmlns:mx=http://www.adobe.com/2006/mxml
http://www.adobe.com/2006/mxml 
becauase we have instructed it to inherit from ApplicationSecure.

Any Help will be greatly appreciated.

Regards,

Sean.

 



RE: [flexcoders] Is it possible to have an invisible component?

2007-01-08 Thread Tracy Spratt
Absolutely.  You can instantiate any custom AS class  using a tag.  The
AS class need not extend anything, but often you will want event
dispatching and such.

 

The tag will probably have to be at the top-level, since the standard
containers will not be set up to allow it as a child.

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of David Harris
Sent: Sunday, January 07, 2007 8:41 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to have an invisible component?

 

Does anyone know if the is a simple way to have a namespace:Tag /
that has no visible state?

I have an AS class that I would like to call namespace:MyASClass /...

Cheers,

David

 



Re: [flexcoders] Is it possible to have an invisible component?

2007-01-08 Thread David Harris

Hi Tracy,

Thank you.

When I was testing I was always adding my AS class as a child of a UI
component, and was getting the error: Component declarations are not
allowed here. (Note: visual children must implement mx.core.IUIComponent)

So, you are correct saying that it needs to be at the top level...

Thanks again!

On 1/9/07, Tracy Spratt [EMAIL PROTECTED] wrote:


   Absolutely.  You can instantiate any custom AS class  using a tag.  The
AS class need not extend anything, but often you will want event dispatching
and such.



The tag will probably have to be at the top-level, since the standard
containers will not be set up to allow it as a child.



Tracy


 --

*From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *David Harris
*Sent:* Sunday, January 07, 2007 8:41 PM
*To:* flexcoders@yahoogroups.com
*Subject:* [flexcoders] Is it possible to have an invisible component?



Does anyone know if the is a simple way to have a namespace:Tag /
that has no visible state?

I have an AS class that I would like to call namespace:MyASClass /...

Cheers,

David

 



RE: [flexcoders] Is it possible to upload an xml file from local filesystem into a variable

2006-11-29 Thread Tracy Spratt
The Flash Player security sandbox restrictions pretty much prevent
access to any local/client resources, including the file system.  There
are ways around this but they require signficant work.  

 

Is a projector like Zinc an option?

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Murdo
Sent: Wednesday, November 29, 2006 10:41 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to upload an xml file from local
filesystem into a variable

 

Hi,

I'm trying to replace a .Net web client which zips and xml file and
transfers it a server for analysis via a SOAP webservice. I wanted to
remove dependancy on .Net standalone client and use flex app as
replacment. I can't seem to find a way of loading the local xml file
into a var for compression and base64 encoding to webservice.

Can this be done or are there security restrictions on this?

Many thanks
Murdo

 



RE: [flexcoders] Is it possible to upload an xml file from local filesystem into a variable

2006-11-29 Thread Iko Knyphausen
I have loaded some local XML files using the HTTPService. Limitation: you
need to know the path of the file. It's like entering a local file URL into
your browser. Maybe this is not supposed to work, or maybe this is not what
you are trying to do...but I post it anyway...just in case.

mx:HTTPService
  id=xmlProjectData
   resultFormat=e4x
   url=file:///c:/Project13.xml file:///c:\Project13.xml 
   useProxy=false/ 

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tracy Spratt
Sent: Wednesday, November 29, 2006 11:54 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Is it possible to upload an xml file from local
filesystem into a variable

 

The Flash Player security sandbox restrictions pretty much prevent access to
any local/client resources, including the file system.  There are ways
around this but they require signficant work.  

 

Is a projector like Zinc an option?

 

Tracy

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Murdo
Sent: Wednesday, November 29, 2006 10:41 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is it possible to upload an xml file from local
filesystem into a variable

 

Hi,

I'm trying to replace a .Net web client which zips and xml file and
transfers it a server for analysis via a SOAP webservice. I wanted to
remove dependancy on .Net standalone client and use flex app as
replacment. I can't seem to find a way of loading the local xml file
into a var for compression and base64 encoding to webservice.

Can this be done or are there security restrictions on this?

Many thanks
Murdo

 



Re: [flexcoders] Is Unbinding possible ?

2006-11-24 Thread EECOLOR

Jup, the bindProperty returns a value (dont know which type from the top of
my head), check out the docs for the instance it returns. That instance
allows you to unbind.

Greetz Erik


On 11/23/06, dmandrio [EMAIL PROTECTED] wrote:


  After using BindingUtils.bindProperty(a, b, c, d), is it possible to
remove the binding ?





RE: [flexcoders] Is it possible to setup polling amf over HTTPS?

2006-11-02 Thread Cathy Reilly




 
What's the channel type and endpoint for a HTTPS polling amf channel???

The differences in the definition between the AMF channels 
and the polling AMF channels are the 'polling-enabled' and 
'polling-interval-seconds' properties.

Here's an example that should get you started 
-

channel-definition class="mx.messaging.channels.SecureAMFChannel" 
id="my-secure-polling-amf" 
endpoint class="flex.messaging.endpoints.SecureAMFEndpoint" uri="https://{server.name}:9100/myapp/messagebroker/amfpollingsecure"/endpoint 
properties 
polling-enabledtrue/polling-enabled 
polling-interval-seconds2/polling-interval-seconds 
/properties 
/channel-definition

- 
Cathy



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Steven 
TothSent: Wednesday, November 01, 2006 10:08 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Is it possible to 
setup polling amf over HTTPS?


I'm using a SecureAMFChannel for Remoting, but also need to use a 
DataService. I have a RTMPChannel that I'm going to switch over to 
SecureRTMPChannel, but have some users behind proxies. I want to setup a 
polling amf channel over HTTPS as a secondary channel. I haven't been able 
to find any documentation on whather it can be done, and if so, hwo to do 
it? I know the polling amf over HTTP uses the AMFChannel with the amfpolling 
endpoint. What's the channel type and endpoint for a HTTPS polling amf 
channel??? Thanks.-Steven
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






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

  




__,_._,___



Re: [flexcoders] is it possible to run background time consuming task in flex2?

2006-09-21 Thread Paul Andrews
- Original Message - 
From: nevgeniev [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 21, 2006 12:26 PM
Subject: [flexcoders] is it possible to run background time consuming task 
in flex2?



 Hi,

 Flex2/ActionScript programming model is singlethreaded, but it has
 asynchronous IO calls. This means that obviously AVM has threads to
 implement asyncIO.

 I need to perform some time consuming computations within actionscript,
 but I can't spawn new thread in AS. Hence the questions:

 1. can I somehow implement local service which will receive requests and
 post responses (events) to consume in GUI (event dispatch thread)? I
 mean reuse asynchronous IO implementation.

 2. back in windows 3.xx days (single threaded os) there was nested
 event loop approach so within computation loop I can call something
 like dispatchMessages() to prevent UI from lockup. Is it possible with
 flex?

Not that I know of. You might be able to kludge it using a timer to re-enter 
a routine to do some computation, then give up control, etc. It would 
probably seriously compromise the responsiveness of your application.

That kind of process is better suited to the server, where you could get 
back the results on completion.

Paul 




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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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




RE: [flexcoders] trace.... redirection possible?

2006-08-15 Thread Matt Chotin












In Flex 2 we have the mx.logging package which
may be what youre looking for.



http://livedocs.macromedia.com/flex/2/langref/mx/logging/Log.html



Matt











From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Brian Deitte
Sent: Monday, August 14, 2006
11:21 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
trace redirection possible?











There's
no way to redirect trace that I know of, other than to a
different file location. trace is only active when you are using the
debug player. 

There's various debug projects that use a cutom method rather than trace
and print out the debug messages in a different format. I don't know of
any for Flex 2, but here's one for 1.5:
http://www.adobe.com/devnet/flex/articles/tracepanel.html
-Brian 

 -Original Message-
 From: [EMAIL PROTECTED]ups.com

 [mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of Samuel Colak
 Sent: Monday, August 14, 2006 10:32 AM
 To: [EMAIL PROTECTED]ups.com
 Subject: [flexcoders] trace redirection possible?
 
 
 Dear all,
 
 is there any way of overriding the trace construct to go 
 elsewhere? - such as a custom class - 
 or is this only active in debug?
 
 Regards
 Samuel
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.com

 Yahoo! Groups Links
 
 
 
 
 
 
 






__._,_.___





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








   



  




  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___






  1   2   >