[flexcoders] Re: Rotate Button label without embedding fonts

2008-03-27 Thread joan_lynn
One of our developers suggested putting a 0-value BlurFilter on the Button. This puts the button into bitmap mode, which will allow it to be rotated, text and all. Joan --- In flexcoders@yahoogroups.com, imjackson84 [EMAIL PROTECTED] wrote: Hi, I am trying to create a custom Button class

[flexcoders] Re: scrolling question

2008-03-24 Thread joan_lynn
When you advance to the next page, set the verticalScrollPosition property of your List to 0. Joan --- In flexcoders@yahoogroups.com, Body Works Studio [EMAIL PROTECTED] wrote: I have a report using a list component with a custom renderer. We have a paging controller on the page that when you

[flexcoders] Re: Flex2 versus Flex3 font size

2008-03-21 Thread joan_lynn
I'm pretty sure that your problem with Button labels is not because of a font change, but, rather, a change in our default Button. In Flex 2, the styles paddingLeft, paddingRight, paddingTop and paddingBottom didn't work. So, Button had some hacky code to figure out how much spacing there was

[flexcoders] Re: Adding parallel transition effect or filter to target when create on Base St

2008-02-15 Thread joan_lynn
Your code works fine for me. I tried it in Flex 3 and Flex 2.0.1. What build are you using. Please be sure that you have the panLogin object in your application. Here is the entire application that I compiled: ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: DragManager broken in beta 3? Or my code broken?

2008-02-08 Thread joan_lynn
This is probably because the item you are dragging is not serializable. You need to add: [RemoteClass(com.my.company.Product)] metadata to their Product class. Joan --- In flexcoders@yahoogroups.com, ckjones84 [EMAIL PROTECTED] wrote: im having similar problems with DragManager in beta 3

[flexcoders] Re: SoundEffectInstance Bug on Resume in Flex 2

2008-02-04 Thread joan_lynn
I am not seeing the bug with this simple code: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; horizontalAlign=left mx:Script [Bindable] [Embed (source=../assets/jazz.mp3)] public var soundClass:Class; /mx:Script mx:SoundEffect id=mySound2 source={soundClass} duration=2 /

[flexcoders] Re: Passing data from TitleWindow to application

2007-03-02 Thread joan_lynn
I believe that you need to dispatch an event from the PopUp with all of the information that you want to pass to the main Application. Here is an example of what I think you want to do: FILE: heightEvent .as package { import flash.events.Event; public class heightEvent extends

[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-21 Thread joan_lynn
We got the bugs from Todd and Jeff and are looking at the issue now. You will run into the problem with any Drag and Drop operation in PopUps. I'll report back if we come up with a workaround. Thanks, Joan --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: I've submitted a

[flexcoders] Re: Menu - handle sub-menu clicks

2006-07-11 Thread joan_lynn
Dmitry, You can try to keep track of the last menu item that your mouse rolled over by using the itemRollOver event. Then, in the menuShow event, check this value. See if that works. Joan --- In flexcoders@yahoogroups.com, chrislee943 [EMAIL PROTECTED] wrote: --- In

[flexcoders] Re: columnCount prop doesn't work in TileList(Flex2.0)

2005-12-15 Thread joan_lynn
This is a bug logged in our system and it should be fixed in upcoming builds of Flex2. Joan --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: If your test case is that simple it may be that TileList has a bug. It mostly worked when I just tested it on a local build