[flexcoders] Re: Does Adobe have plans for OplenGL Primitives or not?

2007-09-08 Thread barry.beattie
depends. I'm still hoping it'll be the full flash player on mobile devices somwday soon, not just flashlite. or perhaps give up now and have divergence right here? bloat the flash player with OpenGL support while flashlite progresses on regardless? I'm just hoping to eventually make flex apps

[flexcoders] Invite from Sebastien Arbogast ([EMAIL PROTECTED])

2007-09-08 Thread Sebastien Arbogast
SebastienArbogast ([EMAIL PROTECTED]) has invited you as a friend on Quechup... ...the social networking platform sweeping the globe Go to: http://quechup.com/join.php/aT0wMDAwMDAwMDA5ODc1NTk1JmM9MTAxNDQ3 to accept Sebastien's invite You can use Quechup to meet new people, catch up with

RE: [SPAM] RE: [SPAM] RE: [flexcoders] Display item renderer in only some rows of a datagrid

2007-09-08 Thread Paul Steven
Thanks for the reply Alex I create the xml data dynamically by retrieving the values from various objects so I can pretty much create whatever data representation I want. With regards interaction rules, the only interaction is to be able to set the values of the combo boxes then when a

Re: [flexcoders] stop a Title window from being dragged

2007-09-08 Thread li wenzhi
do you means the isPopUp property of UIComponent? - Original Message From: Alex Harui [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, September 7, 2007 12:02:13 PM Subject: RE: [flexcoders] stop a Title window from being dragged popUp = false From: [EMAIL PROTECTED]

Re: [flexcoders] stop a Title window from being dragged

2007-09-08 Thread Sheriff
i actually got it to work, just override public function startDragging(Whatever is in there):void{ //leave it empty } - Original Message From: li wenzhi [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, September 8, 2007 10:24:03 AM Subject: Re: [flexcoders] stop a

Re: [flexcoders] Link in one tab that opens the sister tab

2007-09-08 Thread Tony Alves
I control my tabs like this from the container/application holding the tab. myTab.selectedIndex=myTab.getChildIndex(sisterID); This is how I control the tabs from within the children var tn:TabNavigator = parent as TabNavigator; tn.selectedIndex =

[flexcoders] Custom namespaces and getter methods

2007-09-08 Thread Janis Radins
hey ppl! I just stumbled upon problem to define getter methods with custom namespaces. Could anyone confirm that getters can not be assigned to custom namespaces or point to error? What I do now is this: [File modelInternal.as] package model { namespace modelInternal; } [File SomeVO.as]

[flexcoders] Re: Custom namespaces and getter methods

2007-09-08 Thread Janis Radins
Forhot to mention, I created regular function right next to that getter like modelInternal function setFoo(value:String):void { } And that does'nt give me Ambiguous reference error unlike previously posted code.

RE: [SPAM] RE: [SPAM] RE: [flexcoders] Display item renderer in only some rows of a datagrid

2007-09-08 Thread Alex Harui
OK, good luck. You chose repeating DataGrids or custom renderers in a DataGrid? -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Steven Sent: Saturday, September 08, 2007 4:06 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Global variable - Best Practice

2007-09-08 Thread Ben Marchbanks
I have an application in which I current set a [Bindable] variable baseURL to the application URL. I have been accessing this variable from other components in the app using this.parentDocument.baseURL. This is a clunky solution since components may have their own children so I windup with

RE: [flexcoders] Global variable - Best Practice

2007-09-08 Thread Gordon Smith
One way is parentApplication.baseURL - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Marchbanks Sent: Saturday, September 08, 2007 3:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Global variable - Best

Re: [flexcoders] Global variable - Best Practice

2007-09-08 Thread Paul Andrews
You could use a static Class/Singleton to give you a single variable accessible from anywhere. Paul - Original Message - From: Ben Marchbanks [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, September 08, 2007 11:01 PM Subject: [flexcoders] Global variable - Best

Re: [flexcoders] Global variable - Best Practice

2007-09-08 Thread Sheriff
maybe have it as an event and just listen for it - Original Message From: Gordon Smith [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, September 8, 2007 5:25:00 PM Subject: RE: [flexcoders] Global variable - Best Practice One way is

Re: [flexcoders] Video and rtmp using Flex

2007-09-08 Thread greg h
Hi Philip, Do you have your RTMP URI? If so, you can take the example in the docs for the VideoDisplay component, and for the source= tag property, just replace this: source=assets/phone.flv with source=rtmp://myURI I have done it and it works fine. You can find the full example code here:

[flexcoders] private / getters and setters

2007-09-08 Thread Sheriff
what is the best practice for this, show i always have the private variables on top and then getters/setters later or just group both of them right after the other private var _test:Number //Constructor here //events etcc //getters and setters or //construct //vents //private var_test:Number

[flexcoders] Re: Drawing lines with undo function

2007-09-08 Thread philza1985
I've figured out a roundabout solution myself. I created 2 canvases (one a normal canvas, and another a class that extended ui component that can hold sprites). I called the normal canvas 'canvas' and the ui component class 'canvas_ui' I drew on 'canvas' using canvas.graphics.lineTo(x, y) and

[flexcoders] content not allowed in prolog?

2007-09-08 Thread grimmwerks
I'm getting this error and I don't know what it means...

[flexcoders] Using the Spring Loaded Tree

2007-09-08 Thread jensen.axel
This is an example of Jason Hawryluk's Spring loaded tree but re done to use the datadescriptor rather than xml for finding branches... it's a great component... you can drag and hover over the node you want, and it opens right up...

[flexcoders] variableRowHeight=true in List messing up height of last row

2007-09-08 Thread jandersen1978
I'm adding simple chat functionality to an application I'm working on and have the following List displaying messages: mx:List width=100% height=85% id=lstMessages itemRenderer=org.MessageRenderer variableRowHeight=true dataChange=handleDataChange(event)

RE: [flexcoders] variableRowHeight=true in List messing up height of last row

2007-09-08 Thread Alex Harui
I would override measure() and see what you're getting for the measuredHeight of the renderer. I'm guessing that it won't be right due to fact that flow-based text is hard to measure. A custom measure() routine would probably be better. Renderers have their explicitWidth set when they are

[flexcoders] How to know what is in mx_internal

2007-09-08 Thread Sheriff
I checked out the FlexLib on google, the superTabNavigator etc.. and they used alot of mx_internal stuff, now i tried finding any documentation about the stuff in there but couldnt find anything so i was wondering how did they find out what do to use.