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

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

2011-09-22 Thread Hogs Haven
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

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

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,

[flexcoders] Is this possible with Flex 4?

2010-08-20 Thread George
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

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

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

2010-08-20 Thread Bill Brutzman
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

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread valdhor
This looks like the perfect use case for an Advanced Datagrid with a Grouping Collection. --- In flexcoders@yahoogroups.com, Jesus Saad jesus.s...@... wrote: Is possible to display any Collection within another Collection using anyone flex component? Ex.: I have a

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread Jesus Saad
Hummm, but how can I iterate my usersWO subcollection in Datagrid to put these items in multiline label? Do you have an idea? --- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: You can use a multiline label Function to display your text. In your label function simply append \n as

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread Jesus Saad
Hi, i'm sorry, but I can`t understand this solution for my case... Can you explain better how can I display the items in subcollection? --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: This looks like the perfect use case for an Advanced Datagrid with a Grouping Collection.

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread valdhor
Do a google search for flex advanceddatagrid example and you will find a lot of examples. --- In flexcoders@yahoogroups.com, Jesus Saad jesus.s...@... wrote: Hi, i'm sorry, but I can`t understand this solution for my case... Can you explain better how can I display the items in

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread tntomek
Just to implement the column labelFunction and check out the SDK documentation. When you debug it will become apparent --- In flexcoders@yahoogroups.com, Jesus Saad jesus.s...@... wrote: Hummm, but how can I iterate my usersWO subcollection in Datagrid to put these items in multiline label?

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-23 Thread tntomek
You can use a multiline label Function to display your text. In your label function simply append \n as you loop through your sub collection http://tomek.me --- In flexcoders@yahoogroups.com, Jesus Saad jesus.s...@... wrote: Is possible to display any Collection within another Collection

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

2010-05-27 Thread Baz
Is it possible to define a component's skin within the component itself along the lines of: s:Button xmlns:fx=http://ns.adobe.com/mxml/2009; s:skinClass fx:Component s:SparkSkin xmlns:s=library://ns.adobe.com/flex/spark ... /s:SparkSkin /fx:Component /s:skinClass /s:Button

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.

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

2010-05-21 Thread Baz
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

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

2010-05-21 Thread Baz
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?

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,

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 /

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

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

[flexcoders] Is it possible to integrate the CTRL+F browser search with flex text?

2010-05-21 Thread Baz
All browsers have some text search functionality triggered by CTRL+F. Is it possible to use that to search text in a Flex application?

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

[flexcoders] Is it possible to disable automatic re-positioning of viewports when associated with a Scroller?

2010-05-19 Thread Baz
If you implement the Scroller (or VScroller) in a non-standard way as a separate entity (i.e. NOT surrounding the object you want to scroll) then manually assign it's viewport to the object that needs to be scrolled. The scroller automatically changes the size and position of it's target object.

[flexcoders] Is it possible to inspect a function (to determine it's and parameters)?

2010-04-13 Thread kidl33t
I have a method which takes a function as one of its parameters. Is there any way to inspect this function and determine what parameters it takes? I have tried both getClassInfo()and describeType(). describeType does in fact return that information I need if the class passed to it has a

[flexcoders] Is it possible to change the datatip dot style/position on a chart?

2010-03-20 Thread s_grollins
Hi everyone, I have a column chart and I want to reposition and change the style of the datatip dot - the datatip itself I can change by setting the datatip renderer - but what about the positioning of that dot? For an example view the following:

[flexcoders] is it possible to take an imagesnapshot of part of a container??

2010-01-29 Thread rgadiparthi
Hi all, I want to take image snapshot of my container top 10%. is it possible??

[flexcoders] IS IT POSSIBLE??Load an SWF in another SWF using 2 diff loaderContext appdomain

2009-08-12 Thread Mehdi
I am getting to the conclusion that the following is not supported at all. (Using flex 3.2 SDK): Loading one SWF into another one using 2 different loaderContext. I tried using the Loader and the SWFLoader (and to some extend the ModuleLoader) 1- Build a simple Flex App with a combo box or

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

2009-08-12 Thread dorkie dork from dorktown
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 Tracy Spratt
@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!

[flexcoders] PopUp databinding - possible?

2009-08-07 Thread Dave Cates
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

[flexcoders] PopUp databinding - possible?

2009-08-07 Thread Dave Cates
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

RE: [flexcoders] PopUp databinding - possible?

2009-08-07 Thread Tracy Spratt
] 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

Re: [flexcoders] PopUp databinding - possible?

2009-08-07 Thread Dave Cates
...@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

[flexcoders] Is it possible to set Keyboard language for a flex App

2009-06-24 Thread Jag
We have a Flex App and have to set the keyboard language to US. Is this possible to do from a Flex App, index.html or Javascript. Any help is appreciated

[flexcoders] Is it possible to layer div|iframe over flash app without wmode=transparent

2009-05-26 Thread Greg Hess
Hi Folks, We have built a flash app that currently layers an HTML div over the flash for some key functionality (non h264 video playback). Everything is working fine, our first deployment is in France this summer and we are doing our translations ect... Unfortunately, it seems we are now one of

[flexcoders] Is it possible to reference an external css file (from a library)

2009-05-07 Thread gmoniey22
If I want to reference an external mxml component, I do something like this: mx:VBox xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:Base=com.mydomain.ui.*/ Is it possible to do the same for stylesheets? Lets say there is a stylesheet under: /com/mydomain/ui/style.css How can I reference it? I

[flexcoders] Is it possible to create a 4 axis Plot Chart ???

2009-04-29 Thread sailorsea21
Hi everyone, is it possible to create a 4 Axis Plot Chart forming a + ? Left to Center: 0 - 50 Center to Right: 50 - 100 Bottom to Center: -100 - 0 Center to Top: 0 - 100 Thanks.

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

2009-04-15 Thread e_baggg
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

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

2009-04-15 Thread Tracy Spratt
@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

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

2009-04-07 Thread sailorsea21
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

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

2009-04-07 Thread Battershall, Jeff
: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

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

2009-04-07 Thread - -
: [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

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

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

2009-04-07 Thread Battershall, Jeff
: [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

[flexcoders] Is it possible to query Flash Player attributes e.g. allowFullScreen?

2009-03-21 Thread Dave Kong
I couldn't find a way to check if allowFullScreen is set to true from within my Flex app. Is this possible at all? And to generalize, is it possible to query the other Flash settings that are set via object or embed tag in the html, such as wmode, etc?

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

2009-02-17 Thread uclamerrick
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 and places it onto the page at http://myblog.wordpress.com/this_video_rocks I know how to use HTTPService

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

2009-02-17 Thread Tracy Spratt
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

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

2009-02-16 Thread yossi.baram
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 set different width for columns in HorizontalList ?

2009-02-16 Thread Alex Harui
] 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

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

[flexcoders] Is It possible to dynamically resize datagrid's Width

2009-02-03 Thread Dharmendra Chauhan
Hi All, I have designed a custom data which allows user to add column dynamically.It allows user to resize Column.the functionality which I am looking for is that if I hold mouse on the last column and take it to the right to increase column's width then datagrid should increase its own

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

2009-01-02 Thread lb100lb
I have a flex client from which I would like to make RemoteObject calls through LCDS to a J2EE server. 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? How would

[flexcoders] Is this possible?

2008-10-23 Thread donvoltz
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

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

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

2008-10-17 Thread thakkar_mithun2000
Hello, Is it possible to use OLAPResult as DataProvider for AdvancedDataGrid? Regards, Mithun

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

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

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

2008-10-08 Thread Farid SALAH
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

[flexcoders] Is it possible to change showDelay for only errorTips?

2008-09-22 Thread Todd
Hello All, I know about ToolTipmanager.showDelay. But I want to only affect the showDelay for errorTips, while leaving the rest of the tooltips to display with a proper delay. I'd like to have our errorTips immediately display. Or, if you have any other suggestions on getting the errorTip

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

2008-09-11 Thread Gregor Kiddie
: [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

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

2008-09-11 Thread anuj sharma
] -- *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

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

2008-09-10 Thread Gregor Kiddie
] 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

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

2008-09-10 Thread anuj sharma
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

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

2008-09-10 Thread anuj sharma
@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

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

2008-09-09 Thread anuj sharma
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

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

2008-09-09 Thread anuj sharma
[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

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

2008-09-09 Thread Tracy Spratt
, 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

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

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

2008-09-09 Thread anuj sharma
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

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

2008-09-08 Thread anuj181
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

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

2008-09-08 Thread Alex Harui
@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

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

2008-09-02 Thread Manu Dhanda
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

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

2008-09-02 Thread Sherif Abdou
- 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

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

2008-09-02 Thread Alex Harui
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

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

2008-08-04 Thread Amy
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

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

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

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

2008-07-16 Thread Josh McDonald
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 ;-)

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

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

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,

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

2008-06-25 Thread Body Works Studio
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

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

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

2008-06-25 Thread Alex Harui
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

RE: [flexcoders] Synchronous HTTPService possible?

2008-06-03 Thread Tracy Spratt
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

[flexcoders] Synchronous HTTPService possible?

2008-06-03 Thread Chilcoat, Dee
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

[flexcoders] Is it possible to invoke a AMF call just before browser close?

2008-05-20 Thread Dan
Hi, I am trying to invalidate a session by explicity invoke a AMF call when the user click logout or closing the browswer. By ExternalInterface, the CLOSE event is capture within the FLEX correctly. But by tracing in the debugger, if a AMF is invoke upon this, the call did invoke but the AMF

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

[flexcoders] Is this possible?

2008-05-06 Thread Phill B
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

RES: [flexcoders] Is this possible?

2008-05-06 Thread Luciano Manerich Junior
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 Tracy Spratt
-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

Re: [flexcoders] Is this possible?

2008-05-06 Thread 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?

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

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

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

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

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

  1   2   3   >