Re: [flexcoders] Flex applications not working with Mozilla firefox

2005-09-16 Thread Michael Nisi
By going to http://macromedia.com? Yahoo! Groups Sponsor ~--> Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM --

RE: [flexcoders] Cairgorn Bug?

2005-09-16 Thread Michael Herron
There are only so many things it can be:   · Have you registered the event correctly with the controller? · Has the controller been instantiated? · Has the controller been instantiated BEFORE the event is broadcast? o    When is the event broadcast? ·   

RE: [flexcoders] Accessing the root of a custom component

2005-10-10 Thread Michael Herron
You don’t need an ID as the properties from the super class are within the “this” scope of the custom component..so if you extended the TextInput and wanted to set the text property:         public function setDefault(){     //Sets the text property to a

Re: [flexcoders] Flex2 :: mx.controls.HorizontalList-like control

2005-11-15 Thread Michael Hansen
sures... 5. etc. Do such a doc. exist at present? Any help would be much appreciated. Cheers    -michael On 11/15/05, Matt Chotin <[EMAIL PROTECTED]> wrote: Unfortunately it's still a Repeater that's going to be your best bet or a custom control that you rig

Re: [flexcoders] Flex2 :: mx.controls.HorizontalList-like control

2005-11-16 Thread Michael Hansen
estions :o) I know this is an alpha release, so it is perhaps to early for this kind of stuff? Thank you for your time Matt. Cheers  -michael On 11/16/05, Matt Chotin <[EMAIL PROTECTED]> wrote: Have you read the various documentation chapters available off of labs?  ht

RE: [flexcoders] Re: Question about Enable / Disable Validator

2005-11-16 Thread Michael Herron
From a cairngorm View Helper you should usually use syntax like:   mx.validators.Validator.disable(view, "modelName.elementName");   There isn’t really a “current document” in flex, the first argument you need to provide is just a reference to the document that the you are validating

[flexcoders] Flex2 :: HorizontalList Bug

2005-11-16 Thread Michael Hansen
t bookmark()     at mx.controls.listclasses::ListBase/selectItem()     at mx.controls.listclasses::ListBase/mouseDownHandler() Anybody see this issue, and found a fix?? I'm really desperate... Thank you for any help!! -michael ** app.mxml   height="200"   width="400&

[flexcoders] Re: Flex2 :: HorizontalList Bug

2005-11-16 Thread Michael Hansen
I found a fix: Use ArrayCollection instead of XMLListCollection for the result, i.e. don't use e4x as return type. Hope this help somebody. Cheers   -michael On 11/16/05, Michael Hansen <[EMAIL PROTECTED]> wrote: Hi list, I'm experiencing problems with the Horizont

Re: [flexcoders] handling empty(null) in CellRenderer

2005-11-18 Thread Michael Hansen
how about something like: cheers   -michael On 11/18/05, keishichi2001 <[EMAIL PROTECTED]> wrote: (flex2.0) When i pass empty XML element into CellRenderer, and handle it like followed, it shows as 'null' - String. (in the CellRenderer) ... ... I want it to be shown

[flexcoders] Flex2 : databinding & itemrenders

2005-11-18 Thread Michael Hansen
...? Thanks in advance :) Cheers  -michael -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

Re: [flexcoders] Flex2 : databinding & itemrenders

2005-11-18 Thread Michael Hansen
you and me) some time. (i also got found 7 or 8 bugs i would like verify, before submitting) Thanks again, and have a nice weekend. cheers  -michael On 11/18/05, Manish Jethani <[EMAIL PROTECTED]> wrote: On 11/18/05, Michael Hansen <[EMAIL PROTECTED]> wrote: >  The thumbnail

Re: [flexcoders] Flex2 : databinding & itemrenders

2005-11-20 Thread Michael Hansen
alternating 2 databuffers; but how do i clone the object array. Object itself doesn't seem to implement .clone() ? Do I have to write some for..in stuff for that? I'll tell you, I for one is hoping for a new release _very_ soon.  :D cheers  -michael On 11/19/05, Manish Jethani &l

Re: [flexcoders] Flex2 : databinding & itemrenders

2005-11-21 Thread Michael Hansen
ry to construct some samples that expose the problems. I really appreciate your commitment. I hope com.macromedia.PayCheckManager is also looking at the list :D cheers   -michael On 11/20/05, Manish Jethani <[EMAIL PROTECTED]> wrote: On 11/20/05, Michael Hansen <[EMAIL PROTECTED]>

[flexcoders] Flex2 :: XML-RPC (char replacement nuisance)

2005-11-29 Thread Michael Hansen
at connects to the webservice all is well. Who's at 'fault' here? and is there a way to fix it without writing a custom xmlDecoder? (either on .net or flex2) Am I really the only one that have had problems with this or am I stupid (gotta be realistic sometimes :o) Cheers   -michael

Re: [flexcoders] Re: Webservice not working! Any Ideas.

2005-11-29 Thread Michael Hansen
Might you be calling a .net webservice ? I have problems with 'encoding' (see post: http://groups.yahoo.com/group/flexcoders/message/25547) cheers -michael On 11/29/05, Tracy Spratt <[EMAIL PROTECTED]> wrote: In your handler, loop over the catalog array and try to d

Re: [flexcoders] Flex2 :: XML-RPC (char replacement nuisance)

2005-11-29 Thread Michael Hansen
a xml document. Therefore the data is not passed, and the Object tree is not created. I guess other rpc services do not html-encode the 'payload'?? Flickr(PHP??) seems to work just fine... Is Microsoft right in doing this encoding? Anybody out there a genius on RPC??  (less may also d

Re: [flexcoders] Flex2 :: XML-RPC (char replacement nuisance)

2005-11-30 Thread Michael Hansen
a? Any characters are allowed in a string except < and &, which are encoded as < and &. A string can be used to encode binary data. ( http://www.xmlrpc.com/spec) So i guess the question is, how do one return a xml-type in a XmlRPC reply? Thanks for your time, and suggetion

[flexcoders] An internal build error has occured. Please check the Error Log.

2005-11-30 Thread Michael Hansen
Hi Macromedia folks, I get this quite often. I don't know if it has any interest for you guys? Where's the error log anyways? cheers  -michael -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-a

Re: [flexcoders] How to create XML Object from string (AS3: E4X)

2005-11-30 Thread Michael Hansen
try var myxml:XML = {xmlstring}; Cheers  -michael On 12/1/05, Ralf Rottmann <[EMAIL PROTECTED]> wrote: Quick question: I have valid XML in a :String variable. How can I create an XML Object from it?   This did NOT work:   1. var tempXml:XML; tempXml = XML(s);

Re: [flexcoders] How to create XML Object from string (AS3: E4X)

2005-11-30 Thread Michael Hansen
Sorry.. that doesn't work, but doing a XML construct from the string ought to work?? http://livedocs.macromedia.com/labs/1/flex/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=2041.html cheers -michaelOn 12/1/05, Michael Hansen <[EMAIL PROTECTED]>

Re: [flexcoders] Livedocs for Flex 2.0

2005-12-05 Thread Michael Hansen
i use this: http://www.google.com/search?num=100&hl=en&lr=&safe=off&q=site%3Ahttp%3A%2F%2Flivedocs.macromedia.com%2Flabs%2F1%2Fflex&btnG=Search cheers  -micahel On 12/5/05, Ralf Rottmann <[EMAIL PROTECTED]> wrote: By the way, is there a link to the Flex 2.0 Live docs anywhere?

Re: [flexcoders] How can someone signup for the private beta of Flex 2?

2005-12-12 Thread Michael Hansen
http://www.surveymonkey.com/Users/94654059/Surveys/947291107854/1068578E-82F5-4C72-BD77-565DA58D1A4F.asp?U=947291107854&DO_NOT_COPY_THIS_LINK cheers  -michael On 12/12/05, JesterXL <[EMAIL PROTECTED]> wrote: ...ok, I lied about the Gold, it's really "release candida

Re: [flexcoders] (Flex 2.0) interacting with SWF files

2005-12-13 Thread Michael Hansen
Not exactly what you are looking for, but perhaps it may help you anyway... http://www.helpqlodhelp.com/blog/archives/000141.html http://www.livejournal.com/users/mannu/305284.html cheers  -michael On 12/13/05, Darin Kohles <[EMAIL PROTECTED]> wrote: I was wondering if anyone can

[flexcoders] Flex2 :: Grid / drop-in cellrenderer / drag-drop / exception / bug?

2005-12-21 Thread Michael Hansen
ad luck in this kind of implementation? Best wishes for the holidays! -michael -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: [flexcoders] [Flex2] creationComplete throw several times...

2005-12-27 Thread Michael Klishin
27;s because of event bubbling and can be solved by checking event phase for equality with EventPhase.AT_TARGET constant as well. -- Michael "Antares" Klishin, Email: [EMAIL PROTECTED] Web: www.novemberain.com Non progredi est regredi Yahoo! Groups Sponsor

[flexcoders] Embed font's glyphs in AS3 Project in Flex Builder 2 alpha

2006-01-01 Thread Michael Klishin
Hi, Is there a way to embed specific set of glyphs in Action Script 3 project in Zorn? Like we do with "Embed" button in Flash. Thanks in advance, Happy new year! -- Michael "Antares" Klishin, Email: [EMAIL PROTECTED] Web: www.novemberain.com Non progredi est regredi -

Re: [flexcoders] Embed font's glyphs in AS3 Project in Flex Builder 2 alpha

2006-01-01 Thread Michael Klishin
JesterXL wrote: > [Embed(systemFont='Arial', mimeType='application/x-font-truetype')] Thanks Jesse but this will embed the whole font, won't it? What if I need, say, just numerals? Or just letters a, j, u, and w? Is there a way to do it? -- Michael "Antares&q

[flexcoders] To Adobe Team guys: AS3 feature request, custom metadata tags

2006-01-02 Thread Michael Klishin
with one declateType call. A couple of use case examples... With this feature we can describe serizlization / deserialization parameters in XML or binary format; custom metadata would be a great thing for Unit testing frameworks developers. So what do you guys think of it? Best wishes! -- M

Re: [flexcoders] Embed font's glyphs in AS3 Project in Flex Builder 2 alpha

2006-01-02 Thread Michael Klishin
t;glyphs >U+0E01-U+0E5B > Thanks, but it seems to be for MXML project (right me if I'm wrong). And I need a solution for AS3 project in Flex 2 alpha... -- Michael "Antares" Klishin, Email: [EMAIL PROTECTED] Web: www.novemberain.com Non progredi est regredi -

Re: [flexcoders] To Adobe Team guys: AS3 feature request, custom metadata tags

2006-01-02 Thread Michael Klishin
Matt Chotin wrote: > We know, we've been asking for this internally. Last I heard we weren't > going to get it because of schedule but we'll see. > Such a pity but thanks for your response anyway! -- Michael "Antares" Klishin, Email: [EMAIL PROTECTED] Web:

Re: [flexcoders] Embed font's glyphs in AS3 Project in Flex Builder 2 alpha

2006-01-02 Thread Michael Klishin
Hi, Thanks for help Jesse and Johannes :) Regards, -- Michael "Antares" Klishin, Email: [EMAIL PROTECTED] Web: www.novemberain.com Non progredi est regredi -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http:

Re: [flexcoders] Transfer of data to Xml file

2006-01-03 Thread Michael Klishin
Xml file. Use Flash Remoting and you'll be able to pass your data to .NET easily without taking care of serialization and stuff. Then you just do what you usually do in .NET. -- Michael "Antares" Klishin, Email: [EMAIL PROTECTED] Web: www.novemberain.com Non progredi est r

Re: [flexcoders] Create an Xml file

2006-01-04 Thread Michael Klishin
shr_bali wrote: > Can i create a new XML file with the ActionScript code. You can create new XML object and then send it to server to save it (or use Flash Remoting for saving). Check out XML class in docs ;) -- Michael "Antares" Klishin, Email: [EMAIL PROTECTED] Web: www.no

[flexcoders] Re: Flex2 :: Grid / drop-in cellrenderer / drag-drop / exception / bug?

2006-01-05 Thread Michael Hansen
                ***Drop-in Cellrenderer ******* http://www.macromedia.com/2005/mxml " xmlns="*" horizontalAlign="center">     On 12/21/05, Michael Hansen <[EMAIL PROTECTED]> wrote: Hi! I've im

Re: [flexcoders] Re: Flex2 :: Grid / drop-in cellrenderer / drag-drop / exception / bug?

2006-01-08 Thread Michael Hansen
Nice to get confirmation on this.Thank you Manish :D -michaelOn 1/7/06, Manish Jethani <[EMAIL PROTECTED]> wrote: On 1/5/06, Michael Hansen <[EMAIL PROTECTED]> wrote: > Check out the example here: > > http://www.mindinteraction.com/bin/TestDataGrid2.html  (Note Flex2 a

Re: [flexcoders] How can I show validation error message with ActionScript progrmming?

2005-05-12 Thread michael keirnan
the errorString property of UIComponent causes the red borders and rollover error tip. errorString is set by the default validation listener when it gets errors. so you'll need to do something like this:   - write a validation listener that does not set errorString, but instead presents the

Re: [flexcoders] Default Text Color?

2005-05-12 Thread michael keirnan
Matt Chotin wrote: Yep.  I just use the calculator in Windows in scientific mode to help me out for stuff like this J ugh, why go through all that trouble? perl -e 'printf("%x\n", "734012")' ;)      From: flexcoders@yahoogroups.com [mailto:flexcoder

[flexcoders] using Flash Pro UI in Flex

2005-05-16 Thread Michael Griffin
Title: Message I have several swfs created in Flash Pro that us some of the V2 Halo components (comboboxes and datagrids mostly).  I have been trying to load the swfs into a Flex UI (using the loader tag) but am seeing lots of rendering problems in the swfs when I do.  Datagrid columns app

[flexcoders] Event Listeners

2005-05-19 Thread Michael Herron
All,   I am having a problem with removing event listeners on a panel.   I am adding the event listener like so:       pane.addEventListener("contentCreated", Delegate.create(this, handleEvent) );   But trying to remove the event listener using removeEventListener does not

RE: [flexcoders] Event Listeners

2005-05-19 Thread Michael Herron
Hi Alistair,   That worked perfectly, cheers!   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alistair McLeod Sent: 19 May 2005 12:31 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Event Listeners   Hi Michael,   I imagine its because

Re: [flexcoders] run Flex apps fullscreen

2005-06-14 Thread Michael Griffin
xcoders/  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/  To unsubscribe from this group, send an email

Re: [flexcoders] Datagrid not populating values.

2005-06-14 Thread Michael McKellip
function as the labelFunction property of the column. Michael McKellip On 6/14/05, Kevin Ewok <[EMAIL PROTECTED]> wrote: > List, > I have spent now a day and half trying to debug this issue and I > still cannot get it to work. My superiors want to go to a JSP model if > I can'

[flexcoders] Creation events and view stack children

2005-06-30 Thread Michael Herron
Hi all, a quick question about view stack instantiation:   If I have a view stack, creation policy auto, with two children:                       ChildOne.mxml:  

RE: [flexcoders] Creation events and view stack children

2005-06-30 Thread Michael Herron
: Michael Herron To: flexcoders@yahoogroups.com Sent: Thursday, June 30, 2005 6:43 AM Subject: [flexcoders] Creation events and view stack children   Hi all, a quick question about view stack instantiation:   If I have a view stack, creation policy auto, with two children

RE: [flexcoders] Creation events and view stack children

2005-06-30 Thread Michael Herron
only after the children of a component have been created?   Cheers Mike From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Herron Sent: 30 June 2005 12:55 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Creation events and view stack

Re: [flexcoders] Flex PlugIn to Eclipse

2005-07-01 Thread Michael Nisi
yes, oxygen works fine. regards, michael -- 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 your group on the web, go to:

Re: [flexcoders] Question about the flexstore mxml file in the samples

2005-07-01 Thread Michael McKellip
If you look in the main.mxml file you'll will see the ProductDetails class is embedded. It actual class path is: org.nevis.cairngorm.samples.store.view.productdetails.ProductDetails Open the product details file and on about line 51 you will see the tag displaying the product image. On 7/1/05,

[flexcoders] flex Validators

2005-07-19 Thread michael BADEN
Did someone know a way to acces Flex validators source code ?   Thanks for your help.   Mike -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAH

RE: [flexcoders] date.getUTCMonth / date.getUTCDate with a leading zero

2005-08-01 Thread Michael Herron
Look up the dateFormatter class (mx.formatters.DateFormatter). In your format function, create an instance of it and supply it with the format string “DD\MM\” and that should give you what you want.   Ta.     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups

RE: [flexcoders] Re: Dynamic Tree and VO's

2005-08-05 Thread Michael Herron
How about   event.selectedItem.attributes.postcode?   I guess label works as its kind of native to the tree..   Mike. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bhaq1972 Sent: 05 August 2005 13:09 To: flexcoders@yahoogroups.com Subject: [flexco

RE: [flexcoders] modified structure of dataprovider for tree cont rol

2004-04-28 Thread Michael Collins
Title: Message According to the documentation you can use any names, you do not have to use 'node'  as shown in the example code.   Thanks, Mike -Original Message-From: achillesflex [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 27, 2004 7:57 PMTo: flexcoders@yahoogroups.comSubject:

RE: [flexcoders] newbie

2005-03-03 Thread Michael Herron
Hi,   This is an issue that I have also had to deal with recently.   I had limited success using code similar to that which you have outlined below. The major problem is that pressing CTRL + the majority of keys causes the browser to intercept these key presses and perform its own actio

generating ActionScript doc (ala javadoc)

2005-03-04 Thread Michael Keirnan
apologies in advance if this has been asked and answered. i searched the archives (honest). i'm curious what folks are doing for generating documentation for their AS2 and MXML code. the freeware tools appear to be in the early stages as yet. here are some tools i've run across (but not yet trie

Cairngorm view helpers and dynamic loading of content

2005-03-07 Thread Michael Herron
Hi all   Currently, I have a framework where separate “modules” are loaded in to a central panel using the createChild method. The reason for using this method as opposed to a view stack for example is the amount of these “modules” that I could potentially have is huge and it seems easier

RE: [flexcoders] Cairngorm view helpers and dynamic loading of content

2005-03-08 Thread Michael Herron
] Cairngorm view helpers and dynamic loading of content   Hi Michael,   I think the answer to your question is as simple as calling the unregisterView() method on the correct ViewHelper when you are destroying that view all together. Give that a try and let us know.   Jimmy Gianninas

Re: generating ActionScript doc (ala javadoc)

2005-03-09 Thread Michael Keirnan
thanks for the pointer. i'm experimenting with NaturalDocs now. it appears to be a very well considered tool. as you say, it is very easy to format doc comments since it is so natural. heh. a minor note (or maybe nit) is that with all its flexibility the javadoc @param tag style doesn't seem

Re: [flexcoders] Default date in DateField

2005-03-09 Thread Michael Griffin
end an email to:[EMAIL PROTECTED]  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. Michael Griffin 781-395-1254 (H) [EMAIL PROTECTED]

Help with a custom component

2005-03-11 Thread Michael Herron
Hi all. I'm looking for some help with custom components. Basically, I have done a bit of a hack and managed to get something that appears to the user as an editable date field, by placing a TextInput over top of a DateField control and capturing the required events (see attached for the code).

RE: [flexcoders] Help with a custom component

2005-03-11 Thread Michael Herron
: [flexcoders] Help with a custom component   On Fri, 11 Mar 2005 09:54:39 -, Michael Herron <[EMAIL PROTECTED]> wrote: > · Or, is there an easier, more elegant way to provide an editable > date field? (The docs indicate "editable" property  inherited from ComboBase &g

[no subject]

2005-02-17 Thread Michael Herron
A Sd

Cairngorm and deferred instantiation

2005-02-17 Thread Michael Herron
Hi All   Apologies for the blank post.    My problem is this:  When using a tab navigator/view stack or any other component that uses deferred instantiation, the required view helpers are not created at start up. That is, they are children of tab navigator and not loaded until required

RE: [flexcoders] Cairngorm and deferred instantiation

2005-02-17 Thread Michael Herron
That’s certainly a workable strategy, but from a design point of view the separate “tabs” (in reality a view stack but works on same principles) are really applications within their own right and I would like to be able include them just by passing their root mxml name. Also, children will

RE: [flexcoders] Cairngorm and deferred instantiation

2005-02-18 Thread Michael Herron
, I can write up a fuller description if required.   Cheers, Mike   From: Steven Webster [mailto:[EMAIL PROTECTED] Sent: 18 February 2005 10:16 To: [EMAIL PROTECTED] Subject: RE: [flexcoders] Cairngorm and deferred instantiation   Michael,   Looking at this a little differently

RE: [flexcoders] Cairngorm and deferred instantiation

2005-02-18 Thread Michael Herron
said though, clarity before brevity.   Cheers, Mike   From: Steven Webster [mailto:[EMAIL PROTECTED] Sent: 18 February 2005 13:21 To: [EMAIL PROTECTED] Subject: RE: [flexcoders] Cairngorm and deferred instantiation   Michael,   There's really no harm in the strategyof loc

opening all accordion screens...

2005-02-18 Thread Michael Griffin
Is it possible to open all accordion screens at once? I'd like to be able to unroll the complete view of a flow instead of always having to navigate one at a time. Any suggestions? Mike * PRIVILEGED AND CONFIDENTIAL: This c

DateField Through Action script

2005-02-28 Thread Michael Herron
Hi all, just a quick one:   For the purposes of unit testing cairngorm view helpers, I create a “mock” view object as such:       view.labelOne = new Label();     view.textBoxOne = new TextBox();   Then assign this as the view object in the view helper. This usually w

Problem with Repeater.

2005-01-31 Thread Michael Hnat
r the mx:Label, but not for the mx:DataGridColumn. What am I doing wrond? Thanks for your help, Michael Hnat - code - http://www.macromedia.com/2003/mxml"; xmlns="*" backgroundColor="#FF">

RE: Problem with Repeater

2005-02-01 Thread Michael Hnat
ect: Re: Problem with Repeater. Michael Hnat wrote: > My example with multiple DataGrids (see below) is not displaying the correct > headerText. It should be a value from the dp:Array. Indeed it does. I tried your code on my Flex installation. Manish

Cairngorm Event to Command

2005-02-04 Thread Michael Herron
Hi all Just a quick question about using cairngorm: In my application when a product has been added, I wish to broadcast a "product added" event and have it picked up by two separate command classes that will update two separate views. Unfortunately, when the event is broadcast, it only seems to

RE: [flexcoders] Cairngorm Event to Command

2005-02-04 Thread Michael Herron
singleton within one command. Regards, Alex. -Original Message- From: Michael Herron [mailto:[EMAIL PROTECTED] Sent: Friday, February 04, 2005 2:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Cairngorm Event to Command Hi all Just a quick question about using cairngorm: In

RE: [flexcoders] Cairngorm Event to Command

2005-02-04 Thread Michael Herron
var view1ViewHelper = ViewLocator.getInstance().getViewHelper( "view1" ); var view2ViewHelper = ViewLocator.getInstance().getViewHelper( "view2" ); view1ViewHelper.doSomethingInView1(); view2ViewHelper.doSomethingInView2(); } Alex. -Original Message- From: Michael Herron

RE: [flexcoders] Cairngorm Event to Command

2005-02-04 Thread Michael Herron
r = ViewLocator.getInstance().getViewHelper( "view2" ); view1ViewHelper.doSomethingInView1(); view2ViewHelper.doSomethingInView2(); } Alex. -Original Message- From: Michael Herron [mailto:[EMAIL PROTECTED] Sent: Friday, February 04, 2005 3:39 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Cairn

Re: [flexcoders] Re: Flex, Hibernate and Coldfusion

2005-02-04 Thread Michael McKellip
this webservices.jar ie: From within the webservices folder run the following command: jar cvf ../webservices.jar * On Thu, 03 Feb 2005 23:05:34 -, mpwoodward2 <[EMAIL PROTECTED]> wrote: > > > --- In flexcoder

RE: [flexcoders] Comboboxes in datagrid

2005-03-29 Thread Michael Griffin
of Service. Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. Michael Griffin 781-395-1254 (H) [EMAIL PROTECTED]

[flexcoders] Syntaxhighlighting in Dreamweaver

2005-04-04 Thread Michael Hnat
Hi, is it possible to do syntax highlighting for MXML in Dreamweaver instead of FlexBuilder? Can someone tell me which files to copy? Thanks, Michi Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this gro

[flexcoders] Re: Inserting a blank row in the middle of a datagrid.

2005-04-06 Thread Michael Keirnan
if you have a look at the properties of DataGrid in the docs (like rowHeight) you'll see various ways to adjust how rows and columns are displayed, including substituing your own rowRenderer if you want to get fancy. generally it is better to adjust properties that control presentation as oppose

Re: [flexcoders] Acessing a class

2005-04-08 Thread michael keirnan
from the code fragments below it looks like you never assign the "objPropostaBusca" variable to an instance of the class you want. it depends on the rest of your app and what you're trying to do of course, but something like this might work: var objPropostaBusca:as_PropostaBusca = new as_P

Re: [flexcoders] the difference between List.getItemAt and List.getChildAt

2005-04-08 Thread michael keirnan
the two APIs are not intended to be similar, although perhaps the names themselves might lead one to think they are related at first glance. getItemAt() returns the specified item from the list's data provider. getChildAt() is inherited from View which is a base class that provides containment

RE: [flexcoders] Using FlexUnit with Cairngorm

2005-04-11 Thread Michael Herron
Its an interesting problem Allen, and one that ive been trying to tackle for a while. The easiest way to do this is to: Var view:Object; Function setup(){ View.myLabel = new Label() viewHelper = new myViewHelper()

Re: [flexcoders] Re: help with setInterval...

2005-04-12 Thread michael keirnan
it would be good to go through the Flex UG sections on scoping and event listeners. in the long run understanding scope is invaluable. in your test case the following might work: setInterval(mx.utils.Delegate.create(this, upCount, 1000); terry_hrtn wrote: >Matt...now I'm getting the m

RE: [flexcoders] Adobe Flex? What does this mean to us... ?

2005-04-18 Thread Michael Laudrup
e are different flavors of "enterprise" these days... Although, "Flex is enterprise solution, AS2 is OO" sounds nice when sell this product... :) Best regards, Michael I'll look forward seeing this product one year from now and the evolution of it...

Re: [flexcoders] Re: help with setInterval...

2005-04-23 Thread michael keirnan
om Subject: Re: [flexcoders] Re: help with setInterval... Does not work. On 4/12/05, michael keirnan <[EMAIL PROTECTED]> wrote: it would be good to go through the Flex UG sections on scoping and event listeners. in the long run understanding scope is invaluable. in your test case the

[flexcoders] Flash Player/Flex Feature

2005-04-25 Thread Michael Laudrup
t misleading? I have 1 Gb RAM and after deploy/re-deploy the application 2-3 times, JRun almost crawls on his knees and finally get the blessing... "Out of Memory"... Thanks, Michael __ Do You Yahoo!? Tired of spam? Yahoo! Mail has

Re: [flexcoders] Tomcat and Flex (Apache and mod_jk)

2005-04-26 Thread Michael Laudrup
Is this acceptable moving the project in production?.   Regards, Michael Cary Newfeldt <[EMAIL PROTECTED]> wrote: I usually restart Apache and Tomcat when this happens. Takes care of the issue for me on my freebsd box. cheers, cJohan Lopes wrote: Hi Eric,I've run into similar probl

RE: [flexcoders] AMF POJO/hibernate/java.sql.Date Bug?

2005-04-26 Thread Michael Laudrup
To avoid the date thing, I keep the date as long on the server side and Number on the AS2.   Redards, MichaelPeter Farland <[EMAIL PROTECTED]> wrote: Sorry but the RemoteObject AMF Gateway does not create java.sql.Dateinstances from ActionScript Dates in Flex 1.5.-Original Message-From:

Re: [flexcoders] binding error - from Flex?

2005-05-02 Thread michael keirnan
also, if you run mxmlc or compc against your source tree the generated files are placed right in your source tree. (perhaps obvious if one thinks about it, but i did not think about it until it bit me). this can lead to various problems during the typical development process: edit-compile-tes

Re: [flexcoders] Setting Text Property of Label Control Dynamically

2005-05-02 Thread michael keirnan
it looks like you want to use data binding here. in your mxml you can do this: and comment out this line in your AS:     //lblListValue.text = strSize; if you haven't already, definitely check out the sections in the Flex User Guide that talk about data binding for more background. the F

Re: [flexcoders] Split up flex-config.xml

2005-05-03 Thread michael keirnan
i haven't tried it, but the XML entity include might work, depending on the parser. http://ant.apache.org/faq.html#xml-entity-include Peter Farland wrote: >Hi Yokota, only one configuration file can be used by the >AMFGatewayServlet. The whitelist.parent.node points the gateway's >confi

Re: [flexcoders] Questions, Questions

2005-05-04 Thread Michael Laudrup
imitations this product has and see if for the money you pay you get what you needwhich probably you already did. So, welcome to the dark side... Michael __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http:/

RE: [flexcoders] Questions, Questions

2005-05-04 Thread Michael Laudrup
Guys, don't get me wrong... Flex is a very comprehensive library of components/effects and quite new on the market... Things that bothered me over time are: 1. lack of multilingual support out the box; although you can find few implementations but I think flex as UI framework should streamline t

[flexcoders] Michael H Merchant is out of the office.

2005-12-16 Thread Michael . H . Merchant
I will be out of the office starting 12/16/2005 and will not return until 12/19/2005. I will respond to your message when I return. Yahoo! Groups Sponsor ~--> Most low income homes are not online. Make a difference this holiday season! http://us.c

[flexcoders] Installing Flex on windows

2006-01-06 Thread John Michael Barrett
If this gets listed twice I am sorry: - Hi, I just joined this group`-` I am using Coldfusion MX 7 on the Mac, and I love flash forms,and so I thought I would try flex. I downloaded Flex 1.5 & flex builder on wondows(I wish it was on the mac, but I guess I will have to

RE: [flexcoders] Installing Flex, Please Help

2006-01-06 Thread John Michael Barrett
Hi,Thank you so much for getting back to me, as I felt a little lost whileat work. I will look into this tomorrow, as I really am excited about trying flex, it seems like you can do much more with it than flash forms`-`Thanks so much, and I will let you know how it worked out`-`JohnJo�o Fernan

RE: [flexcoders] Installing Flex on windows

2006-01-13 Thread John Michael Barrett
upport/email/wishform/-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Michael Barrett Sent: Friday, January 06, 2006 5:14 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Installing Flex on windows If this gets listed twice I am

Re: [flexcoders] Have you seen this component

2005-05-14 Thread Michael van Leest
his. Good Luck, Michael Ben Elmore wrote: >All. > >This isn't a milk carton bulletin, just checking to see if any of you have >seen a tab navigator when the tabs arranged vertically on the left side >(buttons sifted 90 degrees). I have a need for this and wanted to avoid >buil

Re: [flexcoders] Coolest Flex Site Ever!

2005-02-22 Thread Michael van Leest
Looks nice, but did you have a specific reason to use Flex instead of just Flash?? Because it looks like it could have been done with Flash a lot "easier" then to do all this with flex??? But anyway looks great, Michael sfalien wrote: Want to see something totally different made wit

Re: [flexcoders] Re: Coolest Flex Site Ever!

2005-02-22 Thread Michael van Leest
Ok that's explains a lot more... If it's a continues work in progress, then at the end Flex would be the way to go... But without the keep in mind points, it looked ike Flex was just a overdone choice. But anyway, it's the "best looking" flex app on this momen

Coldfusion Flash Forms Problem

2005-02-23 Thread Michael van Leest
Any developers here that make CF Flash Forms?? If so, can anyone help me with a Flash Form problem (sort of MXML) The case (I'm writing a demo): I have a DataGrid that contains a empty query (size, toppings, price). But if I click on a button it needs to add a row with the selected settings. Examp

Re: [flexcoders] Can Flex do this?

2005-02-17 Thread Michael van Leest
Hi, You'll need Flash to create this kind of application. Flex is more an "Enterprise Application" front-end. This is the shortest version of telling about flex :-D ... Michael Kim Reddington wrote: Message I am new to Flex and am trying to get a feel for the capabiliti

Re: [flexcoders] A nearly complete click-and-hold menu!

2005-01-31 Thread Michael van Leest
Nicely done! Seth Voltz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ladies and Gentlemen, May I present to you a click and hold contextual menu package Beta 1 http://designgods.net/misc_stuff/flex/popMenu.mxml.swf Some things to note: * Operation - click and hold anywhere in the applicatio

  1   2   >