[flexcoders] bug in List component when it contains a blank item

2006-07-12 Thread Pan Troglodytes
The List component has a bug when you have a blank item. Using the following code, scroll up and down in the list. You will notice blank spaces showing up where they shouldn't be. It appears to be an issue on redraw. ?xml version=1.0 encoding=utf-8?mx:Application

[flexcoders] can flex builder reformat (pretty-print) code?

2006-07-12 Thread Pan Troglodytes
Is there any way to get Flex Builder to reformat mxml code? Sometimes I rearrange stuff by hand and it would be very nice to have it fix all the indentation issues and such for me. Maybe I'm just missing a menu option or something. -- Jason __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] occasional sandbox error?

2006-07-12 Thread Pan Troglodytes
I used to get it a lot when they first put up this page:http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html But now I don't get it at all. Are you using the version of Flash Player that came with Flex Builder, or did you install the standalone version? For some

[flexcoders] best general purpose way to keep textarea scrolled to bottom

2006-07-13 Thread Pan Troglodytes
I wish TextArea had a property that would set it to scroll to the bottom on adding text. In the absence of such, I'm struggling to make it do that. I have a log function that looks like this: private function log(s:Object):void { debug.text += \n + s.toString(); debug.verticalScrollPosition =

Re: [flexcoders] best general purpose way to keep textarea scrolled to bottom

2006-07-13 Thread Pan Troglodytes
! - Original Message - From: Pan Troglodytes To: flexcoders Sent: Thursday, July 13, 2006 12:23 PM Subject: [flexcoders] best general purpose way to keep textarea scrolled to bottom I wish TextArea had a property that would set it to scroll to the bottom on adding text. In the absence

Re: [flexcoders] best general purpose way to keep textarea scrolled to bottom

2006-07-13 Thread Pan Troglodytes
, so it's not guaranteed to work. :-) -d Pan Troglodytes wrote: I wish TextArea had a property that would set it to scroll to the bottom on adding text. In the absence of such, I'm struggling to make it do that. I have a log function that looks like this: private function log(s:Object

[flexcoders] efficient way of doing custom formatting on datagrid column values

2006-07-13 Thread Pan Troglodytes
I have a datagrid with a half-dozen columns, all but one numeric. I've used itemrenderers to make a label with a built in formatter to get them nice looking: mx:DataGridColumn headerText=Htl Bkgs paddingRight=4 dataField=Bookings mx:itemRenderer mx:Component mx:Label width=100% height=100%

Re: [flexcoders] efficient way of doing custom formatting on datagrid column values

2006-07-13 Thread Pan Troglodytes
records into the client? Maybe you can use FDS and the paging feature. Dimitrios Optimal Payments. -Original Message- From: flexcoders@yahoogroups.com on behalf of Pan Troglodytes Sent: Thu 7/13/2006 7:41 PM To: flexcoders Subject: [flexcoders] efficient way of doing custom formatting

Re: [flexcoders] efficient way of doing custom formatting on datagrid column values

2006-07-14 Thread Pan Troglodytes
to override the setter for the data property and set all the values of your renderer manually. I found that binding is slow in an itemRenderer. Cheers,Ralf. On 7/14/06, Pan Troglodytes [EMAIL PROTECTED] wrote: I have a datagrid with a half-dozen columns, all but one numeric. I've used

Re: [flexcoders] Removing a drag item from a List

2006-07-14 Thread Pan Troglodytes
This isn't Flex 1.5, is it? I got a ton problems trying to run your code. I'm not sure how you're not running into more problems than you describe. Maye this isn't the exact code but pseudo code?Anyway, here's what I did and it works fine. It even keeps your ports sorted: ?xml version=1.0

Re: [flexcoders] dataGrid drop-in itemRenderer/Editor

2006-07-14 Thread Pan Troglodytes
Flash knows how to convert 0/1 to Boolean, it just doesn't always know WHEN to do it. To answer both your questions, here is a modified version of the help example: ?xml version=1.0?mx:Application xmlns:mx= http://www.adobe.com/2006/mxml height=700 width=700 mx:Script ![CDATA[ [Bindable]

Re: [Junk E-Mail - MED] Re: [flexcoders] dataGrid drop-in itemRenderer/Editor

2006-07-14 Thread Pan Troglodytes
Woops, one small correction. If you want to preserve your 0/1, do this: public var value:uint; On 7/14/06, Pan Troglodytes [EMAIL PROTECTED] wrote: You may have figured out the reason by now, but if not it's because editorDataField=selected is making it look for the selected attribute

Re: [Junk E-Mail - MED] Re: [flexcoders] dataGrid drop-in itemRenderer/Editor

2006-07-14 Thread Pan Troglodytes
Anatole:You seem pretty knowledgable about Flex. Can you find any problem with the casting approach I posted? Seems like a bit less of a hassle than defining an external class. On 7/14/06, Anatole Tartakovsky [EMAIL PROTECTED] wrote: You can use this class as

Re: [flexcoders] Re: printing/zooming bugs

2006-07-17 Thread Pan Troglodytes
I know this was asked a long time ago, but somehow I must have missed it. Either that or I learned how to do it later. In any case, do this: import flash.ui.ContextMenu; var menu:ContextMenu = new ContextMenu(); menu.hideBuiltInItems(); contextMenu = menu;On 6/30/06, Daniel Tuppeny [EMAIL

[flexcoders] need better supporting for printing selected pages

2006-07-17 Thread Pan Troglodytes
Perhaps I'm missing something, but it seems like Flex lacks the ability to make the print dialog box able to use the Page 1 of 3 choice. Short of building my own print preview and page selection code, there seems no way around it. This is a real pain when using my ad-hoc report generator, a

Re: [flexcoders] need better supporting for printing selected pages

2006-07-18 Thread Pan Troglodytes
from your browser. On 7/18/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 18 July 2006 00:26, Pan Troglodytes wrote: Perhaps I'm missing something, but it seems like Flex lacks the ability to make the print dialog box able to use the Page 1 of 3 choice.Short of When you ask Flex to print

Re: [flexcoders] need better supporting for printing selected pages

2006-07-18 Thread Pan Troglodytes
Right, that's why I mostly phrased my original post in the form of suggestion rather than question. :DOn 7/18/06, Tom Chiverton [EMAIL PROTECTED] wrote:On Tuesday 18 July 2006 15:38, Pan Troglodytes wrote: I don't quite follow you.When I print something from flex, under Page Range, only

[flexcoders] align header text to the bottom of the header cell

2006-07-18 Thread Pan Troglodytes
I have a grid with several headers with headerWordWrap=true. Some of the headers wrap and others don't need to. Unfortunately, the text in the header aligns to the top of the cell. I would like it to align to the bottom, so if there's a short, one word header it will be sitting on the bottom of

[flexcoders] disabling selectionColor on DataGrid

2006-07-18 Thread Pan Troglodytes
Okay, I'm looking for the equivalent of useRollover=false for selectionColor. I know I can set the selectionColor to a specific color. But I don't want the selection to have ANY color applied to it. I want it to stay the same color it was, which will be different because of the alternating row

[flexcoders] disabling selectionColor on DataGrid

2006-07-18 Thread Pan Troglodytes
Okay, I'm looking for the equivalent of useRollover=false for selectionColor. I know I can set the selectionColor to a specific color. But I don't want the selection to have ANY color applied to it. I want it to stay the same color it was, which will be different because of the alternating row

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Pan Troglodytes
Since seeing is believing, have a video:http://rapidshare.de/files/26310210/zoombug.wmv.htmlOn 7/19/06, Peter Blazejewicz [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com , Samuel Reuben [EMAIL PROTECTED] wrote: If you go to

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Pan Troglodytes
So was I.That was in beta.Seriously, this is pretty major. Zooming MUST be very important to Flash/Flex if it takes up the first three right-click menu options by default. And yet, they break it and seem to just blow it off. FYI, I entered a bug report on the official web page about it.On

Re: [flexcoders] Public list of open issues, available?

2006-07-19 Thread Pan Troglodytes
Hopefully, it will get a bit more attention from the Adobe developers than QC does from Borland ;)I swear, the number of critical bugs I've seen sit in there for a year without even being acknowledged as read... On 7/19/06, Weyert de Boer [EMAIL PROTECTED] wrote:

Re: [flexcoders] So? What are folks here actually building...?

2006-07-20 Thread Pan Troglodytes
Well, since I have never programmed in ActionScript at all, my projects have served a dual purpose - functional and educational. In other words, some of the software may never see the light of day but that's okay - at least it taught me how to build in Flex. My most real application has been an

Re: [flexcoders] Is it possible to put a chart inside a DataGridColumn as an itemRenderer?

2006-07-20 Thread Pan Troglodytes
The BarChart can be pretty persnickety about how the data is arranged. You didn't fully explain exactly what you wanted the chart to look like, so I made some assumptions. Like I assumed you wanted the axis to say gold, red, yellow. The BarChart doesn't seem to like it much when each axis

Re: [flexcoders] How to remove DataGrid itemRenderer top Bottom spaces

2006-07-20 Thread Pan Troglodytes
I've run into the same problem. ItemRenderer had a canvas that was 100% width/height, but still had that annoying space over it. Haven't been able to fix it. Really annoying in combination with the selectionColor. The selectionColor winds up being draw only in that out-of-bounds region,

[flexcoders] performance issues

2006-07-20 Thread Pan Troglodytes
ormance areas that are hurting you? If there's a sample that demonstrates the speed issue it may be something we can look at. Matt From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com ] On Behalf Of Pan Troglodytes Sent: Wednesday, July 19, 2006 10:49 PM To: flexcoders@ya

[flexcoders] positioning custom drag item next to mouse cursor

2006-07-20 Thread Pan Troglodytes
Ok, I'm trying to make my dragged grid item look a certain way and am running into two problems. I'm dragging a grid row to a list. But I don't want the default behavior of the giant grid row. I want my own custom drag widget and I want it to pop up with its bottom right point at the current

Re: [flexcoders] positioning custom drag item next to mouse cursor

2006-07-20 Thread Pan Troglodytes
- 15;DragManager.doDrag(dragInitiator, ds, event, renderer,offsetx,offsety); } }Scotty Scott http://www.franciswscott.com On 7/20/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Ok, I'm trying to make my dragged grid item look a certain way and am running

Re: [flexcoders] positioning custom drag item next to mouse cursor

2006-07-20 Thread Pan Troglodytes
= -dragInitiator.contentMouseY - 15;DragManager.doDrag(dragInitiator, ds, event, renderer,offsetx,offsety); } }Scotty Scott http://www.franciswscott.com On 7/20/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Ok, I'm trying to make my dragged grid item look a certain way

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

2006-07-20 Thread Pan Troglodytes
Well, I can certainly confirm what you're seeing. It's not just a dead area at the top, it seems it's thinking you're still in the box when you're actually below it. So it seems like there's something screwed up in its detection of where the mouse is that only comes out in popups. I'd say you

[flexcoders] Re: positioning custom drag item next to mouse cursor

2006-07-20 Thread Pan Troglodytes
);Now I just need to control for the mouse button going down in a non-cell and being moved into a cell. I'll post that code when I get it. On 7/20/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Ok, I'm trying to make my dragged grid item look a certain way and am running into two problems. I'm

[flexcoders] flex purchase - source without media/download

2006-07-21 Thread Pan Troglodytes
I just realized something that might be a problem. We're buying Flex w/ Charting from our reseller. I told him we don't need the media because all I need it the license key to unlock the trial. But I just realized the trial doesn't come with source for charting. Is there some way to download

Re: [flexcoders] performance issues

2006-07-21 Thread Pan Troglodytes
aring against the old value and if it hasn't changed not doing anything, it may be that it's invalidating too often? I'll ask one of the people who worked on performance if she has any thoughts. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com ] On Behalf Of Pa

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Pan Troglodytes
I don't think there is any way you can subscribe without having a yahoo address. You probably just told it to send them to your alternate address. Just go to http://groups.yahoo.com/group/flexcoders/ and click Sign In. Then click Forget your ID or password?. Fill out the info (hopefully you

[flexcoders] undelete/move to trash options for builder

2006-07-21 Thread Pan Troglodytes
Is it possible to tell Flex Builder to do file deletions the kind and gentle way by moving them to the trash?Second, is it possible to undelete items from Flex Builder, or does it actually use a filesystem delete call? Almost got bit by this just now and would like a way to avoid shooting

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Pan Troglodytes
Sorry, realized I missed this message.Just FYI, I tested signing up totally bypassing the yahoo thing. Then I sent the unsubscribe for that address. I never got a confirmation email or anything, it just unsubscribed me. Are you positive it didn't use a yahoo address to subscribe you? When I was

Re: [flexcoders] flex purchase - source without media/download

2006-07-21 Thread Pan Troglodytes
the charting.jar to framework folder.Jeremy. On 7/21/06, Pan Troglodytes [EMAIL PROTECTED] wrote: I just realized something that might be a problem. We're buying Flex w/ Charting from our reseller. I told him we don't need the media because all I need

[flexcoders] better to use mxml or actionscript for new component?

2006-07-21 Thread Pan Troglodytes
Just curious, is it actually more efficient to use AS instead of MXML (or vice versa) when deriving new components? I'm talking about where it's just as easy to code it either way. I'm just wondering about how the guts of the compiler work. For example, take these two:package nes { import

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Pan Troglodytes
Cool, didn't know that! I'm switching over to directly use my gmail address instead of having the yahoo bounce-through.Doug - while you're waiting for the moderators, one last attempt. Did you send an email to [EMAIL PROTECTED] from the email address you're subscribed from? I tried subscribing

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Pan Troglodytes
I think you're making Doug H. cry.;)On 7/21/06, Doug Lowder [EMAIL PROTECTED] wrote: If you're signed in, you can click the My Groups link at the top right, then click Edit My Groups link on the left above the group list, and choose No Email for the message

[flexcoders] tracing into SDK

2006-07-21 Thread Pan Troglodytes
Is there no way to trace into the SDK libraries, like DataGrid?-- Jason __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Pan Troglodytes
mail from the mailing list. ;)On 7/21/06, Pan Troglodytes [EMAIL PROTECTED] wrote:Spoke too soon! Looks like it didn't unsubscribe my test address, either. So if it's automatic, it's broken. If it's reviewed by hand, the reviewers must be a little behind... On 7/21/06, Pan Troglodytes [EMAIL

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Pan Troglodytes
Hopefully my last post on the subject. At about an hour hour, the messages stopped coming to my test address. So it did work, eventually.On 7/21/06, Pan Troglodytes [EMAIL PROTECTED] wrote: So much later, it sends the test address an unsubcribe confirmation that I have to reply to. I reply

Re: [flexcoders] tracing into SDK

2006-07-22 Thread Pan Troglodytes
tonight. On 7/21/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Is there no way to trace into the SDK libraries, like DataGrid?-- Jason -- Jason __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] jumpy breakpoints

2006-07-22 Thread Pan Troglodytes
, I didn't change any source code since the run and it does the same thing before running. The problem went away (at least temporarily) after closing FB. On 6/29/06, Pan Troglodytes [EMAIL PROTECTED] wrote: If you add a trace and put a breakpoint on it, it just jumps off that one, too

[flexcoders] keep-generated-actionscript option in builder or in project file

2006-07-24 Thread Pan Troglodytes
Is there some way to set the keep-generated-actionscript=true in Flex Builder or in the .project file (the arguments section looked promising but I couldn't get the format to what it liked)? Or is it only available on the command line compiler? -- Jason __._,_.___ -- Flexcoders Mailing

Re: [flexcoders] tracing into SDK

2006-07-24 Thread Pan Troglodytes
the program, it will stop there. On 7/21/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Heh, I think you're missing the point. Have you ever opened an SDK file in FB? Notice that tons of stuff no longer works in that window. They don't even have line numbers, for crying out loud. And you sure can't set

[flexcoders] equivalent binding using BindingUtils

2006-07-24 Thread Pan Troglodytes
I'm trying to figure out how to do an equivalent MXML binding in AS using BindingUtils. It's part of a datagrid item renderer. There MXML looks like this: mx:Label id=lbl text={listData.label}/ While that does warn about listData.label not being bindable, it does work (at least for the

Re: [flexcoders] undelete/move to trash options for builder

2006-07-24 Thread Pan Troglodytes
You've been an awfully big help, Tom.On 7/24/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 21 July 2006 19:19, Pan Troglodytes wrote: I'd still suggest moving to the trash instead of deleting outright.If you delete the project, you're screwed!Welcome to the world of source control.--Tom

Re: [flexcoders] performance issues

2006-07-24 Thread Pan Troglodytes
? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com ] On Behalf Of Pan Troglodytes Sent: Friday, July 21, 2006 7:42 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] performance issues Yeah, I've tried that. Here's the the actual full code I'm

Re: [flexcoders] Returning hidden ID field value in a datagrid

2006-07-24 Thread Pan Troglodytes
Does grid.selectedItem.cvcontactID work for you?On 7/24/06, michrx7 [EMAIL PROTECTED] wrote: I've searched high and low for this simple answer.In my datagrid I have a click event that simply does an Alert.Show()to try and return the value found in hidden column cvcontactID for theselected row.

Re: [flexcoders] Re: Returning hidden ID field value in a datagrid

2006-07-24 Thread Pan Troglodytes
thecvcontactID field is not visible it will not return a value.--- In flexcoders@yahoogroups.com, Pan Troglodytes [EMAIL PROTECTED] wrote: Does grid.selectedItem.cvcontactID work for you? On 7/24/06, michrx7 [EMAIL PROTECTED] wrote: I've searched high and low for this simple answer. In my

Re: [flexcoders] Re: Returning hidden ID field value in a datagrid

2006-07-25 Thread Pan Troglodytes
/ mx:DataGridColumn headerText=ExpiresdataField=cvcontactmemberExp//mx:columns/mx:DataGrid --- In flexcoders@yahoogroups.com, Pan Troglodytes[EMAIL PROTECTED] wrote: That doesn't make a lot of sense to me.SelectedItem will be the item in the dataprovider, which knows nothing about the grid and whichfields

Re: [flexcoders] draggable chart data

2006-07-25 Thread Pan Troglodytes
You might be interested in Ely's example where he did the same thing (among other things):http://www.quietlyscheming.com/blog/charts/interactive-bubble-chart/ On 7/25/06, Paul BH [EMAIL PROTECTED] wrote: Hi All,just about to start building a chart where you can drag the data region

Re: [flexcoders] Re: Returning hidden ID field value in a datagrid

2006-07-25 Thread Pan Troglodytes
for the selected row. I guess I could cheat and make the column visible, grab the value,and then set visible to false, but that seems silly.--- In flexcoders@yahoogroups.com, Pan Troglodytes [EMAIL PROTECTED] wrote: How about an example result from your RemoteObject? On 7/25/06, michrx7 [EMAIL PROTECTED

Re: [flexcoders] Re: Returning hidden ID field value in a datagrid

2006-07-25 Thread Pan Troglodytes
so the SWF file was simplyfilling it with blanks.Thanks for your dedication and extra time on this one. Catch me at MAX and I'll buy you a cold one.-Mike--- In flexcoders@yahoogroups.com, Pan Troglodytes[EMAIL PROTECTED] wrote: Well, there is more going on than your code is really showing.As

[flexcoders] Flex Builder 2.0 serial number says it's invalid

2006-07-25 Thread Pan Troglodytes
Just wanted to throw this out there and see if I'm the only one with the problem.The serial number provided for Flex Builder 2.0 is rejected as invalid by my installation of Flex Builder 2.0. I have tried both the serial numbers for FB and for charting. Possibly important: I already had FB

Re: [flexcoders] Anyone know the answer? Embed images in one MovieClip, use in another?

2006-07-25 Thread Pan Troglodytes
It's probably a moot point due to some of the other stuff you mentioned later, but flash.display.Bitmap has some interesting example code to dynamically load an image from a url and then duplicate it. On 7/24/06, G [EMAIL PROTECTED] wrote: Hi Jester--Your example here is exactly what we don't

Re: [flexcoders] Flex Builder 2.0 serial number says it's invalid

2006-07-25 Thread Pan Troglodytes
, Pan Troglodytes [EMAIL PROTECTED] wrote: Just wanted to throw this out there and see if I'm the only one with the problem.The serial number provided for Flex Builder 2.0 is rejected as invalid by my installation of Flex Builder 2.0. I have tried both the serial

Re: [flexcoders] What is the difference between an Array and an ArrayCollection?

2006-07-25 Thread Pan Troglodytes
To add to Jester's imaginative response, ArrayCollection actually wraps an Array. So inside, there is an Array, which can be accessed through the source property. But if you directly access the array, you don't get the cool events the make data binding work. On 7/25/06, JesterXL [EMAIL

Re: [flexcoders] Re: performance issues

2006-07-25 Thread Pan Troglodytes
[mailto:flexcoders@yahoogroups.com ] On Behalf Of Pan Troglodytes Sent: Friday, July 21, 2006 7:42 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] performance issuesYeah, I've tried that. Here's the the actual full code I'm using: override public function set data(value:Object

Re: [flexcoders] Re: performance issues

2006-07-25 Thread Pan Troglodytes
); } That could eliminate a lot of the extra renderers? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pan Troglodytes Sent: Friday, July 21, 2006 7:42 AM To: flexcoders@yahoogroups.com Subject: Re

Re: [flexcoders] Re: performance issues

2006-07-26 Thread Pan Troglodytes
the bottom. http://www.iepl.net/DataGridRowColorSample/DataGridRowColorSample.html -TH--- In flexcoders@yahoogroups.com , Pan Troglodytes [EMAIL PROTECTED] wrote: I don't understand why that would fail. What is actualRow? Is it the last parameter passed into drawRowBackground()? That's what you should

[flexcoders] button with wrappable text

2006-07-26 Thread Pan Troglodytes
Does anyone have a pre-made button with a wrappable text field? The default Button is (annoyingly) lacking this functionality. I've looking into the Button source and it won't be trivial to turn it on. Just thought I'd check before I cobble together my own. -- Jason __._,_.___ --

Re: [flexcoders] Re: DataGrid/itemFunction help needed

2006-07-26 Thread Pan Troglodytes
Well, the documentation for DataGrid says:The mx:DataGrid tag inherits all of the tag attributes of its superclass, except for labelField, iconField, and iconFunctionThis makes me think it doesn't actually implement them. You're expected to make your own itemRenderers to put images in

Re: [flexcoders] Flex Builder 2.0 serial number says it's invalid

2006-07-27 Thread Pan Troglodytes
/25/06, Pan Troglodytes [EMAIL PROTECTED] wrote: That's my last ditch option. :DOn 7/25/06, Rick Schmitty [EMAIL PROTECTED] wrote: Now entering them into Help-Manage Flex Licenses also says they are invalid.As fun as it sounds, uninstall Flex and reinstall with entering the keys during

Re: [flexcoders] performance issues

2006-07-28 Thread Pan Troglodytes
For reference, my testing was done on a dual core athlon 64 4400 with a geforce 7800 gt and 2 gigs of ram. Hardware is not a limiting factor.On 7/28/06, Anatole Tartakovsky [EMAIL PROTECTED] wrote: Matt, I placed typical business case to show the performance issues based on hardware used:

Re: [flexcoders] Re: performance issues

2006-07-28 Thread Pan Troglodytes
.regardsbod--- In flexcoders@yahoogroups.com, Anatole Tartakovsky [EMAIL PROTECTED] wrote: How is the performance on your machine of the samples in my links ? - trying to isolate player/setStyle performance from application code efficiency. Thank you, Anatole On 7/28/06, Pan Troglodytes [EMAIL

Re: [flexcoders] Combo box inside of dataGrid failing

2006-07-28 Thread Pan Troglodytes
If you post some code that reproduces the problem, I'll try to track it down.On 7/28/06, sufibaba [EMAIL PROTECTED] wrote:Hi Everyone,I have a combo box inside of a column of a DataGrid.The combo boxes is a custom itemRenderer and its being populated from its parent datagrid.header1

[flexcoders] creating a variant PopUpButton - errors on getStyle(popUpIcon)

2006-07-28 Thread Pan Troglodytes
I'm trying to create my own PopUpButton that will fire an event BEFORE opening the dropdown list (so I can populate it dynamically). Unfortunately, everything useful (like openWithEvent) is declare private and not protected. So I thought the most elegant way would be to just copy the

[flexcoders] Re: creating a variant PopUpButton - errors on getStyle(popUpIcon)

2006-07-31 Thread Pan Troglodytes
FYI, it seems that ALL the styles that should be set aren't. For example, style arrowButtonWidth in PopUpButton is 16, in my copy of the code it's NaN. Now to try to figure out why that is... On 7/28/06, Pan Troglodytes [EMAIL PROTECTED] wrote: I'm trying to create my own PopUpButton

Re: [flexcoders] Re: creating a variant PopUpButton - errors on getStyle(popUpIcon)

2006-08-01 Thread Pan Troglodytes
are in different framework classes (like mx.skins.halo), unless you override them with CSS. I think if you set the missing properties in your CSS file, you should be able to get it to work, but it might be very tedious. -TH --- In flexcoders@yahoogroups.com, Pan Troglodytes [EMAIL PROTECTED] wrote

Re: [flexcoders] Re: creating a variant PopUpButton - errors on getStyle(popUpIcon)

2006-08-02 Thread Pan Troglodytes
, Jeremy Lu [EMAIL PROTECTED] wrote: yap, a pretty dirty hack, but you could always declare all the styles needed in your component. On 8/2/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Thanks Jeremy, it's a decent hack. Of course, you have to put an unused

[flexcoders] get rid of light line on top of panel

2006-08-02 Thread Pan Troglodytes
I've been playing with panels and I haven't been able to get the light colored line to not show up on top, no matter what I do.Is there some way to do this? I played with the Flex 2 Style Explorer at http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html and used

Re: [flexcoders] Re: get rid of light line on top of panel

2006-08-03 Thread Pan Troglodytes
, bhaq1972 [EMAIL PROTECTED] wrote: are you talking about the line that divides the header and the mainpanel area?try borderStyle=solid;--- In flexcoders@yahoogroups.com, Pan Troglodytes [EMAIL PROTECTED] wrote: I've been playing with panels and I haven't been able to get thelight colored line

[flexcoders] Missing sources in Flex SDK

2006-08-07 Thread Pan Troglodytes
I've noticed the source of some units being unavailble in FB. The main one is httpservice, but I'm sure there are probably others. Why isn't this source included? Was it written in something other than Flex, or is it just a secret? I'm assuming you can still use the SDK (without FB) to compile

[flexcoders] Re: kludge for Flex Help scripting error

2006-08-07 Thread Pan Troglodytes
howPackageUse showExamples) ? inline : none; var o = findTitleTableObject(examplesLink); if (o) o.style.display = showExamples ? inline : none; }} On 6/29/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Sorry, left out one bit. The asdoc.js file is in the zip file in the langref folder.On 6/29/06, Pa

[flexcoders] way to read http connection info

2006-08-07 Thread Pan Troglodytes
Is there some native way in flash to get the http information such as the client's IP address? Or is this something that can only be done using _javascript_ in the html page to pass them in as variables? -- Jason __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] any performance hit using as?

2006-08-07 Thread Pan Troglodytes
I tend to like to make my code autosense for me, so sometimes I do things like this:MyObjectType(grid.selectedItem).somefield = 3;I assume that adds no overhead, since it is a straight cast (though I could be wrong), since I have seen runtime errors specifically telling me my cast was wrong.

Re: [flexcoders] any performance hit using as?

2006-08-08 Thread Pan Troglodytes
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pan Troglodytes Sent: Monday, August 07, 2006 9:21 AM To: flexcoders Subject: [flexcoders] any performance hit using as? I tend to like to make my code autosense for me, so sometimes I do things

Re: [flexcoders] any performance hit using as?

2006-08-08 Thread Pan Troglodytes
/06, Matt Chotin [EMAIL PROTECTED] wrote: I don't think there should be a performance difference between the two. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pan Troglodytes Sent: Monday, August 07, 2006 9:21 AM To: flexcoders

[flexcoders] tip: putting an outline on text

2006-08-09 Thread Pan Troglodytes
After a good bit of tinkering, I found a combination of settings I really liked for outlining text. Thought I'd share it in case anyone else was interested. Also thought it might be a good change for someone to tell me what a horrible idea it was. :D someLabel.filters = [new DropShadowFilter(1,

[flexcoders] replacing with \n in Flex Builder

2006-08-09 Thread Pan Troglodytes
I'm trying to figure out how to put a \n in the replace box in Flex Builder. Even in regular _expression_ search mode, it doesn't seem to treat it right. Is there a way?-- Jason __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] request for adobe: stop being so private

2006-08-10 Thread Pan Troglodytes
Time and again, I have tried extending components only to find that the important stuff is marked private. I suggest this approach for adobe: mark things as protected by default, not private. Only mark something as private if you're really, really sure it should never be overridden by someone

Re: [flexcoders] request for adobe: stop being so private

2006-08-10 Thread Pan Troglodytes
things at once. Is there any BAD implication's to that suggestion? Peace, MikeOn 8/10/06, Paul BH [EMAIL PROTECTED] wrote: I second thatOn 8/10/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Time and again, I have tried extending

Re: [flexcoders] request for adobe: stop being so private

2006-08-10 Thread Pan Troglodytes
with the way I create my classes being composited INTO their algorithm. Peace, MikeOn 8/10/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Michael,I understand why things are marked as private versus protected. What I'm suggesting is that enough thought isn't going

[flexcoders] any way to catch application exit?

2006-08-11 Thread Pan Troglodytes
Is there any way to tie an event to the application exiting? I know this is a longshot, but it should would make my settings-saving code a lot nicer. I have a few ways to work around it, so don't worry about suggesting an alternative. I just thought I'd check to see if there really was a way to

[flexcoders] DataGrid.selectedItem assignment sometimes does nothing

2006-11-01 Thread Pan Troglodytes
I'm running into a strange problem. I'm trying to catch the right-click on a DataGrid row and assign the selectedItem value of the DataGrid to it. Below is the even handler for the context menu popup: public function contextMenuPopup(e:ContextMenuEvent):void { if (e e.mouseTarget

[flexcoders] Re: DataGrid.selectedItem assignment sometimes does nothing

2006-11-01 Thread Pan Troglodytes
Something weird I just noticed. Even though grid.selectedItem gets changed to null, the selection DOES change to the new item. It's very strange.On 11/1/06, Pan Troglodytes [EMAIL PROTECTED] wrote: I'm running into a strange problem. I'm trying to catch the right-click on a DataGrid row

[flexcoders] Re: DataGrid.selectedItem assignment sometimes does nothing

2006-11-01 Thread Pan Troglodytes
Found someone who reported this behavior back on July 13th. He included sample code to reproduce it. http://tech.groups.yahoo.com/group/flexcoders/message/43216 Seems like buggy behavior to me. Wonder if it ever got in the Adobe system. On 11/1/06, Pan Troglodytes [EMAIL PROTECTED] wrote

[flexcoders] Re: DataGrid.selectedItem assignment sometimes does nothing

2006-11-01 Thread Pan Troglodytes
More miscellaneous info: After this code runs, grid.selectedItems IS set. It's a Array of length 1 with (surprise) the appropriate data element in it. But grid.selectedItem is still null. On 11/1/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Something weird I just noticed. Even though

[flexcoders] any way to make VDividedBox remove splitter on child being hidden?

2006-11-06 Thread Pan Troglodytes
Is there any way to make a VDividedBox hide the splitter control when there is only one child visible? I have a splitter than splits two sections. But the second section isn't always visible. However, the VDividedBox insists on always showing the splitter and letting the user drag it around. I

Re: [flexcoders] any way to make VDividedBox remove splitter on child being hidden?

2006-11-07 Thread Pan Troglodytes
From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Pan Troglodytes Sent: Tuesday, November 07, 2006 1:13 AM To: flexcoders Subject: [flexcoders] any way to make VDividedBox remove splitter on child being hidden? Is there any way to make a VDivid

[flexcoders] rotation of vertical axis title

2006-11-28 Thread Pan Troglodytes
I think the answer is no, but I'll ask it anyway - is there a way to rotate the vertical axis title so it reads from top to bottom, instead of the current bottom to top? Second, if there is no way, who chose the opposite of the normal way to be the default? ;) -- Jason

[flexcoders] PNG transparency failing in @Embed?

2006-12-06 Thread Pan Troglodytes
I've run into a situation where the exact same PNG file will show up as transparent only when it's not embedded. Here is the mxml: mx:Image source=@Embed('assets/user-big.png')/ mx:Image source=assets/user-big.png/ Including both images on the page, the first is missing the transparent

[flexcoders] vertically centering text

2006-12-06 Thread Pan Troglodytes
Is there any way to vertically center text? Specifically, I have a datagrid column that I want to have the text centered vertically in. mx:DataGridColumn headerText=Name mx:itemRenderer mx:Component mx:Label text={data.fullName}/

Re: [flexcoders] vertically centering text

2006-12-07 Thread Pan Troglodytes
of rows with VBoxes versus just plain Components. Patrick Pan Troglodytes a écrit : Is there any way to vertically center text? Specifically, I have a datagrid column that I want to have the text centered vertically in. mx:DataGridColumn headerText=Name mx:itemRenderer mx:Component

[flexcoders] Re: Error: Flex Builder could not publish the project source: null

2006-12-16 Thread Pan Troglodytes
Just thought I'd bump this thread. I still get this from time to time. On 6/20/06, Pan Troglodytes [EMAIL PROTECTED] wrote: I get this error when trying to publish some applications. The publishfine, though. Just thought I'd make it known that there seems to be some kind of bug

[flexcoders] how to start editing a datagridcolumn programmatically

2006-12-18 Thread Pan Troglodytes
How can I create a button click event that will start editing of the selected grid column? I want to have a rename button for clarity (for those users who won't guess to click on the item to rename it). -- Jason

  1   2   3   4   >