[flexcoders] Re: Binding using as3

2013-01-31 Thread aceoohay
Paul, BTW I did try BindingUtils.bindProperty(vtiA,"x",this,"_y"); and it did not seem to work for me. It recognized _y as it required that I change it to a public variable. --- In flexcoders@yahoogroups.com, "Paul A." wrote: > > On 30/01/2013 23:17, a

[flexcoders] Re: Binding using as3

2013-01-31 Thread aceoohay
textinput component, so that the next time a method of that object is fired, it will know of the changed value. Paul --- In flexcoders@yahoogroups.com, "Paul A." wrote: > > On 30/01/2013 23:17, aceoohay wrote: > > I have customized textinput control with a property of x. In

[flexcoders] Binding using as3

2013-01-30 Thread aceoohay
I have customized textinput control with a property of x. In my program I instntiate the control as vtiA. My program has a bindable variable called _y. I would like everytime that _y is changed by my program that the property x of the control vtiA reflects the new values. What I have done that

[flexcoders] @import for stylesheets

2013-01-17 Thread aceoohay
In the applications that I have developed I use runtime loadable stylesheets (compile to SWF). I have noticed that a number of my stylesheets are similar. I would like to consolidate the similarities into one or more base stylesheets, and use something similar to the @include or @include url()

[flexcoders] Re: DataGrid header styles...

2012-05-23 Thread aceoohay
Harui wrote: > > There is an object or two on each UIComponent that has styles, but it > actually has lots of styles that probably don't matter. I would just call > getStyle for the styles you know you can replicate to Excel. > > > On 5/15/12 3:56 PM, "aceoohay&qu

[flexcoders] DataGrid header styles...

2012-05-15 Thread aceoohay
Here are two related questions, I am using SDK 3.5 & FlexBuilder 3; 1) How can I get the header style information from a datagrid? What I need to do is to extract enough info about each column's header to be able to pass it to an Excel component to style the headers of the spreadsheet. 2) Is th

[flexcoders] Re: asdocs blows up.

2011-09-27 Thread aceoohay
While I would still like to understand how to troubleshoot this, it would appear that SDK 3.6.0 doesn't have the problem. Unfortunately it will take a little while to be able to fully switch to 3.6.0. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > I have b

[flexcoders] Re: What happened to advancedDataGridClasses in sdk 3.6.0

2011-09-27 Thread aceoohay
Nevermind. I had not downloaded the Datavisualization bit. once I downloaded this the issue went away. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > Whilst trying to resolve my asdoc's issue, I decided to download sdk 3.6.0. I > previously had been usin

[flexcoders] What happened to advancedDataGridClasses in sdk 3.6.0

2011-09-27 Thread aceoohay
Whilst trying to resolve my asdoc's issue, I decided to download sdk 3.6.0. I previously had been using 3.5.0. When I try to compile my application I get an error 1064 looking for AdvancedDataGridColumn in my as code. I checked and the import is there; import mx.controls.advancedDataGridClasses

[flexcoders] asdocs blows up.

2011-09-27 Thread aceoohay
I have been using asdoc for a number of years to document a system. Recently I tried to run it to create a new version of the docs and I get the message; Error: Could not create toplevel.xml: Nothing else to provide a clue as to what might be happening. The full command I run is; C:"\Program F

[flexcoders] Re: Get the fontWeight of a datagrid header.

2011-09-12 Thread aceoohay
I guess no one knows how to do this. If I find a way I will post it here. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > I found what I want (I think) in cachedHeaderRenderer - inheritingStyles - > fontWeight. Unfortunately I have no idea how to reference t

[flexcoders] Re: Get the fontWeight of a datagrid header.

2011-09-06 Thread aceoohay
I found what I want (I think) in cachedHeaderRenderer - inheritingStyles - fontWeight. Unfortunately I have no idea how to reference that. Any ideas? Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > Is there a way of getting the fontWeight, color, style... of the

[flexcoders] Get the fontWeight of a datagrid header.

2011-09-02 Thread aceoohay
Is there a way of getting the fontWeight, color, style... of the column header in a datagrid? I am writing a component that converts a datgrid to excel, and would like to make the spreadsheet look as similar as possible to the data grid.

[flexcoders] Re: How to tell if I am a popup.

2010-09-01 Thread aceoohay
Thanks for the info, I used; this.isPopUp and it worked great. --- In flexcoders@yahoogroups.com, Haykel BEN JEMIA wrote: > > http://livedocs.adobe.com/flex/3/langref/mx/core/IUIComponent.html#isPopUp > > Le 2010 8 30 22:44, "aceoohay" a écrit : > > > I ha

[flexcoders] setter not setting

2010-07-28 Thread aceoohay
I have a custom component that I have defined a parameter (setter) to allow a value to be passed in. Using mxml I associate a another fields text property to the custom component's parameter. For example; My problem is that when I change the value on the screen of "inputField" the setter in

[flexcoders] Re: Create a handler similar to focusIn/Out

2010-06-28 Thread aceoohay
I had the [event] tag in the wrong place. I needs to go before the public class. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > I am trying this, but it is not showing up in intellisense. > > How can I make show up in intellisense? > >

[flexcoders] Re: Create a handler similar to focusIn/Out

2010-06-28 Thread aceoohay
I am trying this, but it is not showing up in intellisense. How can I make show up in intellisense? Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > I think I understand. > > My components are "as" based not "mxml" based, but I get t

[flexcoders] Re: Create a handler similar to focusIn/Out

2010-06-28 Thread aceoohay
")] > > ... > > and then wherever you use this you can do: > > > > Make sure that somewhere in your custom component you throw the event: > > this.dispatchEvent(new DataEvent("expandMe")) ; > > ;-) > > On Mon, Jun 28, 2010 at 4:01 PM,

[flexcoders] Re: Create a handler similar to focusIn/Out

2010-06-28 Thread aceoohay
Alex: Thanks for the pointer, I will investigate it further when I get to the office. If you have a link that shows someone doing what I am trying to do, that'd help a lot. Paul --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > [Event] metadata? > > > On 6/27/1

[flexcoders] Re: Create a handler similar to focusIn/Out

2010-06-27 Thread aceoohay
ode. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > This is probably all ready answered, but I can't think of how to search for > it. > > I have a custom component. This component has a method. When this method > completes I want to execute user defin

[flexcoders] Create a handler similar to focusIn/Out

2010-06-27 Thread aceoohay
This is probably all ready answered, but I can't think of how to search for it. I have a custom component. This component has a method. When this method completes I want to execute user defined code similar to how a focusOut handler allows the programmer to define a block of code in the mxml li

[flexcoders] Re: Modal windows and blur problem...

2010-04-28 Thread aceoohay
existing popup and blur everything below. Make sure you set the childList param to POPUP. > > > On 4/27/10 2:08 PM, "aceoohay" pa...@... wrote: > > > > > > > Well, I no longer get an error, and more stuff gets blurred, but now everything gets blurred, includi

[flexcoders] Re: Modal windows and event handlers...

2010-04-28 Thread aceoohay
Never mind it was simple; this.systemManager.addEventListener(KeyboardEvent.KEY_DOWN, clearScreenSaverTimer); this.systemManager.addEventListener(MouseEvent.CLICK, clearScreenSaverTimer); Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > Alex: > > An

[flexcoders] Re: Modal windows and event handlers...

2010-04-28 Thread aceoohay
Alex: Any sample I can look at? Paul --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > Try adding event listeners to systemManager. > > > On 4/27/10 4:36 PM, "aceoohay" wrote: > > > > > > > It would appear that keystrokes and mou

[flexcoders] Changing the modalTransparencyColor of an existing popup.

2010-04-27 Thread aceoohay
I posted this question under another Subject. I didn't realize precisely what the problem was and now I do, so I thought I would restate the question. Is there anyway to change the transparency color of an existing modal popup? I have tried the following, and it does not work. var intRed:int =

[flexcoders] Modal windows and event handlers...

2010-04-27 Thread aceoohay
It would appear that keystrokes and mouse clicks from a modal window (popupManager) do not invoke the key/mouse handler routines created at the application level. what is the simplest way of trapping any keydown or mouse click event that occurs anywhere within an application including popups, a

[flexcoders] Re: Modal windows and blur problem...

2010-04-27 Thread aceoohay
. I forgot that systemManager is an interface. It is also a > DisplayObject so try: > > DisplayObject(systemManager).filters[blur]; > > And to change it periodically, modify the blur and re-assign the entire array. > > > On 4/27/10 10:27 AM, "aceoohay" wr

[flexcoders] Another Modal windows and blur problem...

2010-04-27 Thread aceoohay
I have created a modal window as described in an earlier post that acts as a privacy screen/screen saver for folks that walk away from their computer. To make it a bit more entertaining I wanted to periodiaclly change the "modalTransparencyColor". I set up a 20 second timer in the popup and have

[flexcoders] Re: Modal windows and blur problem...

2010-04-27 Thread aceoohay
OK, so now I get; Access of possibly undefined property filters through a reference with static type mx.managers:ISystemManager on either; this.systemManager.filters = [blur]; or systemManager.filters = [blur]; Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > >

[flexcoders] Re: Modal windows and blur problem...

2010-04-27 Thread aceoohay
wrote: > > I was thinking something like: > > SystemManager.filters = [ new BlurFilter(...) ]; > > > On 4/26/10 10:30 AM, "aceoohay" wrote: > > > > > > > Alex: > > How? > > systemManager.setStyle("modalTra

[flexcoders] Re: Flebuilder 3 manage project

2010-04-26 Thread aceoohay
te new folder" dialog, clicking on "advanced" > the selecting "link" (something like that) and choosing your network share. > > Also, yahoo can notify you of new messages - there is a "delivery > preferences" option, or something like that. > > B

[flexcoders] Re: Flebuilder 3 manage project

2010-04-26 Thread aceoohay
sing your network share. > > Also, yahoo can notify you of new messages - there is a "delivery > preferences" option, or something like that. > > Baz > > > On Mon, Apr 26, 2010 at 7:58 AM, aceoohay wrote: > > > > > > > We are still having th

[flexcoders] Re: Modal windows and blur problem...

2010-04-26 Thread aceoohay
Alex: How? systemManager.setStyle("modalTransparencyBlur",10) ? Paul --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > What happens if you apply a filter to systemManager? > > > On 4/26/10 9:50 AM, "aceoohay" wrote: > > > > >

[flexcoders] Re: Modal windows and blur problem...

2010-04-26 Thread aceoohay
Tom: How would I go about that? The two issues I see are; 1) Determine the width & height of the stage. 2) Create an object with a background that does the blur. I currently have a titlewindow in a canvas, so once I determine the height & width to use I can make the canvas as big as I want, bu

[flexcoders] Modal windows and blur problem...

2010-04-26 Thread aceoohay
We are developing an application where security is important. I have set up a "screen saver" where if a mouse click or keystroke hasn't occured within n minutes it displays a modal box asking for the password and has a blur factor of 10. This works great, mostly. The problem I have is if anothe

[flexcoders] Re: Flebuilder 3 manage project

2010-04-26 Thread aceoohay
odule from the project and re-add it. Paul --- In flexcoders@yahoogroups.com, "Ivan" wrote: > > Hello Paul. Can you give us some hints what kind of problems are you talking > about? Are you using Subversion, CVS or some other repository? > > --- In flexcoders@yaho

[flexcoders] Re: Flebuilder 3 manage project

2010-04-26 Thread aceoohay
x27;t always work with Oracle, some projects we do in SQL Server, and also MySQL. This helped make the decision to not use an Oracle, or Microsoft product. --- In flexcoders@yahoogroups.com, "Ivan" wrote: > > > > --- In flexcoders@yahoogroups.com, "aceoohay" wro

[flexcoders] Flebuilder 3 manage project

2010-04-08 Thread aceoohay
We are doing a conversion of 200+ screens from Oracle Forms to Flex, and have 4 developers working on the project. We are experiencing a variety of problems with flexbuilder when everyone is using the same project. Where can I find some hints on how to manage a project with multiple developers?

[flexcoders] flexbuilder wierdness...

2010-03-16 Thread aceoohay
I am trying to work with what looks like a decent footer datagrid component from http://code.seanhess.net/?p=17&cpage=2#comment-3502 I runs quite nicely, but wreaks havoc on flexbuilder 3. The demo when edited in design mode of FB3 will not allow the selection of anything but the footer compone

[flexcoders] Re: Dynamically create a Value Object...

2010-03-03 Thread aceoohay
So don't change the backend. I am sure if you tried you could write a group of generic modules in CF. Here is an example of what I wrote using fluorine/asp.net. This version does not have the security I built in. You pass in an SQL statement and it sends back an array collection. I have a CF de

[flexcoders] Re: Dynamically create a Value Object...

2010-03-02 Thread aceoohay
gh SQL queries which we cant even imagine( it could > format the hard drive). the kind of sql sanitization required over each such > call would be too much. > > On Wed, Mar 3, 2010 at 9:54 AM, aceoohay wrote: > > > > > > > First, let me say that I have been roundly

[flexcoders] Re: Checkbox set disabled color to enabled color.

2010-03-02 Thread aceoohay
I tried; public function ValidatedCheckBox() { super(); this.addEventListener(Event.CHANGE,_eventHandler) this.addEventListener(FlexEvent.CREATION_COMPLETE, init); }

[flexcoders] Re: Dynamically create a Value Object...

2010-03-02 Thread aceoohay
First, let me say that I have been roundly criticized for taking the approach of NOT using VOs. Second, I use .NET & FluorineFX. Having said that, I created my applications in such a way that my middle tier has a few generic methods for querying, updating, inserting data from a DB (usually Ora

[flexcoders] Re: Checkbox set disabled color to enabled color.

2010-03-02 Thread aceoohay
Any ideas? --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > I realized a couple of things I might be doing wrong and tried the following > without a positive result; > > public function ValidatedCheckBox() > { &

[flexcoders] Re: Checkbox set disabled color to enabled color.

2010-02-28 Thread aceoohay
d state to use for the disabled state. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > I would like to set the disabled color to the enabled color on a checkbox > based custom component. > > I tried; > > public function Valid

[flexcoders] Checkbox set disabled color to enabled color.

2010-02-26 Thread aceoohay
I would like to set the disabled color to the enabled color on a checkbox based custom component. I tried; public function ValidatedCheckBox() { super(); this.addEventListener(Event.CHANGE,_eventHandler)

[flexcoders] Re: ASDoc @example question...

2010-02-26 Thread aceoohay
Neve mind. It would appear that the angle brackets are causing the problem. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > I have created a variety of components using .as. I have decided to document > them so that other developers can use them. I would like t

[flexcoders] ASDoc @example question...

2010-02-26 Thread aceoohay
I have created a variety of components using .as. I have decided to document them so that other developers can use them. I would like to put example usage in my documentation. I tried; * @example * The following is a simple application that show some of the functionality;

[flexcoders] Re: RadioButtonGroup does not appear as child of container.

2010-02-25 Thread aceoohay
It would appear that one doesn't do this. I wrapped my custom RadioButtonGroup in a custom box, and it works. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > When I execute the following code; > > for each (var field:Object in fieldsContainer.getChi

[flexcoders] RadioButtonGroup does not appear as child of container.

2010-02-25 Thread aceoohay
When I execute the following code; for each (var field:Object in fieldsContainer.getChildren()) { trace('field["id"]=' + field["id"] + '|flash.utils.getQualifiedClassName(field)=' + flash.utils.getQualifiedClassName(field)) } I see all of my components except my RadioButtonGroup. I can address

[flexcoders] Re: Missing component in flexbuilder 3

2010-02-25 Thread aceoohay
section. > > ~Peeyush > http://www.mds.asia > > > On Thu, Feb 25, 2010 at 7:09 AM, aceoohay wrote: > > > > > > > FlexBuilder 3.0 build 3.0.2.214193, sdk 3.5.0 > > > > I am extending the RadioButtonGroup, which is a UIcomponent, I believe. I &g

[flexcoders] Re: Missing component in flexbuilder 3

2010-02-24 Thread aceoohay
those types, I'm not sure why else it wouldn't show up. What SDK/Builder > version are you using? > > Tim > > On Wed, Feb 24, 2010 at 1:46 PM, aceoohay wrote: > > > > > > > I created a a component called ValidatedRadioButtonGroup. Intellisense > &g

[flexcoders] Missing component in flexbuilder 3

2010-02-24 Thread aceoohay
I created a a component called ValidatedRadioButtonGroup. Intellisense finds it, I can use it and everything is good. Flexbuilder does not show it in the components panel. Which means I can't easily drag it onto forms during development. Any ideas? Paul

[flexcoders] Re: Cut & Paste KB Difference between IE and Firefox

2009-12-11 Thread aceoohay
Interestingly, the keyboard up handler works for IE. But if you don't trap the KB down handler, Firefox does some nasty default behavior. So here is the solution I came up with. Paul package AppTools { import flash.events.KeyboardEvent; import flash.system.System;

[flexcoders] Re: Cut & Paste KB Difference between IE and Firefox

2009-12-11 Thread aceoohay
In order to test I "traced" the keycodes, and it gets the "control" key "17" but it does not get the "c" key "67". Control-c works properly as the default behavior in things like textAreas. Still looking for ideas. Paul

[flexcoders] Cut & Paste KB Difference between IE and Firefox

2009-12-11 Thread aceoohay
I have created a tree component whose only difference is to allow control-c to copy things from the tree to paste in another component. When I run it in firefox, it works fine. when I run it in IE v7 control-c does nothing. Any ideas? Paul package AppTools { import flash.events.Keyboar

[flexcoders] Re: Tree : disable "select as you type"

2009-12-10 Thread aceoohay
The code I posted previously works fine as long as there is nothing starting with a 'C' in the tree. If there is it selects that item before executing the code in the keydown handler. How can I stop this? Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > >

[flexcoders] Re: Tree : disable "select as you type"

2009-12-09 Thread aceoohay
I have read through this, and it appears that some success was gained by overriding the keydown handler. Can this be done via the keyDown="myFunction(event)" in the mxml or do I need to create a custom component? Of course myFunction is in the as3 code. I would prefer using the keyDown handler,

[flexcoders] Re: Datagrid height problem.

2009-09-10 Thread aceoohay
about a > List. Using Steve's suggestion, a Text control with truncateToFit=:true" > will give you the ellipses and an automatic toolTip; if the text exceeds the > size. > > -TH > > --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > >

[flexcoders] Re: Datagrid height problem.

2009-09-10 Thread aceoohay
ner do the > > scrolling. This would solve your problem by allowing smooth scrolling, > > but would more of a hog when it comes to performance. But, if you don't > > have that many records to show, it's a decent trade-off and much better > > than the

[flexcoders] Datagrid height problem.

2009-09-10 Thread aceoohay
I have a datagrid that displays text from a notes field. I have variableRowHeight="true". This works well unless one record has a note that is larger than the height of the entire grid. In this case I cannot see the bottom of the note. It truncates the lines at the height of the grid There is a

[flexcoders] Re: FocusManager fun... Tab Loops redux

2009-03-15 Thread aceoohay
i > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of aceoohay > Sent: Saturday, March 14, 2009 10:43 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: FocusManager fun... Tab Loops redux > > > Yes, Alex has been very generous

[flexcoders] Re: FocusManager fun... Tab Loops redux

2009-03-14 Thread aceoohay
https://bugs.adobe.com/jira/browse/SDK-16897 > > --Jim > > > > --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > > > Alex: > > > > Neither of these options are practical in the real world (at least my > > world) since we have ov

[flexcoders] Re: FocusManager fun... Tab Loops redux

2009-03-14 Thread aceoohay
//bugs.adobe.com/jira/browse/SDK-16897> > > --Jim > > > > --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > > > Alex: > > > > Neither of these options are practical in the real world (at least my > world) since we have over 135 modu

[flexcoders] Bug/Feature request support...

2009-03-14 Thread aceoohay
I have been attempting to convince ADOBE of the wisdom of adding user defined tab loop containers for a while now. http://bugs.adobe.com/jira/browse/SDK-16897 I have gotten a few votes but for Adobe to take it seriously it needs more support from the community. Please go, take a look, and if y

[flexcoders] Re: Checkbox Itemrenderer centering mystery...

2009-03-12 Thread aceoohay
racy Spratt, > > Lariat Services, development services available > > _ > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of aceoohay > Sent: Thursday, March 12, 2009 4:39 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] R

[flexcoders] Re: Checkbox Itemrenderer centering mystery...

2009-03-12 Thread aceoohay
uot;Tim Hoff" wrote: > > > All of your answers can be found here: > > http://blogs.adobe.com/aharui/item_renderers/ > <http://blogs.adobe.com/aharui/item_renderers/> > > -TH > > --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > &g

[flexcoders] Checkbox Itemrenderer centering mystery...

2009-03-12 Thread aceoohay
I have an itemrenderer that is a checkbox. I define textAlign="center" in the datagriColumn. It doesn't center. I decided to ask folks here so I created a simple test case to post, and unfortunately it works fine. I tried adding some of the things that I do in the real module, and I can't get

[flexcoders] Re: FocusManager fun... Tab Loops redux

2009-03-11 Thread aceoohay
lex Harui > Flex SDK Developer > Adobe Systems Inc.<http://www.adobe.com/> > Blog: http://blogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of aceoohay > Sent: Wednesday, March 11, 2009 8:00 AM > To: flexcoders@yahoog

[flexcoders] Re: FocusManager fun... Tab Loops redux

2009-03-11 Thread aceoohay
Alex: Let me restate my primary question; "...has anyone else tried to create a flex component with a separate tab loop, if so how did you make it work?" Since the documentation seems to indicate that FocusManager will allow multiple tab loops that was the approach I was investigating. My pr

[flexcoders] Re: FocusManager fun... Tab Loops redux

2009-03-10 Thread aceoohay
SystemManager on a getChildIndex fired by the mouseDownHandler. Any help is appreciated. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > In reading the page; > > http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/managers/FocusManager.html > >

[flexcoders] FocusManager fun... Tab Loops redux

2009-03-10 Thread aceoohay
In reading the page; http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/managers/FocusManager.html It seems like just the right tool to handle a major deficiency in Flex. Basically the inability to create tab loops for containers. I use a somewhat modified version of the SuperPanel c

[flexcoders] Re: Problem with custom component tabbing in TabNavigator

2009-03-10 Thread aceoohay
Well it appears that after rooting around for hours, I found that setting FocusEnabled to false on the textInput object fixed everything up. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > > > I have created an extension of the DateField() (ValidatedDa

[flexcoders] Re: Problem with custom component tabbing in TabNavigator

2009-03-10 Thread aceoohay
Just bumping this up to the top of the list, as I continue my research. Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > > > I have created an extension of the DateField() (ValidatedDateField()) > component. The main purpose of this extension is to c

[flexcoders] Problem with custom component tabbing in TabNavigator

2009-03-09 Thread aceoohay
I have created an extension of the DateField() (ValidatedDateField()) component. The main purpose of this extension is to call an extension to the TextInput component. Everything seems to work swimmingly. I have found that in some cases however, the tab key (tab index order) handling gets messed

[flexcoders] Re: properties and methods of a datagrid from item renderer

2009-02-23 Thread aceoohay
c.<http://www.adobe.com/> > Blog: http://blogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of aceoohay > Sent: Monday, February 23, 2009 4:22 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: proper

[flexcoders] Re: properties and methods of a datagrid from item renderer

2009-02-23 Thread aceoohay
he HBox. > > For centering, see: http://blogs.adobe.com/aharui/2007/04/more_thinking_about_item_rende. html > > Alex Harui > Flex SDK Developer > Adobe Systems Inc.<http://www.adobe.com/> > Blog: http://blogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com

[flexcoders] Re: properties and methods of a datagrid from item renderer

2009-02-23 Thread aceoohay
ot;heavy" and prevents you from directly using "owner". > > Alex Harui > Flex SDK Developer > Adobe Systems Inc.<http://www.adobe.com/> > Blog: http://blogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Beh

[flexcoders] Re: properties and methods of a datagrid from item renderer

2009-02-23 Thread aceoohay
.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of aceoohay > Sent: Sunday, February 22, 2009 1:08 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] properties and methods of a datagrid from item renderer > > > How do

[flexcoders] properties and methods of a datagrid from item renderer

2009-02-22 Thread aceoohay
How do you access the properties and methods of a datagrid from an an item renderer/inline component? I have a component that is called from multiple datagrids. In certain cases I need to call a routine that manipulates the datagrid, whichever one has the item renderer in it. I need to access

[flexcoders] Re: Sign function

2009-02-09 Thread aceoohay
> > Flex development bandwidth available > > > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of aceoohay > Sent: Monday, February 09, 2009 12:06 PM > To: flexcoders@yahoogroups.com > Subject: [

[flexcoders] Sign function

2009-02-09 Thread aceoohay
I need to find the sign of a number is there a sign function or method available such as; var mySign:number = sign(-123) mySign would be -1 for negative, 0 for 0 and +1 for positive. Paul

[flexcoders] Re: AdvancedDatagrid static row for totals.

2009-02-03 Thread aceoohay
Hello??? --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > I have finally switched to Flex 3, and one of the reasons I have done > this is to make use of the ADG. > > In a number of places throughout my apps I have used Alex's > FooterDataGrid and it w

[flexcoders] Re: Can we freeze(Fix) Any Column / Row in DataGrid

2009-02-03 Thread aceoohay
I am looking for the same thing. I reviewed the ADG, and found that you can lock rows at the top of the grid usinf lockedrowcount, but I couldn't see an equivalent for the bottom. Paul --- In flexcoders@yahoogroups.com, "Dharmendra Chauhan" wrote: > > Hi All, > Is it possible to freeze

[flexcoders] AdvancedDatagrid static row for totals.

2009-02-03 Thread aceoohay
I have finally switched to Flex 3, and one of the reasons I have done this is to make use of the ADG. In a number of places throughout my apps I have used Alex's FooterDataGrid and it works reasonably well. I was under the impression that one of the features of the ADG was going to be static r

[flexcoders] Re: Parallel from actionscript...

2009-01-17 Thread aceoohay
e you making them move? Should work if you are using an Effect. > > 2009/1/17 aceoohay : > > I am beginning to play with moving things. > > > > When my app loads I read a DB table to get the names of some modules > > that I load; > > > > a.swf, b.swf, c.swf

[flexcoders] Parallel from actionscript...

2009-01-16 Thread aceoohay
I am beginning to play with moving things. When my app loads I read a DB table to get the names of some modules that I load; a.swf, b.swf, c.swf etc. I have another db table where I keep where each user left their modules. I loop through my list of modules instantiating them and then I see if

[flexcoders] Re: Expanding size of panel, and its contained objects.

2009-01-16 Thread aceoohay
hed to a variable. Or try using CSS to benefit from Cascading rules? > > Regards, > > Wesley Acheson > On Mon, Jan 12, 2009 at 11:07 PM, aceoohay mailto:pa...@...>> wrote: > Tim: > > I am not sure I understand? > > What I need is the ability to expand a panel, and

[flexcoders] Re: Expanding size of panel, and its contained objects.

2009-01-12 Thread aceoohay
l suggesting this when 1280x1024 is the norm these days. > > --Tim > > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of aceoohay > Sent: Tuesday, 13 January 2009 8:59 AM > To: flexcoders@yahoogroups.com > Su

[flexcoders] Re: Expanding size of panel, and its contained objects.

2009-01-12 Thread aceoohay
x27;s container will always scale to > > fit that container. > > > > > > On Mon, Jan 12, 2009 at 1:27 PM, aceoohay wrote: > > > >> While that example does allow you to maximize a panel, it does not > >> expand the contained objects. > >&g

[flexcoders] Re: Expanding size of panel, and its contained objects.

2009-01-12 Thread aceoohay
rns loads of examples of what you're trying to do I think... > > http://www.comtaste.com/DashboardExample/DashboardExample.html > > and > > http://blog.comtaste.com/2008/12/how_to_use_the_flex_dashboard_1.html > > Right? > > On Mon, Jan 12, 2009 at 11:17

[flexcoders] Re: Expanding size of panel, and its contained objects.

2009-01-12 Thread aceoohay
Hello? Is anyone out there? Any ideas? Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > The systems that I write are traditional data entry types of systems. > I do everything within panels within modules. I have had users ask if > they could expand th

[flexcoders] Expanding size of panel, and its contained objects.

2009-01-09 Thread aceoohay
The systems that I write are traditional data entry types of systems. I do everything within panels within modules. I have had users ask if they could expand the size of the panel in order to read them better due to poor eyesight, high res monitors and the like. Are there any existing panel lik

[flexcoders] Datgrid wordWrap="true" with variableRowHeight="true" issue

2008-11-20 Thread aceoohay
We have a datagrid (v1.01 as3) that has variableRowHeight="true" and variableRowHeight="true", when the first row of the datgrid has enough data to cause a wrap, then all other rows work fine. However if the first row does not cause a wrap then no other rows wrap. I tried searching to see if an

[flexcoders] Re: Overriding width of DateField

2008-10-24 Thread aceoohay
I thought I would post one more time in case someone has an answer. What I need is a way to change the default width of a component in design mode, so that flexbuilder's (eclipse) will display the component correctly in design mode. Paul --- In flexcoders@yahoogroups.com, "aceooha

[flexcoders] Re: Overriding width of DateField

2008-10-20 Thread aceoohay
-- In flexcoders@yahoogroups.com, "aceoohay" <[EMAIL PROTECTED]> wrote: > > Gordon: > > I did the following; > > override protected function measure():void > { > super.measure(); > >

[flexcoders] Re: Overriding width of DateField

2008-10-17 Thread aceoohay
ogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aceoohay > Sent: Friday, October 17, 2008 12:25 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Overriding width of DateField > > > One anomaly I've found in flex is the width of the DateField. It's > widt

[flexcoders] Overriding width of DateField

2008-10-17 Thread aceoohay
One anomaly I've found in flex is the width of the DateField. It's width is about 90px. If you use it with no width, and make it editable, when the user puts in a date in mm/dd/ format it will move the left 2 characters out of the box to the left. To correct this issue, I would like to crea

[flexcoders] Re: Performance...

2008-10-14 Thread aceoohay
t;? Are we talking thin > clients, or something? > > > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of aceoohay > Sent: Tuesday, October 14, 2008 2:12 PM > To: flexcoder

[flexcoders] Performance...

2008-10-14 Thread aceoohay
I have a flex application that I have written, and is deployed in an intranet environment. Between 15 & 20 users use windows terminals attached to a w2k3 server. It has 2GB of memory. Today I got a complaint of everything running slowly. I logged in and saw the CPU pretty much maxed out and me

  1   2   3   >