[flexcoders] Interface class for states?

2007-01-15 Thread Van De Velde Hans
Hi, is there a way to use an interface class to define a minimum sets of states in an MXML component? For example, I need to be sure that every portlet (a component extending the Canvas) has at least these states: mx:State name=minimized /mx:State mx:State name=maximized /mx:State

RE: [flexcoders] Can we some how create HTML table in Flex

2007-01-15 Thread Van De Velde Hans
The gridlayout behaves like an HTML table: check the help for mx.containers.Grid,mx.containers.GridItem mx.containers.GridRow -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Webdevotion Sent: maandag 15 januari 2007 15:52 To:

RE: [flexcoders] Interface class for states?

2007-01-15 Thread Van De Velde Hans
Thanks for your reply, but this is not exactly what I need... :-} What I need is an (exotic) way to force the presence of certain states in a MXML component. For example we're developing www.belgacom.tv http://www.belgacom.tv in group and I want to make sure that everyone extending the

RE: [flexcoders] Client logging

2007-01-10 Thread Van De Velde Hans
No, you're wrong. Check http://osflash.org/xray http://osflash.org/xray and there are also many runtime trace panels out there that dump messages to the panel via LocalConnection (for ActionScript 1, 2 3) -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] customising preloader

2006-12-14 Thread Van De Velde Hans
http://www.onflex.org/ted/2006/07/flex-2-custom-preloaders.php http://www.onflex.org/ted/2006/07/flex-2-custom-preloaders.php http://www.onflex.org/ted/2006/07/flex-2-preloaders-swf-png-gif-examples.php http://www.onflex.org/ted/2006/07/flex-2-preloaders-swf-png-gif-examples.ph p

RE: [flexcoders] Preventing double clicking on a datagrid header !

2006-12-14 Thread Van De Velde Hans
Have you tried the attribute doubleClickEnabled=false ? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: donderdag 14 december 2006 17:49 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Preventing double clicking on a

RE: [flexcoders] customising preloader

2006-12-14 Thread Van De Velde Hans
[mailto:[EMAIL PROTECTED] On Behalf Of Van De Velde Hans Sent: 14 December 2006 16:31 To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] customising preloader http://www.onflex. http://www.onflex.org/ted/2006/07/flex-2-custom-preloaders.php org/ted/2006/07/flex-2-custom-preloaders.php

RE: [flexcoders] customising preloader

2006-12-14 Thread Van De Velde Hans
. (Hope this helps) -Original Message- From: Van De Velde Hans Sent: donderdag 14 december 2006 18:08 To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] customising preloader Now, I think with the example on the pages below : If you don't set the WelcomeScreen's property

RE: [flexcoders] OS detect

2006-12-12 Thread Van De Velde Hans
Check the Help for flash.system.Capabilities : ex. var versionString:String = flash.system.Capabilities.version; Alert.show(versionString:+versionString); -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of chrislee943 Sent: dinsdag 12 december

RE: [flexcoders] How to disable a mouse over?

2006-12-12 Thread Van De Velde Hans
{ g.moveTo( x, y + 1 ); } } } What I want is to avoid a mouseOut below when rolling over a dotted line, thanks in advance. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Van De Velde Hans Sent: maandag 11

RE: [flexcoders] Default value for combo boxes

2006-12-12 Thread Van De Velde Hans
Usually, I just add a first element in the dataProvider of the ComboBox. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of stephen50232 Sent: dinsdag 12 december 2006 12:48 To: flexcoders@yahoogroups.com Subject: [flexcoders] Default value for

RE: [flexcoders] Re: Default value for combo boxes

2006-12-12 Thread Van De Velde Hans
value for combo boxes --- In [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com, Van De Velde Hans [EMAIL PROTECTED] wrote: Usually, I just add a first element in the dataProvider of the ComboBox. -Original Message- From: [EMAIL PROTECTED] mailto:flexcoders

RE: [flexcoders] Re: How to disable a mouse over?

2006-12-12 Thread Van De Velde Hans
PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com, Van De Velde Hans [EMAIL PROTECTED] wrote: Some extra info to facilitate any response, so I have a container for the timeslots : mx:HBox id=timeSlotContainer horizontalGap=0 mouseEnabled=false mouseFocusEnabled=false

[flexcoders] How to disable a mouse over?

2006-12-11 Thread Van De Velde Hans
Hi, I have a whole list of clickable boxes and I draw grid lines over these boxes. Problem : when I mouseOver the grid lines with the mouse, it causes a mouseOut on the boxes below. Check http://www.belgacom.tv www.belgacom.tv chose English Maximize my TV guide portlet window : when you

RE: [flexcoders] How to remove shadow

2006-12-11 Thread Van De Velde Hans
Hi, you can either put another BitmapFilter on the UIComponent or simply try this in the creationComplete handler to remove the shadow: filters = new Array(); wkr, Hans. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent:

RE: [flexcoders] Re: How to remove shadow

2006-12-11 Thread Van De Velde Hans
or just Panel{ dropShadowEnabled = false; } (without the dot) -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of camlinaeizerous Sent: maandag 11 december 2006 19:02 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to remove

RE: [flexcoders] Re: fading htmlText - doesn't fade with my other stuff in my VBox, why how to fi

2006-12-11 Thread Van De Velde Hans
What you can do is put a layer above your text in the same color as you text background and fade out the overlayer. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of camlinaeizerous Sent: maandag 11 december 2006 17:41 To:

RE: [flexcoders] Function Error

2006-12-05 Thread Van De Velde Hans
Or you forgot text1 Anyway, I think it's better to keep your mx:Script - tag in the root node, here it's in the mx:Button - node -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Mineault Sent: dinsdag 5 december 2006 6:33 To:

[flexcoders] styleSheet on mx.controls.Text

2006-10-18 Thread Van De Velde Hans
Title: Message Hi list, I need to automatically apply a style on all hyperlinks in the html text of an mx.controls.Text component. Is there a way to put a stylesheet on the html text of amx.controls.Text cfr. the styleSheet property of the flash.text.TextField? Thanks in advance,

RE: [flexcoders] adding btuttons to panle titel bar

2006-10-18 Thread Van De Velde Hans
Title: Message A quick and dirty way is to put your panel into a canvas and superposition your buttons over your panel with absolute positioning. -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of learnerSent: woensdag 18 oktober

[flexcoders] Problem with extending mx.controls.DataGrid

2006-10-03 Thread Van De Velde Hans
Hi list, I'm busy skinning the DataGrid by extending mx.controls.DataGrid, but I get an error when using the mx:columns - tag with the extended DataGrid component : Could not resolve mx:columns to a component implementation. Does anybody have a fix? Wkr, Hans. -- Flexcoders Mailing List

RE: [flexcoders] Problem with extending mx.controls.DataGrid

2006-10-03 Thread Van De Velde Hans
Naturally, I can obtain my goal by setting the columns array with DataGridColumns with code, but it's less elegant I think. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Van De Velde Hans Sent: dinsdag 3 oktober 2006 14:48 To: 'flexcoders

[flexcoders] custom DataGridItemRenderer

2006-09-27 Thread Van De Velde Hans
Hi list, does anyone have an example about how to create a custom DataGridItemRenderer? :-} What I want to do is create a list in which only the last field is a clickable More information button. As data, I have an unique identifier. Any input is welcome. Thx, Hans. -- Flexcoders Mailing