[flexcoders] Drop Down List Scroll Bar not working in DataGrid

2010-09-08 Thread Stephen
( [ { people_id: 1, people_name: 'Stephen', people_family:1}, { people_id: 2, people_name: 'Sheila', people_family:1}, { people_id: 3, people_name: 'David', people_family:1

[flexcoders] Overriding Item Background In ItemRenderer Problem.

2010-08-29 Thread Stephen
I can change the Label color but cant change the background color, its anying. Can anybody suggest a solution. s:ItemRenderer xmlns:fx=http://ns.adobe.com/mxml/2009; xmlns:s=library://ns.adobe.com/flex/spark

[flexcoders] Nested ItemRenderers Problem

2010-08-29 Thread Stephen
for some reason. http://sbrown.myip.org/files/NestedRenders/NestedRenderers.html - Stephen

[flexcoders] Re: Nested ItemRenderers Problem

2010-08-29 Thread Stephen
If I make the DataGrid editable I can select from the drop down and it updates the Data Grid which I can show by scrolling the Drop Down List off the panel and back on and it is still changed at the same time the Drop Down List scroll bars just close the drop down list when you click on them.

[flexcoders] Custom spark List drag indicators using dynamic MovieClips

2010-08-23 Thread Stephen Downs
Does anyone have a Flex 4.1 example of custom spark List component drag indicator that utilizes dynamically set runtime MovieClips? I've been trying to do this using the suggested customization routes from the Using Flex 4 documentation, and failing horribly. Here are the logical steps I've

[flexcoders] Re: Handling XML

2010-08-18 Thread Stephen
...@... wrote: There is no eval in actionscript. To pass XMLLIst a string it would have to be a string that can be converted to XML, not something that references variables. On 8/17/10 1:40 PM, Stephen sd_br...@... wrote: var xml:XML = library shelf book chapterOnce Upon

[flexcoders] Handling XML

2010-08-17 Thread Stephen
var xml:XML = library shelf book chapterOnce Upon A Time/chapter /book /shelf /library ; var path1:XMLList = xml.shelf.book.chapter; trace(path1: + path1.text()); // output: path1: Once Upon A Time var string:String =

[flexcoders] Data Management

2010-08-11 Thread Stephen
how to get around this proble or simply turn it off. I was hoping maybe their was a way to tell Zend to drop all refrences to the joined table so that their wouldn't be any more errors when the data is re-displayed. - Stephen

[flexcoders] Re: Interface Over Public/Dispatch

2010-08-06 Thread Stephen
Thanks for that, all sorted out now.

[flexcoders] Dynamic Validation

2010-08-06 Thread Stephen
].lowerThanMinError=A choice must be made.; --- I's just not working, anyone with an idea of whats missing? - Stephen

[flexcoders] Re: Interface Over Public/Dispatch

2010-08-05 Thread Stephen
Can applications still listen for events triggered by their modules using this method, I am having trouble setting up a listner? - Stephen --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Interfaces create a level of abstraction and define a contract. If properly written

[flexcoders] PHP Data Services - Compound Keys

2010-08-03 Thread Stephen
I have a table in my database that uses compound keys. Apparently Flash Builder 4 does not support compound keys. Does anybody have a work around for this problem?

[flexcoders] Re: Updating ValueObjects

2010-08-03 Thread Stephen
--- In flexcoders@yahoogroups.com, Stephen sd_br...@... wrote: I have written a program where you select a record and it is displayed due to the form being bound to the value object, when I update the record it updates in the database okay, but when I re-query it it crashes

[flexcoders] Re: PHP Data Service

2010-08-02 Thread Stephen
Data type was not set correctly in Data/Services Solved.

[flexcoders] ViewStack Event

2010-08-02 Thread Stephen
What ViewStack Event Listener is activated when public variables within the view stack become available. I don't fancy using the CreationPolicy=All as it slows the web site down too much. - Stephen

[flexcoders] Updating ValueObjects

2010-08-02 Thread Stephen
I have written a program where you select a record and it is displayed due to the form being bound to the value object, when I update the record it updates in the database okay, but when I re-query it it crashes with the following, cant seem to make head nor tail of it... mx.data::Conflict {

[flexcoders] PHP Data Service

2010-07-31 Thread Stephen
not be force to conform to a valueObject as I have tried with no luck. Thanks for any help recieved, this one is a puzzler! - Stephen

[flexcoders] Re: PHP Data Service

2010-07-31 Thread Stephen
Further to my previous post I have noticed a slight diffrence in the returned data from the service. This object was returned by var_dump($o-getView_heatingByID(2)); and works. object(stdClass)#4 (2) { [heating_id]= int(2) [heating_name]= string(12) Radient Heat } While this object was

[flexcoders] Can DataGrids multiply columns

2010-06-25 Thread Stephen
would I do this? - Stephen

[flexcoders] CallResponder

2010-06-22 Thread Stephen
none of which fires when updating. I can not bind to the datagrid for update as its a join, I can only update a table, when I do I need to know when it has been done so that I can call an update on the join to refresh the datagrid. - Any help? - Stephen

[flexcoders] Update Datagrid

2010-06-08 Thread Stephen
not update. W H Y ? - Stephen

[flexcoders] DropDownList Data Services

2010-06-06 Thread Stephen
I am populating a datagrid with data from database using Zend Data Services, I then select to amend a line of the datagrid using a master detail form. One of the fields is an index to another table and thus I need to use a DropDownList how do I set the drop down list to what the current setting

[flexcoders] Dynamic DropDownList Default Setting Problem

2010-06-02 Thread Stephen
This is a Flex 4 problem. I have dynamically filled a drop down box using PHP Data/Services and wish to set the initial display to the current Engineer. What I have is the value of the EngineerId. I have tried to access the values of the dropdown with no louk either, I feel like I'm getting

[flexcoders] Re: Dynamic DropDownList Default Setting Problem

2010-06-02 Thread Stephen
There is no ArrayCollection, it is Dynamic? --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, Stephen sd_brown@ wrote: This is a Flex 4 problem. I have dynamically filled a drop down box using PHP Data/Services and wish to set

[flexcoders] Channel Disconnected (Stumped!)

2010-05-27 Thread Stephen
Channel Disconnected Before An Acknoledgement was recicved! at createView_clientsResult.token = ... Anyone advise notice something wrong? protected function manageClientData(event:ClientEvent):void { // build client view object to add or update. var obj:View_clients = new

[flexcoders] Update Insert via DataServices

2010-05-26 Thread Stephen
If I have list a table in a datagrid using data services in flex 4 how do I update insert or delete in that datagrid/table. Usually I use HTTPServices so have a array collection to work with but there is no array collection this time. all i have is an obj:Object containing the insert or update

[flexcoders] Re: Update Insert via DataServices

2010-05-26 Thread Stephen
() to send these transactions to the server. You'll need this - LCDS Manual: http://help.adobe.com/en_US/LiveCycleDataServicesES/3.1/Developing/index.html http://help.adobe.com/en_US/LiveCycleDataServicesES/3.1/Developing/index.html On Wed, May 26, 2010 at 10:02 AM, Stephen sd_br...@... wrote

RE: [flexcoders] init, creationcomplete and other events

2010-05-19 Thread Stephen Gilson
You can find more info in the doc here: http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf63825-7fff.html Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Angelo Anolin Sent: Wednesday, May 19, 2010 9:41 AM To: flexcoders

RE: [flexcoders] User manual

2010-01-22 Thread Stephen Gilson
You can download all Flex 3 doc as HTML or PDF from here: http://www.adobe.com/support/documentation/en/flex/ If you are using the Flex 4 Beta, you can get the doc for the last public Beta release from: http://help.adobe.com/en_US/Flex/4.0/UsingFlashBuilder/index.html Stephen From

RE: [flexcoders] ASDoc MXML

2009-11-20 Thread Stephen Gilson
/WSd0ded3821e0d52fe1e63e3d11c2f44bb7b-7fe7.html Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Amy Sent: Thursday, November 19, 2009 4:05 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] ASDoc MXML When you give a component defined in MXML an ID, you essentially make

Re: [flexcoders] Re: FB3 Debug: Launch Failed: Invalid argument

2009-11-04 Thread Stephen Downs
encounter. 2009/11/4 polestar11 polesta...@yahoo.com Have you tried debugging your app with FireFox? I'm also on a mac but have never tried debugging using Safari Cheers Tracy --- In flexcoders@yahoogroups.com, Stephen Downs st...@... wrote: I've having an extremely agonizing time

[flexcoders] FB3 Debug: Launch Failed: Invalid argument

2009-11-03 Thread Stephen Downs
I've having an extremely agonizing time dealing with mysterious alert messages when trying to debug my Flex Builder 3 project. Debugging begins, the status bar reads Launching project: (91%), the application loads in the browser and displays, but back in Flex it hangs with an error

RE: [flexcoders] Flex Builder help system

2009-09-07 Thread Stephen Gilson
Sure, in the FB menu, select: -Window Preferences to open the Preferences dialog box - In the dialog box, select Help - In the Help pane, select the Use external browser checkbox - Below the checkbox, select Web Browser to pick your browser - Hit OK Stephen From: flexcoders@yahoogroups.com

RE: [flexcoders] A simply question about img tag in ASDoc

2009-07-28 Thread Stephen Gilson
Should it omit the leading slash? As in: img src = images/myimage.jpg / Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of flexawesome Sent: Tuesday, July 28, 2009 10:00 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] A simply question about img

RE: [flexcoders] 3.3 API confusion

2009-07-09 Thread Stephen Gilson
Hi, That was a mistake in the doc. The addAll() method should not have been documented, and the same is true for the addAllAt() method. They will be available in a future release. Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Brian Sterling Sent

RE: [flexcoders] asdoc and flexlib

2009-06-05 Thread Stephen Gilson
Is the directory that contains PromptingTextInput included in the source-path when you run asdoc? Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of arisco97 Sent: Thursday, June 04, 2009 4:54 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] asdoc

[flexcoders] How does one implement IBitmapDrawable

2009-06-01 Thread Stephen More
Given this code: var bitmapData:BitmapData; bitmapData.draw( IBitmapDrawable( target ) ); What method(s) does target need to implement so that bitmapData will have valid data in it ? Can anyone provide an example ? -Thanks

Re: [flexcoders] How does one implement IBitmapDrawable

2009-06-01 Thread Stephen More
can groggle BitmapData with – that’s a pretty good place to start. http://livedocs.adobe.com/flex/3/langref/mx/core/UIComponent.html Cheers, Rick Winscot On 6/1/09 4:39 PM, Stephen More wrote: Given this code: var bitmapData:BitmapData; bitmapData.draw( IBitmapDrawable( target

[flexcoders] URLLoader + Binary != URLStream

2009-05-26 Thread Stephen More
I would think that I could load a swf using either URLLoader or URLStream. As it turns out only my URLStream is returning the correct data. Can anyone provide a fix to the following code that makes URLLoader work correctly ? import flash.net.URLLoader; import

[flexcoders] can one access mx.core.Container from within a SWFLoader

2009-05-20 Thread Stephen More
Lets say I have 2 compiled flex applications: main.swf - contains a View Stack components.swf - contains 2 mx.containers.Panel within main.swf can one use SWFLoader ( or something else ) to add 1 of the panels from components.swf as a child of the view stack within main.swf ? I know

RE: [flexcoders] ASDoc and .as includes?

2009-03-09 Thread Stephen Gilson
We use include files in Flex in a lot of places with no ASDoc issues. Is the error because ASDoc is trying to process the include file as if it were a class definition? If so, you should exclude the file from the build. Or, are you getting a different error? Stephen From: flexcoders

RE: [flexcoders] how to change titlebar text when iam executing a flex application

2009-02-19 Thread Stephen Gilson
Hi Poornima, Did you try Application.pageTitle? Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of kotha poornima Sent: Thursday, February 19, 2009 2:17 AM To: flexcoders Subject: [flexcoders] how to change titlebar text when iam executing a flex

RE: [flexcoders] default skin in flex 3 component

2009-02-17 Thread Stephen Gilson
The doc on skinning is located here: http://livedocs.adobe.com/flex/3/html/skinning_1.html Was that helpful? Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of gwangdesign Sent: Tuesday, February 17, 2009 12:36 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Displaying Extremely large fonts

2009-02-17 Thread Stephen More
Is there a way to display extremely large fonts in Flash ? I have tried: var format:TextFormat = new TextFormat(); format.font = Verdana; format.color = 0x00; format.size = 72; [TextLineMetrics ascent:72, descent:16, leading:0, width:40, height:88, x:2] format.size = 144; [TextLineMetrics

RE: [flexcoders] [flexcomponents]Writing comments for properties on parent classes

2009-02-17 Thread Stephen Gilson
Hi, Do you mean you don't know how to format the comment, or you want to copy the comment from the parent class to your class? The doc on ASDoc explains both of these. You can see it here: http://livedocs.adobe.com/flex/3/html/asdoc_1.html Stephen From: flexcoders@yahoogroups.com

RE: [flexcoders] How do I use CellRenderer in my AdvancedDataGrid? please help

2009-02-17 Thread Stephen Gilson
You can see a bunch of examples here: http://livedocs.adobe.com/flex/3/html/help.html?content=advdatagrid_10.html Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of yossi.baram Sent: Tuesday, February 17, 2009 1:41 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] asdoc

2009-01-26 Thread Stephen Gilson
We use that technique with ASDoc builds all the time. What is the error that you are getting from ASDoc? Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Rich Tretola Sent: Monday, January 26, 2009 2:08 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] asdoc

2009-01-26 Thread Stephen Gilson
Are you using -doc-sources to reference your source code? Try compiling it with -doc-classes or doc-namespaces instead, along with setting your source path. Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Rich Tretola Sent: Monday, January 26, 2009 3

[flexcoders] Flash-created Flex skin: Container content is offset

2009-01-22 Thread Stephen Downs
I'm having extreme difficulty creating a Flex 3 container skin in Flash that behaves properly. The resulting container content appears misplaced and shifted, compared to the built-in component skin that behaves normally. Setup: OS: Mac OS X 10.5.6 Applications:

Re: [flexcoders] Wrapping Text in Alert

2008-12-23 Thread Stephen More
On Tue, Dec 23, 2008 at 5:54 AM, Manish Jethani manish.jeth...@gmail.com wrote: Is there an easy way to get text inside of a mx.controls.Alert to wrap ? It already wraps. The text is wrapping in your example, but it does not wrap tight enough as it is overflowing the edges. How can the text

[flexcoders] Wrapping Text in Alert

2008-12-22 Thread Stephen More
Is there an easy way to get text inside of a mx.controls.Alert to wrap ? -Thanks Steve More

Re: [flexcoders] Wrapping Text in Alert

2008-12-22 Thread Stephen More
On Mon, Dec 22, 2008 at 5:39 PM, Manish Jethani manish.jeth...@gmail.com wrote: Is there an easy way to get text inside of a mx.controls.Alert to wrap ? It already wraps. mx:Button click=Alert.show('The quick brown fox jumped over the wall. The quick brown fox jumped over the wall. ...') /

RE: [flexcoders] Channel documentation errors?

2008-12-16 Thread Stephen Gilson
Please log a bug for that issue. Thanks, Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Michael Slinn Sent: Tuesday, December 16, 2008 10:14 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Channel documentation errors? The documentation

Re: [flexcoders] WebDAV and Flex - Any sample code or opensource widgets available . . ?

2008-12-09 Thread Stephen More
How exactly do you envision WebDAV being used with flash ? Couldn't one use flash.net.Socket to connect to port 80 and communicate using the WebDAV protocol ? On Tue, Dec 9, 2008 at 2:10 PM, Seth Hodgson shodg. wrote: Unfortunately, the Player currently limits the set of allowed HTTP

[flexcoders] clearing out mx:DateField

2008-12-09 Thread Stephen More
Within flex I have: mx:DateField id=effective / Once a user selects a date, I can not clear it out using actionscript. I have tried: effective.selectedDate = null; effective.selectedDate = undefined; neither one has worked. How can one clear out the mx:DateField ? -Thanks

Re: [flexcoders] clearing out mx:DateField

2008-12-09 Thread Stephen More
with: myitems.selectedItems = null; This is actually clearing the List, but every line of code after this not executing. So I guess the real question is what is the right way to clear a mx:List ? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen More Sent: Tuesday, December 09

[flexcoders] What is the command-line equivalent to Flex Builder's Build Project.. Command?

2008-10-22 Thread Stephen Roy J. Tang
In my program, I have been receiving an error when I use a command-line compile command for mxmlc. The error is related to an embedded font name not being correctly identified by flex in the system fonts list. However, on a whim, I decided to copy the code to Flex Builder and compile it there. To

[flexcoders] DataGrid - how to show the editor for a particular cell?

2008-09-11 Thread Stephen Roy J. Tang
Hi, Say I have a datagrid with editable cells. That is, the user can click the cell to make the itemEditor appear and input data. This datagrid also has a feature that if I click on an empty row, I add a new record to the dataProvider and the user can input a new record. I've implemented

Re: [flexcoders] hi guys

2008-09-04 Thread Stephen Moretti
2008/9/4 sainathevuri [EMAIL PROTECTED] i'm new to using adobe flex. i need to create a dynamic charting window to be integrated in a web page. Can u help me in knowing what all softwares to be used and what all to learn before getting on with flex? Have you thought about looking at

RE: [flexcoders] help with flex 3 sdk (how could I....)

2008-08-06 Thread Stephen Gilson
Hi, Have you tried the Flex Getting Started site here: http://learn.adobe.com/wiki/display/Flex/Getting+Started Or the quick starts under the Getting Started tab on the Flex Dev Center: http://www.adobe.com/devnet/flex/ Stephen From: flexcoders

Re: [flexcoders] Re: [Flashcoders] as3 class libraries

2008-07-16 Thread Stephen Downs
some people might find our google code library useful i guess http://code.google.com/p/tink/ -- Stephen Downs Addict, Tink Ltd. e: [EMAIL PROTECTED] t: +44 (0) 7730 838 785 w: http://www.tink.ws

RE: [flexcoders] Launching Flex Builder Help

2008-07-10 Thread Stephen Gilson
Not really - the help requires an internal web server that is part of Eclipse. However, all of the help content is available online on livedocs at: http://livedocs.adobe.com/flex/3/html/ Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

Re: [flexcoders] Inspecting data from HTTPService result to an ArrayCollection

2008-07-08 Thread Stephen More
=orange name=Orange/ mx:LineSeries yField=banana name=Banana/ /mx:series /mx:LineChart /mx:Panel /mx:Application On Thu, Jul 3, 2008 at 7:41 AM, Stephen More step.om wrote: On Wed, Jul 2, 2008 at 6:29 PM, Tracy Spratt tsp...com wrote: I advise using

Re: [flexcoders] Problem with selectedIndex on dynamically populated combobox (Cairngorm)

2008-07-05 Thread Stephen Beattie
of results from the server, but after putting in the valueCommit code nothing happens. : ( Has anyone experienced problems with using both valueCommit and change event handlers with a ComboBox. I can get either one working but not both. thanks Stephen

[flexcoders] Automatically granting local trust in Flex Builder 3

2008-07-03 Thread Stephen Downs
I thought Flex Builder 3 was supposed to automatically grant local trust to all swfs when debugging. That's what I'm trying to do, but I'm finding that all swfs are by default set to the local-with-network sandbox. System Setup: Mac OS X 10.5.4 Flex Builder 3 Safari 3.1.2 with Flash Player

Re: [flexcoders] Inspecting data from HTTPService result to an ArrayCollection

2008-07-03 Thread Stephen More
+ :: + result[name]); } should output apple :: 81768 orange :: 60310 banana :: 43357 On Wed, Jul 2, 2008 at 1:46 PM, Stephen More [EMAIL PROTECTED] wrote: Here is my output: DEBUG: 2 null [object Object] CHECK : false CHECK : false Here is all the code: ?xml version=1.0? !-- charts

[flexcoders] Inspecting data from HTTPService result to an ArrayCollection

2008-07-02 Thread Stephen More
( Example code taken from: http://livedocs.adobe.com/flex/201/html/charts_intro_108_12.html ) Here is the dataset I am trying to work with: data result month=Jan-04 apple81768/apple orange60310/orange banana43357/banana /result result month=Feb-04

Re: [flexcoders] Inspecting data from HTTPService result to an ArrayCollection

2008-07-02 Thread Stephen More
) as XML).children() Then you could loop through the children and ask them for their name. After the as XML step you can do anything you can normally do with the XML object On Wed, Jul 2, 2008 at 12:11 PM, Stephen More [EMAIL PROTECTED] wrote: ( Example code taken from: http

Re: [flexcoders] Inspecting data from HTTPService result to an ArrayCollection

2008-07-02 Thread Stephen More
, Stephen More [EMAIL PROTECTED] wrote: Thats what I was thinking but when I try: var myXML:XML; myXML = myData.getItemAt(0) as XML; trace( DEBUG: + myXML ); I get DEBUG: null On Wed, Jul 2, 2008 at 2:30 PM, Sean Clark Hess [EMAIL PROTECTED] wrote: Each row is an xml object... So

RE: [flexcoders] Re: Best Practice Data Binding

2008-07-01 Thread Stephen Gilson
Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mauricen Sent: Monday, June 30, 2008 6:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Best Practice Data Binding Where *is* the authoritative story on binding

RE: [flexcoders] Custom (mxml) UI Components in Flex?

2008-06-30 Thread Stephen Gilson
There are many examples of MXML components in the doc here: http://livedocs.adobe.com/flex/3/html/Part2_mxml_components_1.html http://livedocs.adobe.com/flex/3/html/Part2_mxml_components_1.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

RE: [flexcoders] A very simple component in AS :(

2008-06-30 Thread Stephen Gilson
The doc describes the procedure for creating a component in AS. You can see it here: http://livedocs.adobe.com/flex/3/html/Part3_as_components_1.html http://livedocs.adobe.com/flex/3/html/Part3_as_components_1.html Stephen From: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Flex/AIR Mailing list?

2008-06-20 Thread Stephen Moretti
. *slaps Anchal about for thread hijacking instead of creating a new message* Stephen

[flexcoders] Flex/AIR Mailing list?

2008-06-19 Thread Stephen Moretti
Are there any mail lists that anyone can recommend for Flex/AIR development? Google has failed me. Regards Stephen

Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Stephen Moretti
of traffic - how you could meaningfully split the list up to reduce the traffic, whilst avoiding cross-posting and dead lists, I'm not sure Sorry that this isn't particularly helpful. I just wanted to pass on a point of view.. :\ Stephen

RE: [flexcoders] Quick Start - Newbie help with Flex

2008-06-13 Thread Stephen Gilson
Hi, The Flex Dev Center - http://www.adobe.com/devnet/flex/ - contains a Getting Started tab that links to the Getting Started Guide, an online site with overviews and examples, and also links to around 40 small quick start examples showing how to perform common Flex tasks. Stephen

RE: RES: [flexcoders] Using CSS with custom item renderers

2008-06-06 Thread Stephen Gilson
, backgroundColor is blocked, but also for another reason. We want the renderers to not have a background so the selection/highlight colors can be drawn behind them and show through. We can add this to the doc. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] bug in setMonth() method?

2008-05-18 Thread Stephen Allison
but consistent) or in neither case, that it's different is a bit worrying. Stephen

Re: [flexcoders] Re: Use Cairngorm wihtout Dispatch

2008-05-07 Thread Stephen Downs
on the controller that had its name changed would show me errors before I compiled. -- Stephen Downs Addict, Tink Ltd. e: [EMAIL PROTECTED] t: +44 (0) 7730 838 785 w: http://www.tink.ws

Re: [flexcoders] Child items in custom component

2008-05-06 Thread Stephen Downs
sure you added your '_nodeContainer' Sprite to the display list? On 5 May 2008, at 16:34, Weyert de Boer wrote: Hello! I am currently a bit clueless regarding using Flex components. I am currently trying to port a .NET component to Flex. Only I have some problems. In a simplified form the

Re: [flexcoders] Re: Use Cairngorm wihtout Dispatch

2008-05-05 Thread Stephen Downs
, and I'm in broad agreement with you, but the 3 classes and controller entry approach does work for me (even if it is very tedious to write at the time). -Original Message- From: flexcoders@yahoogroups.com on behalf of Stephen Downs Sent: Sun 04/05/2008 14:08 To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Use Cairngorm wihtout Dispatch

2008-05-04 Thread Stephen Downs
I have to agree with MichNiu here. The CairngormEventDispatcher obsfucates the code. i.e. you come back to a project 6 months down the line, its difficult to find in the view where your CairngormEvents are dispatch. What is the difference of the view knowing what event it has to

RE: [flexcoders] online docs seem to be unavailable

2008-05-01 Thread Stephen Gilson
Our apologies - there seems to be an issue with adobe.com today. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Maciek Sakrejda Sent: Thursday, May 01, 2008 2:10 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] online

Re: [flexcoders]Setting DataGrid header to transparent

2008-04-27 Thread Stephen Downs
Or you could skin it and with something transparent. On 23 Apr 2008, at 07:08, Alex Harui wrote: Dude, that was four months ago! You could’ve asked again sooner. Another approach may be to subclass, get the .header, getChildByName (“headerBG”) and set its alpha=0 From:

Re: [flexcoders] Re: Feedback on my Image-caching code

2008-04-19 Thread Stephen Downs
Could be worth looking at storing a ByteArray and adding some compression instead of storing the original BitmapData. Tink On 18 Apr 2008, at 19:15, handitan wrote: Thanks for sharing the code, Eric. Have you ever checked how much memory got increased whenever you load your cached-img?

Re: [flexcoders] Is there an easier way? [Embedding swf asset]

2008-04-18 Thread Stephen Downs
Those are the steps We'll be releasing some library classes over the next week or so which we use for embedding and loading assets, that might be of interest to ya. Tink On 17 Apr 2008, at 23:18, Steve Mathews wrote: Ok, so going off the steps on this page:

Re: [flexcoders] Dynamic Instance Problem

2008-04-18 Thread Stephen Downs
; -- Stephen Downs Addict, Tink Ltd. e: [EMAIL PROTECTED] t: +44 (0) 7730 838 785 w: http://www.tink.ws -- On 18 Apr 2008, at 08:38, Dale Fraser wrote: Thanks, That kind of makes it non dynamic if I need to reference

Re: [flexcoders] Re: Fade effect on a canvas

2008-04-18 Thread Stephen Downs
Changing from one child to another actually requires 2 effects. You see the first fade out, then the second fades in. PairedStackEffect enables you to combine the 2 effects into one. http://www.tink.ws/blog/pairedstackeffect-fade-squash/ There's a fade example there which might be what your

Re: [flexcoders] Writing text directly to Graphics object.

2008-04-17 Thread Stephen Downs
http://five3d.mathieu-badimon.com/ (Make a new typography file v2.0) or old stylee http://www.quasimondo.com/shapedecoder/qm_shape_decoder.php there's a few useful links there too Tink On 16 Apr 2008, at 03:45, Rick Winscot wrote: Exactly – the method I provided uses a simple

RE: [flexcoders] Skinning in Flex - What a nightmare!!!

2008-04-15 Thread Stephen Gilson
, Illustrator, and Photoshop. These include templates for all Flex skins. For more information, see http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex%5Fskins Hope that helps, Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

[flexcoders] can I dispatch a dataTipFunction event

2008-04-08 Thread Stephen More
I currently have a working mx:LineChart with a dataTipFunction that shows up on mouse over. I would like to add some animation to this Chart, is there a way to show dataTip1, sleep some, then show dataTip2, sleep, etc without having the user mouse over the data points ? -Thanks Flex newbie

[flexcoders] Dump any Data Structure

2008-04-04 Thread Stephen More
Perl has Data::Dumper ( http://search.cpan.org/~ilyam/Data-Dumper-2.121/Dumper.pm ) It will output any data structure structure to output. Is there any equivalent method/object in flex ? -Thanks Flex newbie

[flexcoders] Re: Problem with DataGrid itemFocusIn event

2008-04-03 Thread Stephen More
Is there anyway to get the selected row from a DataGrid without it being editable ? It seems others have had this problem also: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg41468.html https://bugs.adobe.com/jira/browse/SDK-11690 -Thanks Flex newbie

[flexcoders] Re: Problem with DataGrid itemFocusIn event

2008-04-03 Thread Stephen More
Yes, a mx.events.ListEvent should be used instead of a mx.events.DataGridEvent; On Thu, Apr 3, 2008 at 1:33 PM, Stephen More [EMAIL PROTECTED] wrote: Is there anyway to get the selected row from a DataGrid without it being editable ? It seems others have had this problem also: http

RE: [flexcoders] WHERE is ActionScript 3 Documentation HIDING ?

2008-03-30 Thread Stephen Gilson
and here is the main Flex doc page on adobe.com: http://www.adobe.com/support/documentation/en/flex/ Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Kampschmidt Sent: Saturday, March 29, 2008 10:15 PM To: flexcoders

RE: [flexcoders] Custom component with custom style - help please

2008-03-14 Thread Stephen Gilson
There is an example in the doc explaining this process: http://livedocs.adobe.com/flex/3/html/skinstyle_3.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Thursday, March 13, 2008 10:47 PM To: flexcoders

Re: [flexcoders] Flex communication with WCF(.net 3) webservice issue

2008-02-29 Thread Stephen Allison
We got Flex 3 talking to WCF (Windows Communication Foundation for the curious, a .NET 3.5 thing). I don't recall if we saw the same errors as you but to get it to work we had to flatten the WSDL as Flex didn't like the way WCF WSDL involves 'including' lots of little WSDL files together.

RE: [flexcoders] Help-files as PDF-documents?

2008-02-26 Thread Stephen Gilson
All the docs are available as HTML or PDF here: http://www.adobe.com/support/documentation/en/flex/ Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hyes3mn3 Sent: Tuesday, February 26, 2008 8:33 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Why no Adobe Flex Language Reference PDF file

2008-02-26 Thread Stephen Gilson
Ask and you shall receive. You can download the entire doc set, including the API Reference, from http://livedocs.adobe.com/flex/3/flex3_documentation.zip. That link was omitted from the main doc page, but we will add it. Stephen From: flexcoders

[flexcoders] Embedded fonts not working in Flex 3?

2008-02-25 Thread Stephen Roy J. Tang
Hi all, I downloaded the 3.0.0.477 build from opensource.adobe.com and did a few simple test cases. The ff mxml failed to compile: == ?xml version=1.0? !-- fonts/EmbeddedFontFace.mxml -- mx:Application

  1   2   3   >