[flexcoders] Re: any word on smooth mouse wheel scrolling?

2010-07-12 Thread valdhor
I would add an event listener for the mouse wheel event and then change the delta (You'll have to experiment with the number to get it the way you like; You may even need to change the += to a -=)... addEventListener(MouseEvent.MOUSE_WHEEL, onMouseWheelEvent); private function

[flexcoders] Re: stopping accodion animation

2010-07-12 Thread valdhor
Have a look at the TweenEvent.TWEEN_END, EffectEvent.EFFECT_END and TweenEvent.TWEEN_UPDATE events. They may send you in the right direction. --- In flexcoders@yahoogroups.com, flexwdw flex...@... wrote: Hey all, I have to be able to dynamically remove children from an accordion container.

[flexcoders] remove border in a list ---make the border of the list invisible

2010-07-12 Thread Nini7016 Nini7016
Hello I wouldn't like to display the border of a list mx:List id=listFileUpload rowCount=1 height=45 x=10 y=72 width=289 visible=false editable=false/ What attribut can i add it to do this (remove the border ) Thank you NIni

Re: [flexcoders] Re: stopping accodion animation

2010-07-12 Thread dorkie dork from dorktown
i *haven't* been able to get this to work but you may, accordion.endEffectsStarted(); you can also set the openDuration to 0 when you remove the children. then set it back after. its a style so use: accordion.setStyle(openDuration, 0); On Mon, Jul 12, 2010 at

[flexcoders] Re: remove border in a list ---make the border of the list invisible

2010-07-12 Thread sminrana
borderAlpha=0 --- In flexcoders@yahoogroups.com, Nini7016 Nini7016 nahloulaha...@... wrote: Hello I wouldn't like to display the border of a list mx:List id=listFileUpload rowCount=1 height=45 x=10 y=72 width=289 visible=false editable=false/ What attribut can i add it to do this

[flexcoders] Re: remove border in a list ---make the border of the list invisible

2010-07-12 Thread sminrana
borderAlpha = 0 --- In flexcoders@yahoogroups.com, Nini7016 Nini7016 nahloulaha...@... wrote: Hello I wouldn't like to display the border of a list mx:List id=listFileUpload rowCount=1 height=45 x=10 y=72 width=289 visible=false editable=false/ What attribut can i add it to do

RE: [flexcoders] Re: remove border in a list ---make the border of the list invisible

2010-07-12 Thread Nini7016 Nini7016
Thks I have to add borderThickness=0 To: flexcoders@yahoogroups.com From: sminr...@gmail.com Date: Mon, 12 Jul 2010 13:18:18 + Subject: [flexcoders] Re: remove border in a list ---make the border of the list invisible borderAlpha = 0

[flexcoders] How to make the element of list stressed and having the color blue (other style : bold, inline)

2010-07-12 Thread Nini7016 Nini7016
Hello I have a list : mx:List id=listFileUpload rowCount=1 height=45 x=10 y=72 width=289 visible=true editable=false borderStyle = none/ in the dataoprovider , i put an arrayCollection : public var arrayFileUpload : ArrayCollection; ...

RE: [flexcoders] The lifespan of flex.

2010-07-12 Thread Gregor Kiddie
Not quite necro posting... (been on holiday so...) The route back to your client is to show both penetration statistics for Flash Player 10 versus HTML 5 compliant browsers. The 99% versus ~15% is a big difference. You might want to point out the ROI of Flex is drastically higher than HTML (

[flexcoders] Re: Flex Project Management App

2010-07-12 Thread Netaman
You can create a array of component names such as; spark.components.Button spark.components.TextInput spark.components.CheckBox spark.components.Label spark.components.RadioButton spark.components.DropDownList mx.controls.DataGrid spark.components.TextArea mx.controls.DateField then pass want you

RE: [flexcoders] loading image from url for groundoverlay on map

2010-07-12 Thread Gregor Kiddie
What's the size in pixels of the larger image? There is a hard pixel limit in the Flash Player. I'm trying to load an image (through url) as a groundoverlay on a google map. I use a different url from the same domain like (http://www.lamma.rete.toscana.it/models/marevento/wind10m_A_3.png) it

RE: [flexcoders] User Interface Design Groups

2010-07-12 Thread Gregor Kiddie
The IXDA lists are good places to ask this sort of question. Lots of good people there. I've been working on a little composite search UI component but it needs polishing off and I wondered if there were any groups out there that could help with this sort of thing? Does anyone know of any?

[flexcoders] Re: The lifespan of flex.

2010-07-12 Thread Netaman
The question you have to ask is how long will HTML5 be supported before HTML6-8 takes over the browser, also it looks like not all implementations of HTML are the same, so more browser supported third party javascript addons to handle the multitude of html5 workarounds... Flex is a fun

[flexcoders] Child of a child custom event handler

2010-07-12 Thread Scott
I've got a parent component that contains a child panel that contains a popup window. When the user enters the information and submits, I want to notify the top parent that a change has been made to refresh the other components. grandparent-Panel-PopupWindow In the popup window

[flexcoders] Re: Child of a child custom event handler

2010-07-12 Thread valdhor
Popup windows are parented by the system manager. What you would need to do is add an event listener to the system manager at the application level. When that event fires, you would then inject it into your component. --- In flexcoders@yahoogroups.com, Scott h...@... wrote: I've got a

[flexcoders] Re: Setting Different Style on ComboBox DropdownList

2010-07-12 Thread valdhor
Use an Item Renderer... Test1.mxml: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Script ![CDATA[ [Bindable] private var dp:Array = [ {ColorName: Red, ColorHex: #FF},

Re: [flexcoders] How to make the element of list stressed and having the color blue (other style : bold, inline)

2010-07-12 Thread Alex Harui
I would use a custom itemrenderer. There is no property or style you can set that will do it for you. On 7/12/10 6:56 AM, Nini7016 Nini7016 nahloulaha...@hotmail.com wrote: Hello I have a list : mx:List id=listFileUpload rowCount=1 height=45 x=10 y=72 width=289

[flexcoders] Scroll Parent Canvas from Datagrid Drag and Drop...

2010-07-12 Thread Jitesh Shah
How can I scroll parentDocument canvas when I perform Drag and Drop in DataGrid. First MXML There is creationComplete Script which adds Second mxml as child mx:Canvas id=containerWidgets x=0 y=35 width=100% height=5000 backgroundAlpha=0 / Second MXML (This MXML is used to move rows

RE: [flexcoders] Re: Child of a child custom event handler

2010-07-12 Thread Scott
That makes a lot of sense. But... How do I reference the popup at the top level? Is it PopUpmanager.POPUP or? Is there a way to look at this in the debugger? Thanks! From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

[flexcoders] Is there a way to tell flash NOT to render a certain area?

2010-07-12 Thread dorkie dork from dorktown
There's a component that I'm adding child components too it. When I do this there's a flash as the component is added and resized and then put into the right position. Is there a way to prevent a square area from being rendered for a second or two? I can fix the issue but I'd have to go into

[flexcoders] Flashbuilder 4.0.1 debugger issue?

2010-07-12 Thread Richard Rodseth
A colleague is experiencing a problem where our app hangs the browser when run in the debugger, but not when launched in non-debug mode (from Flashbuilder). He's the only one on the team who started Flex work since the release of 4.0.1 so I'm wondering if there are any known problems that could

[flexcoders] Re: Flashbuilder 4.0.1 debugger issue?

2010-07-12 Thread Richard Rodseth
He's also on Flash Player 10.1 and after deleting shared objects used by our splash screen, the app is locking up earlier (i.e. before dismissing the splash screen. Are there some changes I should know about relating to 10.1, security sandboxes, Shared Objects and the 4.0.1 debugger? On Mon, Jul

Re: [flexcoders] Flex print Without Dialog Box ?

2010-07-12 Thread Oleg Sivokon
Hi. I remember that MDM Zinc offered this (only for texts, not graphics) at some point (of course, only for desktop applications). Other than that, I'd say that if it is a browser based application, it should not be possible, and if it's a desktop, you should be looking into making some custom

Re: [flexcoders] Is there a way to tell flash NOT to render a certain area?

2010-07-12 Thread Alex Harui
Flash renders what is visible and on the display list. UIComponent is invisible until creationComplete and theoretically, it and all of its children shouldn’t be changing after then. Or make it visible=false until you know it is ready. On 7/12/10 2:37 PM, dorkiedorkfromdorkt...@gmail.com

[flexcoders] Display the Legend of each line series

2010-07-12 Thread Didi Tonfack
when i add the tag mx:Legend dataProvider={myChart}/ which myChart represent the id of the lineChart, i have this error: TypeError:Error #1034: Type Coercion failed: cannot convert mx.charts.chartClasses::legendd...@cc33701 to mx.charts.ChartItem. i tried to add the import like

Re: [flexcoders] Is there a way to tell flash NOT to render a certain area?

2010-07-12 Thread dorkie dork from dorktown
In that case, I'll elaborate on the situation... I am using a horizontal Accordion component with newest items to the right. When you scroll left you get to a location where more items are added. As you add each item the scrollbar thumb track jumps to the right and then jumps back to where the

Re: [flexcoders] Is there a way to tell flash NOT to render a certain area?

2010-07-12 Thread Alex Harui
I’m having trouble picturing an accordion with scrollbars. But if it did, why wouldn’t the scrollbar be tuned for the total number of children? Why are children being added as you scroll? On 7/12/10 6:59 PM, dorkiedorkfromdorkt...@gmail.com dorkiedorkfromdorkt...@gmail.com wrote: In