[flexcoders] Re: Rotating Image with Matrix Transform

2009-02-07 Thread Corey Smaller
So maybe you need to do something like rotate up to 180 for example and then switch to -179 and rotate back to 0 for a full circle... If you try it , let as know... On Sat, Feb 7, 2009 at 2:37 AM, Corey Smaller corey_smal...@...wrote: hi, Im working on rotating an image simulating

[flexcoders] Rotating Image with Matrix Transform

2009-02-06 Thread Corey Smaller
hi, Im working on rotating an image simulating the Free Transform tool in Flash. I got it to rotate to 180 but then the image will not rotate further. so basically it gets upside down and then fights me and doesnt move. I have the source viewable on the example. the method is in the

[flexcoders] Re: BUG. TabNavigator in a Module

2008-05-09 Thread Corey Smaller
problem. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Thursday, May 08, 2008 2:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] BUG. TabNavigator in a Module has anyone encountered this? first

[flexcoders] Re: BUG. TabNavigator in a Module

2008-05-09 Thread Corey Smaller
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Thursday, May 08, 2008 2:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] BUG. TabNavigator in a Module has anyone encountered this? first problem I get

[flexcoders] calling different methods through XML and Flash Proxy class?

2008-05-09 Thread Corey Smaller
ok, im a little confused. I need to be able to call many different methods based on whatever comes in through the XML (ie- the XML would have a function node that names a preexisting function to handle whatever data comes in). My idea is to have one class that sends and receives the XML

[flexcoders] Re: calling different methods through XML and Flash Proxy class?

2008-05-09 Thread Corey Smaller
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Friday, May 09, 2008 5:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] calling different methods through XML and Flash Proxy class? ok, im a little confused. I need

[flexcoders] BUG. TabNavigator in a Module

2008-05-08 Thread Corey Smaller
has anyone encountered this? first problem I get is the historyManager crashes when loading a module with a tabnavigator hard coded into it. So, in the main app i added: import mx.managers.HistoryManager; private var hist:HistoryManager; this fixed THAT problem but now, when you load the

[flexcoders] double click edit of tree errors

2008-04-29 Thread Corey Smaller
instead of making the tree row/column editable on single click i added a small pop-up on double click that allows the user to edit the name/delete the dir/add sub folders/or refresh. the events/listeners all work fine. I get two problems though: 1. if you choose to edit the name of one folder and

[flexcoders] Re: comparing a string to a group of canvas's id and assigning them

2008-04-21 Thread Corey Smaller
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Friday, April 18, 2008 3:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] comparing a string to a group of canvas's id and assigning them that was pretty vague. Basically what I am doing

[flexcoders] comparing a string to a group of canvas's id and assigning them

2008-04-18 Thread Corey Smaller
that was pretty vague. Basically what I am doing is getting an XML feed with different URLs to assign to different panels on the home page based on the users permissions. Each panel represents a certain section of the site- ie: Properties, Operations, Advertising, etc etc. so in the XML there is a

[flexcoders] Re: PopUp Containers and Scrolling Issues

2008-02-11 Thread Corey Smaller
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Friday, February 08, 2008 4:41 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: PopUp Containers and Scrolling Issues it is very strange to me indeed. I

[flexcoders] PopUp Containers and Scrolling Issues

2008-02-08 Thread Corey Smaller
ok, I have two VBoxes in my popup. and if the content on the left Vbox is greater than the hieght of the popup window a Vscroll bar should be present. So, I only want the VBox on the right to scroll, not all the popup content. When I change the mx:TitleWindow verticalscrollpolicty=off NO

[flexcoders] keyboard event function in popup window

2008-01-24 Thread Corey Smaller
ok, so my app uses all KeyboardEvent/keyCodes for navigation. It worked wonderfully until I created a popup window which also has keyboard nav between two buttons, one being 'close this popup'. I wanted to set the focus back to the button that called the popup window when you click the close

[flexcoders] Re: keyboard event function in popup window

2008-01-24 Thread Corey Smaller
on and it works. so maybe try that - Original Message From: Corey Smaller [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, January 24, 2008 7:27:09 PM Subject: [flexcoders] keyboard event function in popup window ok, so my app uses all KeyboardEvent/ keyCodes

[flexcoders] Folding only works when you fold all your AS code

2008-01-23 Thread Corey Smaller
I cannot seem to fold specific functions, just the mx/Script instantiation which of course folds all my AS code. I have folding enabled and it worked in earlier versions. anyone else having this problem? you are supposed to be able to click in the folding area to the left of the function either

[flexcoders] Re: How to Access Child Objects and its properties...?

2008-01-17 Thread Corey Smaller
have you tried using localToGlobal or contentToGlobal on the variables inside of the Box? I have been dealing with this for the past 8 hours and it helps alot. basically puts your X an Y variables to their global (stage) absolute stage position. check out the adobe docs for help on coordinates.

[flexcoders] trouble with localToGlobal point? this may help u

2008-01-17 Thread Corey Smaller
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Wednesday, January 16, 2008 2:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: localToGlobal X position I lied, the X and Y position is returning god knows what, all i know

[flexcoders] localToGlobal X position

2008-01-16 Thread Corey Smaller
weird, the X and Y Position returned when I use localToGlobal on a button in a canvas container returns the exact middle of the button, not the upper left corner. is this supposed to happen??

[flexcoders] Re: localToGlobal X position

2008-01-16 Thread Corey Smaller
I lied, the X and Y position is returning god knows what, all i know is its wrong. //compare the next highlighted component with the button found in arr if(buttonArray[arr] == focusManager.getNextFocusManagerComponent()) { //start to convert to global X and Y

[flexcoders] child X position and parent X position

2008-01-15 Thread Corey Smaller
ok so I have a child canvas and a parent canvas that acts as a mask. I have the navigation set up using the arrow keys between all the elements in the child container. Lets say my child container's height is 5000 and width is 5000 but my mask is 800 x 600 (the childs size actually varies based

[flexcoders] Re: child X position and parent X position

2008-01-15 Thread Corey Smaller
guide. It has a good explanation. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Tuesday, January 15, 2008 7:35 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] child X position and parent

[flexcoders] Re: tabEnabled not enabling

2008-01-04 Thread Corey Smaller
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Saturday, December 22, 2007 2:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: tabEnabled not enabling Here is the link

[flexcoders] Re: keyboard up down navigating

2008-01-04 Thread Corey Smaller
on the right one. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Thursday, January 03, 2008 5:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] keyboard up down navigating I need to have my app

[flexcoders] Re: keyboard up down navigating

2008-01-04 Thread Corey Smaller
child in an array and scanning the array From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Friday, January 04, 2008 11:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: keyboard up down navigating

[flexcoders] keyboard up down navigating

2008-01-03 Thread Corey Smaller
I need to have my app keyboard navigatable with the up/down/left/right arrows. I have the left/right arrow assignments working but the up/down not so much. I am also using the constraintRows and constraintColumns instead of the deprecated Grid class. I want to navigate to the object

[flexcoders] Flexlib scheduler again

2007-12-24 Thread Corey Smaller
sorry, i keep banging my head against this google scheduler to no avail. the problems I have: A. even though the content of the scheduler and each entry is tabEnabled and tabChildren = true i cannot tab through the entries, B.setFocus doesnt work. I need focus set on the very first entry (top

[flexcoders] what to do with the google scheduler?

2007-12-23 Thread Corey Smaller
i have had so many issues working with this scheduler that I may have to use my breadcrumbs and retrace my steps back to when I stopped using an advanced DataGrid and started using the scheduler (but there are other problems with using that which is why i started using the scheduler). I cannot

[flexcoders] Re: Can anyone help me get this amazing fire effect work ...

2007-12-23 Thread Corey Smaller
- http://flexlib.googlecode.com/svn/trunk/docs/flexlib/controls/Fire.html is this the same code? should work -- In flexcoders@yahoogroups.com, helihobby [EMAIL PROTECTED] wrote: I got this Effect from a friend and its written in Flash but all in Actionscript 3 so it should work for Flex as

[flexcoders] Re: tabEnabled not enabling

2007-12-22 Thread Corey Smaller
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Tuesday, December 18, 2007 5:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] tabEnabled not enabling after much pain and suffering with this Flexlib Schduler, i have set my schedule program

[flexcoders] Re: tabEnabled not enabling

2007-12-19 Thread Corey Smaller
with the updated time @author: Corey Smaller @date: 12/08/2007 */ private function resetNow(event:TimerEvent):void { this.clock.text = new Date().toLocaleTimeString(); } ]] /mx:Script !-- HTTP Request for shows

[flexcoders] implementing IFocusManager

2007-12-18 Thread Corey Smaller
i imported mx.managers.IFocusManagerComponent and implemented it like so: public class ColoredScheduleEntry extends SimpleScheduleEntry implements IFocusManagerComponent { public var backgroundColor : int = 0xcc; override public

[flexcoders] Re: implementing IFocusManager

2007-12-18 Thread Corey Smaller
http://www.venkatj.com --- In flexcoders@yahoogroups.com, Corey Smaller corey_smaller@ wrote: i imported mx.managers.IFocusManagerComponent and implemented it like so: public class ColoredScheduleEntry extends SimpleScheduleEntry implements IFocusManagerComponent

[flexcoders] Re: implementing IFocusManager

2007-12-18 Thread Corey Smaller
--- In flexcoders@yahoogroups.com, Corey Smaller corey_smaller@ wrote: ah so what you are saying is because its not a UI component I have to declare the get and set methods myself? Do I have to override the IFocusManagerComponent class altogether?? thanks for the help

[flexcoders] Re: implementing IFocusManager

2007-12-18 Thread Corey Smaller
. The errors indicate you have not implemented the required methods. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Tuesday, December 18, 2007 12:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re

[flexcoders] Re: implementing IFocusManager

2007-12-18 Thread Corey Smaller
if SImpleScheduleEntry extends UIComponent. Otherwise you have more work to do. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Tuesday, December 18, 2007 12:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re

[flexcoders] tabEnabled not enabling

2007-12-18 Thread Corey Smaller
after much pain and suffering with this Flexlib Schduler, i have set my schedule program objects (entry) to tabEnabled= true, tabchildren=true, focusEnabled=true . I have traced the tab index of each item when I click it and the index number shows up so i know the entry is enabled so I figured the

[flexcoders] Setting Focus on Google's Flexlib Scheduler

2007-12-17 Thread Corey Smaller
I want the scheduler to focus on the first item (upper left corner) loaded from the dataprovider on creationComplete AND be able to scroll using keystrokes (left, right, up, down arrows) instead of scrollbars and the mouse. Logically I thought no problem just set the focus to the first array in

[flexcoders] Re: Google Scheduling Framework question

2007-12-14 Thread Corey Smaller
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Friday, 14 December 2007 7:08 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Google Scheduling Framework question Mike yea that is exactly what I am using--example 6. I already tweaked

[flexcoders] Flex Builder 3 Beta 3 released!

2007-12-14 Thread Corey Smaller
I am sure most of you know this but it has been released (yesterday) Merry Chrismachanukwanza !

[flexcoders] Google Scheduling Framework question

2007-12-13 Thread Corey Smaller
this is clear. Does anyone know where to find this or can offer some help? any would be appreciated! thanks so much!! Corey Smaller

[flexcoders] Re: Google Scheduling Framework question

2007-12-13 Thread Corey Smaller
google has an API for all types of stuff check out the examples here http://flexlib.googlecode.com/svn/trunk/examples/SchedulingFramework/ --- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: what is the Google Scheduling Framework? Hank

[flexcoders] Re: Google Scheduling Framework question

2007-12-13 Thread Corey Smaller
/trunk/examples/SchedulingFramework/ScheduleViewer6_Sample.swf Source at: http://flexlib.googlecode.com/svn/trunk/examples/SchedulingFramework/ScheduleViewer6_Sample.mxml Is that what you are looking for? Corey Smaller wrote: Hi y'all, I am new here but been coding flex for a while My

[flexcoders] Re: Google Scheduling Framework question

2007-12-13 Thread Corey Smaller
/ Corey Smaller wrote: google has an API for all types of stuff check out the examples here http://flexlib.googlecode.com/svn/trunk/examples/SchedulingFramework/ http://flexlib.googlecode.com/svn/trunk/examples/SchedulingFramework/ --- In flexcoders@yahoogroups.com mailto:flexcoders

[flexcoders] Re: Flex Builder 3 beta 3 licence

2007-12-13 Thread Corey Smaller
i found the watermark goes away when you use your Flex 2 serial for chrating (the charting serial is diff) it worked for me --- In flexcoders@yahoogroups.com, windsail05 [EMAIL PROTECTED] wrote: Yes, the question of why the serials will not work was answered, but there is still the issue

[flexcoders] Re: HTTPService - datagridcolumn returning object Object when there is a null va

2007-12-12 Thread Corey Smaller
if using E4x resultFormat you have to call the parent node in the assignment like this: private function blah(event:ResultEvent) : void { //dataXML is an XMLList dataXML = (event.result.parentnode); //alert should show your nodes

[flexcoders] converting XML element to IList error

2007-12-12 Thread Corey Smaller
does anyone know what is wrong with this one: my HTTP request returns fine into the function (e4x resultFormat) and Adobe says IList supports XMLList but I keep getting this error. it appears the Ilist is trying to convert XML elements and throws an error. I get no errors when compiling, only at

[flexcoders] data grid dilemma

2007-12-11 Thread Corey Smaller
ok, i am stumped. does anyone know how to create a looping vertical datagrid? Like your guide on cable tv or tivo? Im thinking it must involve counting the rows and if the last row is highlighted go back to the top or append the first row to it but I cannot for the life of me figure out how to

[flexcoders] Re: data grid dilemma

2007-12-11 Thread Corey Smaller
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 11 Dec 2007, Corey Smaller wrote: to the top or append the first row to it but I cannot for the life of me figure out how to write the code. It's just pagination of the result set, is it not, with some extra