[flexcoders] Error 2057 when adding a page to PrintJob?

2007-10-24 Thread Steve Kellogg
Hello, I'm using FlexPrintJob objects to print reports, etc. But I suddenly have an issue where I'm getting exceptions from the low level (FLASH) PrintJob object. It's saying that it can't add the page to the PrintJob. The problem is, the pages that I'm sending to the PrintJob look FINE to

[flexcoders] COM port /USB port coomunication?

2007-10-04 Thread Steve Kellogg
Hello, Has anyone figured out the best way to speak to an external device (such as a thermal printer that speaks in a propietary language, or a scanner)? I've seen some solutions posted that require ActiveX, etc, but I'm HOPING that someone here might know how to do it directly (using JS?).

[flexcoders] FlexBuilder 3 will expire?

2007-09-10 Thread Steve Kellogg
Quick question... When my copy of Flex Builder 3 is going to expire, is the app telling me that THIS BETA is time bombed? Or is it telling me that MY LICENSE is time bombed? I entered in my Flex Builder 2 license, and I was under the impression that I would have unfettered access to FB3 until

[flexcoders] Re-locatable SWC inclusion?

2007-08-29 Thread Steve Kellogg
Hello, When adding SWC files to my project, I'm having trouble finding the documentation on how to make sure the PATHS to my SWC is relocatable. These are SWCs coming from another member of our team, and are NOT in the same root folder as my main project. I assume it has something to do with

[flexcoders] SAVING Air Modules?

2007-08-27 Thread Steve Kellogg
Hello, Once an AIR application loads a module, is it possible to save that module, and then have the application re-load the module from DISK if the module isn't available online? One client needs an application that MUST be able to exist offline when online resources aren't available, but there

[flexcoders] Security Sandbox issue with SWFLoader?

2007-06-14 Thread Steve Kellogg
Hello, I have a Flex application, and I need to load a SWF into a canvas. I'm using a SWFLOADER, with SOURCE set to the URL of my SWF. When I try to RUN this, however, I get the following.. Can anyone advise me on this? Is this a CROSSDOMAIN issue? TIA Steve ***

[flexcoders] Threading environment for Flex and Flash Player.

2007-06-04 Thread Steve Kellogg
I have what might be an off-topic question. BACKGROUND While waiting for production ready Apollo, we're using SWFKIT to run our Flex app as a Desktop application. ONE of the main reasons we need to do this is to allow us to call DLLs from our Flex code (via externalInterface).

[flexcoders] TextInput vs. ENTER key.

2007-05-29 Thread Steve Kellogg
Hello, I have a number of TextInput controls that I'm using with Validators (phoneNumber, email, etc). It all works correctly, except that I want an ENTER (or RETURN) to bump the user out of the field (therefore triggering the validator). Any ideas how to do this? Will RESTRICT allow

[flexcoders] Flex on Vista?

2007-05-11 Thread Steve Kellogg
Hey Folks, I need some quick advice: I've been avoiding the switch to Vista as long as possible (simply because I didn't want to risk an interruption in productivity). NOW, however I seem to have a dying laptop, and the decision has become more urgent. Do you guys have any feel for

[flexcoders] HTML Monitor for Mac?

2007-05-07 Thread Steve Kellogg
Hello, When developing on a Windows machine, I find MS's Fiddler utility to be a lifesaver (It let's me see html traffic to/from the machine). Does anyone know of a similar utility for Mac OS X? TIA Steve

[flexcoders] Apollo RELEASE quality?

2007-05-04 Thread Steve Kellogg
Hello, I'm really excited about Apollo, as I'm sure of most of us. I have a question however. Does anyone have a ballpark date as to when Apollo might be ready for PRODUCTION RELEASE? I have a commercial product that we need to deploy as a desktop application, and I'm just not sure that

[flexcoders] TRUNCATING a ComboBox text?

2007-04-22 Thread Steve Kellogg
Hello, The standard behavior for a combobox is to grow in width until it's wide enough to display the current selection. Is there anyway to tell a ComboBox to Truncate the current displayed Selection if it's too wide for a ComboBox? I've tried setting both the left and right for the

[flexcoders] Recursive Reloading of an image...

2007-04-17 Thread Steve Kellogg
I have a question... I have a few images in my app that have their source as a GIF on our site. Today, I was testing, and the design guy had removed the art for revisions. I was surprised to see that Flex tried repeatedly to load the image instead of just marking the image link as broken.

[flexcoders] Removing compiler problem markers?

2007-04-11 Thread Steve Kellogg
Hello, All of the sudden, I'm getting a bunch of these errors when I try to compile.. Removing compiler problem markers (time of error: xxx) And then, An internal error occurred during Removing compiler problem markers. Java.lang.NullPointerException

[flexcoders] INCLUDING mxml data?

2007-04-02 Thread Steve Kellogg
Hello, I (obviously) know how to include using the Script tag, but is it possible to move portions of my MXML structures to an external, included file? I have things like a bunch of effects, etc that I'd like to organize into a separate file for easier maintainability. Thanks in

[flexcoders] Setting up an ANT Task to run during build..

2007-03-12 Thread Steve Kellogg
Hello, I've been trying to get an Ant task to run during my build, and I must say, I'm not getting a complete picture of what needs to be done via the docs. I'm going to the properties for my project, and creating a builder for the project, but when I get to the Edit Launch Configuration

[flexcoders] GLOBAL Exception Handler?

2007-02-28 Thread Steve Kellogg
Hello, Does anyone happen to know: What's the BEST PRACTICE for catching any unhandled exceptions? I'm looking for the correct place to put a TOP LEVEL Try/Catch/Finally block to do any last-ditch cleanup/recovery in case my app is about to fail. Thanks in Advance, Steve

[flexcoders] Accessing FLEX data from within a SWF??

2007-02-25 Thread Steve Kellogg
Hello, I've got an odd question (in fact, I'm not even sure I'm asking the question correctly). When I define a VAR in Flex, I know that the MXML compiler turns that into a FLASH variable in the output SWF... But What DOMAIN is that variable listed in (for example _root in a .FLA)? I

[flexcoders] Accessing FLEX data from within a SWF??

2007-02-25 Thread Steve Kellogg
Hello, I've got an odd question (in fact, I'm not even sure I'm asking the question correctly). When I define a VAR in Flex, I know that the MXML compiler turns that into a FLASH variable in the output SWF... But What DOMAIN is that variable listed in (for example _root in a .FLA)? I

[flexcoders] DISREGARD....FW: ListRowInfo...

2007-02-17 Thread Steve Kellogg
Please disregard. I found the solution shortly after pressing SEND. Sorry for the noise. Steve From: Steve Kellogg Sent: Saturday, February 17, 2007 11:25 AM To: 'flexcoders@yahoogroups.com' Subject: ListRowInfo... Hello, I'm needing

[flexcoders] ListRowInfo...

2007-02-17 Thread Steve Kellogg
Hello, I'm needing to access the information in ListRowInfo elements (in the 'rowInfo' array) for a LIST. Since the rowInfo is Protected, I'm extending List into my own class, but when I try to import mx.comtrols.listClasses, FlexBuilder is telling me that Definition mx.Controls.listClasses

[flexcoders] XSL in Flex?

2007-01-10 Thread Steve Kellogg @ Project SOC
Hello, I'm wondering if anyone has any insights as to the possibility of using XSL transforms in Flex? Thanks in Advance Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED]

RE: [flexcoders] multiple HTTP Requests

2006-12-18 Thread Steve Kellogg @ Project SOC
Tracy, I've been wondering about AsyncToken. Is there any way to use it with WebService objects that are defined in mxml? I currently define the WebService, and then call myService.myOperationName();, but I haven't figured out any way to inject an AsyncToken into that procedure.

RE: [flexcoders] Re: Scrolling TileList?

2006-12-12 Thread Steve Kellogg @ Project SOC
: Scrolling TileList? Hi Steve, You could place the TileList in a Canvas container. Only set the height of the Canvas; not the TileList. -TH --- In [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com, Steve Kellogg @ Project SOC [EMAIL PROTECTED] wrote: Hello, I have

[flexcoders] Add Parameters to URL for debug??

2006-12-08 Thread Steve Kellogg @ Project SOC
\trunk\NewApplication\bin\chat_window-debug.html I'd LIKE to have FlexBuilder call C:\ SVN\trunk\NewApplication\bin\chat_window-debug.html?sessionID=1657 Thanks in advance for any help. Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado

RE: [flexcoders] Add Parameters to URL for debug??

2006-12-08 Thread Steve Kellogg @ Project SOC
it and give it a try. Please let us know the result. Tracy _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Kellogg @ Project SOC Sent: Friday, December 08, 2006 4:13 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Add Parameters to URL for debug

Eclipse Optimizations. WAS RE: [flexcoders] Flex crashing @ compilation time

2006-11-29 Thread Steve Kellogg @ Project SOC
Hey Matt (et al), Does Adobe have any specific suggestions for setting up Eclipse to prevent the SLUGGISH EDITTING that many of us are seeing? I sometimes have to stop typing for 5-10 seconds to wait for Eclipse to CATCH UP to what I've typed. I'm not trying to say that I'm typing so

RE: Eclipse Optimizations. WAS RE: [flexcoders] Flex crashing @ compilation time

2006-11-29 Thread Steve Kellogg @ Project SOC
://www.cynergys http://www.cynergysystems.com/blogs/page/andrewtrice ystems.com/blogs/page/andrewtrice Email: andrew.trice@ mailto:[EMAIL PROTECTED] cynergysystems.com Office: 866-CYNERGY _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Kellogg

RE: [flexcoders] mx.automation

2006-11-27 Thread Steve Kellogg @ Project SOC
BUSTED _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Sunday, November 26, 2006 4:28 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] mx.automation Yeah, that shouldn't really be possible. The automation stuff is I think

[flexcoders] Scrolling TileList?

2006-11-26 Thread Steve Kellogg @ Project SOC
help? Thanks in advance, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED]

RE: [flexcoders] Re: Scrolling TileList?

2006-11-26 Thread Steve Kellogg @ Project SOC
place the TileList in a Canvas container. Only set the height of the Canvas; not the TileList. -TH --- In [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com, Steve Kellogg @ Project SOC [EMAIL PROTECTED] wrote: Hello, I have a TileList that conatins some images and text

[flexcoders] Resizing a ROW of a List view.

2006-11-26 Thread Steve Kellogg @ Project SOC
? I would have thought that this would be automatic since SO MUCH of the layout is indeed automagical. Any advice is appreciated. Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED]

[flexcoders] GLOBAL functions?

2006-11-25 Thread Steve Kellogg @ Project SOC
or for some other way to do this. I'm sure I'm missing something obvious. Could someone point me in the right direction? Thanks in advance, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED]

RE: [flexcoders] GLOBAL functions?

2006-11-25 Thread Steve Kellogg @ Project SOC
mx.control.Application.application to access the variable. No globals are there in AS-3 jignesh dodiya On 11/25/06, Steve Kellogg @ Project SOC [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] com wrote: Hello, I've got some functions and variables in my main MXML file that I need to access from other

[flexcoders] Finding Nodes in XML by ONLY attribute..

2006-11-18 Thread Steve Kellogg @ Project SOC
in advance. Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED]

[flexcoders] Eclipse becoming HORRIBLY slow??

2006-11-07 Thread Steve Kellogg @ Project SOC
of the characters show up on the screen. Is there some sort of GARBAGE COLLECTION that might be getting in the way of smooth operation? Are there any known conditions that I should be avoiding? Thanks in advance, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado

RE: [flexcoders] Eclipse becoming HORRIBLY slow??

2006-11-07 Thread Steve Kellogg @ Project SOC
] Eclipse becoming HORRIBLY slow?? On Tuesday 07 November 2006 10:55, Steve Kellogg @ Project SOC wrote: Are there any known conditions that I should be avoiding? Is the file itself very big ? -- Tom Chiverton Helping to greatly cultivate compelling applications

RE: [flexcoders] Eclipse becoming HORRIBLY slow??

2006-11-07 Thread Steve Kellogg @ Project SOC
- From: Steve Kellogg @ Project SOC [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, November 07, 2006 3:05 PM Subject: RE: [flexcoders] Eclipse becoming HORRIBLY slow?? Well, it's not VERY big.. (2000 lines) Is that very big for Eclipse? Thanks Steve -Original

RE: [flexcoders] Eclipse becoming HORRIBLY slow??

2006-11-07 Thread Steve Kellogg @ Project SOC
Of Tom Chiverton Sent: Tuesday, November 07, 2006 9:15 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Eclipse becoming HORRIBLY slow?? On Tuesday 07 November 2006 15:05, Steve Kellogg @ Project SOC wrote: Well, it's not VERY big.. (2000 lines) Is that very big for Eclipse? It's

RE: [flexcoders] Re: Eclipse becoming HORRIBLY slow??

2006-11-07 Thread Steve Kellogg @ Project SOC
conditions that I should be avoiding? SKPS SKPS Thanks in advance, SKPS SKPS Steve SKPS SKPS Steve Kellogg SKPS Peak8 Solutions SKPS 1401 14th Street SKPS Boulder, Colorado SKPS 80302, USA SKPS Fax: 303.415.2597 SKPS E-Mail: [EMAIL PROTECTED] -- Flexcoders Mailing List FAQ: http

RE: [flexcoders] Re: Eclipse becoming HORRIBLY slow??

2006-11-07 Thread Steve Kellogg @ Project SOC
@yahoogroups.com, Steve Kellogg @ Project SOC [EMAIL PROTECTED] wrote: J, I actually think that that's (at least part of) the problem. It FEELS like memory is being swapped, etc. I can't yet prove it, but I won't be surprised a bit if I find a garbage collection or swap file problem. Steve

RE: [flexcoders] Re: Eclipse becoming HORRIBLY slow??

2006-11-07 Thread Steve Kellogg @ Project SOC
on win2k also. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Steve Kellogg @ Project SOC [EMAIL PROTECTED] wrote: J, I actually think that that's (at least part of) the problem. It FEELS like memory is being swapped, etc. I can't yet prove it, but I won't be surprised

FW: [flexcoders] Where are Bookmarks stored?

2006-11-06 Thread Steve Kellogg @ Project SOC
BUMP? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Kellogg @ Project SOC Sent: Sunday, November 05, 2006 10:18 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Where are Bookmarks stored? Hello, Ive had to re-import my project

RE: [flexcoders] Re: Realtime Panel position sync?

2006-11-06 Thread Steve Kellogg @ Project SOC
Here is the ghetto way of doing it (or is it?) WOW, that's incredibly offensive! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit

[flexcoders] Where are Bookmarks stored?

2006-11-05 Thread Steve Kellogg @ Project SOC
are the bookmarks stored, so I can make sure they get added to our source repository, etc? Thanks in Advance, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED] __._,_.___ -- Flexcoders Mailing List FAQ

[flexcoders] Re-importing projects?

2006-11-03 Thread Steve Kellogg @ Project SOC
IMPORT ALL OF MY SOURCE CODE INTO NEW FILES. SURELY, this cant be the only way to do this in a Professional system, so what am I missing? Any input will be greatly appreciated. Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E

RE: [flexcoders] Re-importing projects?

2006-11-03 Thread Steve Kellogg @ Project SOC
about just cleaning it? Where is your source file, is it a build path setting? Seems to me you could also edit the properties xml file, take it out, clean the project and then redo. I have had similar problems, strategically cleaning seems to work for me. Peace, Mike On 11/3/06, Steve Kellogg

[flexcoders] Setting STYLES for individual cells/rows of a TREE?

2006-10-23 Thread Steve Kellogg @ Project SOC
Hello, When using a tree, Id like to be able to convey extra information for each through the use of LABEL COLOR, LABEL BOLD, LABEL ITALIC, etc. Can anyone here point me to documentation or examples of how to do this? Thanks in advance, Steve Steve Kellogg Peak8

RE: [flexcoders] Re: Text Area autofit, autosize

2006-10-20 Thread Steve Kellogg @ Project SOC
Have you tried left=0 right=0? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grunz1234 Sent: Friday, October 20, 2006 7:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Text Area autofit, autosize maybe someone knows the

[flexcoders] Invalidating a control for IMMEDIATE redraw?

2006-10-16 Thread Steve Kellogg @ Project SOC
). Is there anyway to tell Flex/Flash to IMMEDIATELY redraw an element in the UI? Thanks in advance for any advice. Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED] __._,_.___ -- Flexcoders

RE: [flexcoders] Invalidating a control during a CPU intensive task.

2006-10-16 Thread Steve Kellogg @ Project SOC
? Is it bound to something, is it listening for an event, it is being updated directly, etc? - Dan On 10/15/06, Steve Kellogg @ Project SOC [EMAIL PROTECTED] wrote: Hello, I've got a long CPU routine, and I'm using a progress bar to show the user that we're making. progress.. The PROBLEM

RE: [flexcoders] Invalidating a control for IMMEDIATE redraw?

2006-10-16 Thread Steve Kellogg @ Project SOC
(); then the timer end handler will invoke the next stack call. Peace, Mike On 10/16/06, Steve Kellogg @ Project SOC [EMAIL PROTECTED] wrote: Hello, I've got a long CPU routine, and I'm using a progress bar to show the user that we're making. progress.. The PROBLEM is that the progress bar

[flexcoders] Invalidating a control during a CPU intensive task.

2006-10-15 Thread Steve Kellogg @ Project SOC
). Is there anyway to tell Flex/Flash to IMMEDIATELY redraw an element in the UI? Thanks in advance for any advice. Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED] __._,_.___ -- Flexcoders

[flexcoders] Conditional Compile?

2006-10-13 Thread Steve Kellogg @ Project SOC
Hello, I havent seen anything in the dox about conditional compile (#ifdef, etc). Does Flex/AS 3.0 have such a capability? Thanks in advance, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL

RE: [flexcoders] Conditional Compile?

2006-10-13 Thread Steve Kellogg @ Project SOC
conditional compilation. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steve Kellogg @ Project SOC Sent: Friday, October 13, 2006 7:03 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Conditional Compile? Hello, I havent seen

RE: [flexcoders] Flex collaborative portal designed for Max 2006

2006-10-11 Thread Steve Kellogg @ Project SOC
Very nice! Clean, well thought out. Congrats on a job well done! Do you know that there are a few places where Flex errors are coming up over the portal? I'll try to narrow down WHEN these things happen, but I thought you'd want a heads up. BTW... The SOUND EFFECTS that you're using (the

RE: [flexcoders] Flex Documentation Team - Showing Related Technology

2006-10-11 Thread Steve Kellogg @ Project SOC
Are you really from Dorktown? I hear that place is kind of a [EMAIL PROTECTED] Best Regards, Steve -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Wednesday, October 11, 2006 12:37 PM To:

RE: [flexcoders] Flex Documentation Team - Showing Related Technology

2006-10-11 Thread Steve Kellogg @ Project SOC
For Java Developers, Flex For PHP Developers, Flex For ASP Developers, etc. You know, like, how it can help them. And have it describe where what they already know in their language will overlap in Flex and AS3. On 10/11/06, Steve Kellogg @ Project SOC [EMAIL PROTECTED] wrote: Are you really from

[flexcoders] iconField working correctly?

2006-10-09 Thread Steve Kellogg @ Project SOC
property? Does it support all graphics types? Does anyone know of any Gotchas that I might be running into? Thanks in advance. Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED

[flexcoders] iconFunction property?

2006-10-09 Thread Steve Kellogg @ Project SOC
Hello, Does anyone have an example of how to correctly setup the iconFunction of a Tree? I cant seem to get the calling conventions correct. Thanks in advance, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E

RE: [flexcoders] Variable Initialization Problem

2006-10-07 Thread Steve Kellogg @ Project SOC
Akash, Maybe Im misreading your code, but it looks like youre getting an undefined on this.title. What is THIS in this context, and does it HAVE a TITLE parameter? Just a thought. Steve From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf

[flexcoders] Bookmarks?

2006-10-07 Thread Steve Kellogg @ Project SOC
Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED] __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com

[flexcoders] DEFAULTING HDividedBox

2006-10-07 Thread Steve Kellogg @ Project SOC
childs 90%. I cant see anything in the SOURCE MODE that would have specified this behavior. Best Regards, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED] __._,_.___ -- Flexcoders Mailing List

RE: [flexcoders] Re: Bookmarks?

2006-10-07 Thread Steve Kellogg @ Project SOC
, Steve Kellogg @ Project SOC [EMAIL PROTECTED] wrote: Hello, Is there any special trick to getting bookmarks to work? I'm selecting a place in a source (mxml) file, and looking for Edit - Add Bookmark as indicated in the dox, but there's no such item in the menu

RE: [flexcoders] Re: Dynamically adding components to a panel?

2006-10-06 Thread Steve Kellogg @ Project SOC
Regards, Anatole On 10/4/06, Steve Kellogg @ Project SOC [EMAIL PROTECTED] wrote: I have a similar question. I need to put WRAPPED TEXT into the cells of a List or Tree. Is it possible to AddChild to a LIST so that there's an actual UIComponent as a cell's

RE: [flexcoders] Re: Dynamically adding components to a panel?

2006-10-06 Thread Steve Kellogg @ Project SOC
the new TileBase specific to your project. In later case you merge code in TileBase and DataGridBase makeRowsAndColumns method. I have not tried direct subclassing of TileBase - from the look of it it might be possible. Regards, Anatole On 10/6/06, Steve Kellogg @ Project SOC [EMAIL

[flexcoders] Variable Row Height?

2006-10-05 Thread Steve Kellogg @ Project SOC
at the same time? If so, how do I set the height of a specific row in a Tile List? Best Regards, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED] __._,_.___ -- Flexcoders Mailing List FAQ: http

[flexcoders] Variable Row Height?

2006-10-05 Thread Steve Kellogg @ Project SOC
at the same time? If so, how do I set the height of a specific row in a Tile List? Best Regards, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED] __._,_.___ -- Flexcoders Mailing List FAQ: http

RE: [flexcoders] Re: Dynamically adding components to a panel?

2006-10-04 Thread Steve Kellogg @ Project SOC
I have a similar question. I need to put WRAPPED TEXT into the cells of a List or Tree. Is it possible to AddChild to a LIST so that there's an actual UIComponent as a cell's graphics? Best Regards, Steve -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

[flexcoders] Effects when changing visible ViewStack Panes?

2006-10-01 Thread Steve Kellogg @ Project SOC
and showEffect effects (as per the instructions). The PROBLEM is that this doesnt seem to work at all. Is there some special trick to get this to work? Thanks in advance for any assistance, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax

RE: [flexcoders] Eclipse Crash at Analyzing Project'

2006-09-27 Thread Steve Kellogg @ Project SOC
BUMMER. I had a similar problem. I found that deleting (or renaming) your .MetaData folder will destroy the eclipse settings, and then allow you to proceed. Perhaps you'll need to create a new project, and import your source files, but it should get you going. Heed this advice at your own risk,

RE: [flexcoders] Re: XML issues

2006-09-25 Thread Steve Kellogg @ Project SOC
Douglas (or anyone else that feels like following up).. Im trying to solve a specific problem currently that actually involves the Descendant Accessor (..). I need to search a whole tree for a node with a specific node that has a specific attribute set to a specific value I

[flexcoders] Enable/Disable Tree items?

2006-09-23 Thread Steve Kellogg @ Project SOC
have been loaded. Thanks in Advance for any suggestions. Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED] __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders

RE: [flexcoders] limits to function during 'callback' events?

2006-09-18 Thread Steve Kellogg @ Project SOC
= 'someViewState'; Hope that helps! Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Kellogg @ Project SOC Sent: Sunday, September 17, 2006 12:15 PM To: flexcoders@yahoogroups.com Subject: [flexcoders

RE: [flexcoders] limits to function during 'callback' events?

2006-09-18 Thread Steve Kellogg @ Project SOC
of the variable: ModelLocator.someState = 'someViewState'; Hope that helps! Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Kellogg @ Project SOC Sent: Sunday, September 17, 2006 12:15 PM

[flexcoders] limits to function during 'callback' events?

2006-09-17 Thread Steve Kellogg @ Project SOC
anyone point me to (or suggest) a solution? Best regards, Steve Steve Kellogg Peak8 Solutions 1401 14th Street Boulder, Colorado 80302, USA Fax: 303.415.2597 E-Mail: [EMAIL PROTECTED] __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders

[flexcoders] More WebService Examples?

2006-09-15 Thread Steve Kellogg @ Project SOC
Hello, Does anyone have any more examples of webservices in Flex that they can point me to? The only ones I see in the Flex docs are very simple, and there arent any that seem to exercise all of the available features. Thanks in advance, Steve Steve Kellogg Peak8