RE: [flexcoders] XMLEncoder Question [Flex 2.0 b1]

2006-03-14 Thread Jason Hawryluk






Thanks for the response 
Matt :)
 
I am trying to 
exclusively use e4x for exchanging data between the server and the client. I 
have a growing assumption that the e4x implementation is not quite ready in beta 
1 based on the fact that often I need to devise a work around in order to 
properly use it. Am I correct? 
 
For example binding 
sometimes causes binding warnings. I'm seeing that results 
returned/converted on the client to objects (not a formatted result as 
e4x) seem to behave better, and are smoother for Flex to consume.
 
80% of the data the 
client is consuming is stored as xml on the server. Not sure if it's the best 
way to do things but I want to eliminate as much as possible being locked into a 
specific RDMS. That said the DB is basically just for file lookup, search 
indexing, and user profiles.
 
Direct Disk access is 
much faster and consumes less resources then having your web service poll the 
db, then transform to xml then send over the wire. Especially when working with 
multiple table relationships. Say if a Task can be related to many contacts. 
Storing this relation in xml gets rid of allot of overhead on the server side, 
and seems natural for xml file formats.
 
I need to be able to 
load it, modify it, then send it back in a xml format to a web service which has 
the job of serializing the physical file to the users storage 
space.
 
This has gotten off 
topic, sorry. I should probably start a new post, but what is (if there is) the 
preferred way to store/access data from your point of view? 

 
Anyone else please jump 
in here ;)
 Jason
 
 -Message 
d'origine-De : flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED]De la part de Matt 
ChotinEnvoyé : mercredi 15 mars 2006 07:55À : 
flexcoders@yahoogroups.comObjet : RE: [flexcoders] XMLEncoder 
Question [Flex 2.0 b1]
It's not really documented right now.  However all it 
  will do is convertan XML structure into an anonymous object graph.  
  It's not useful fordeserializing to typed classes.  So in many 
  respects you're often betteroff just using e4x unless getting typed 
  objects is important.Matt-Original Message-From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] OnBehalf Of 
  sourcecoderiaSent: Tuesday, March 14, 2006 1:54 AMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] XMLEncoder Question [Flex 
  2.0 b1]Any one know where i can find more info or examples on the 
  XMLEncoder? Or has anyone used this yet for encoding objects to xml 
  ?Samples, pointers, 
  idea?ThanksJason--Flexcoders 
  Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives:http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  Yahoo! Groups Links





--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Flex2 flash_proxy/Proxy getProperty and Binding

2006-03-14 Thread Renaun Erickson
The sample code is located below.  I am trying to find a way to bind
dynamic attributes (when using Proxy class).  I can't get the dynamic
properties to bind, any suggestions or help would be appreciated.

Renaun

Proxy Class:
package {
import flash.util.flash_proxy;
import flash.util.Proxy;

dynamic public class SomeClass extends Proxy {

public var _dynamicAttributeArray:Array;

public function SomeClass() {
_dynamicAttributeArray = new Array();
}   
 
flash_proxy override function getProperty( name : * ) : * {
return _dynamicAttributeArray[ name ];
}

flash_proxy override function setProperty(name:*, value:*):void 
{
_dynamicAttributeArray[ name ] = value;
}
}
}


Now if I have:

http://www.macromedia.com/2005/mxml"; xmlns="*"
creationComplete="initApplication()">













--
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:
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:
http://docs.yahoo.com/info/terms/
 





RE: [flexcoders] Flex2 :: ObjectProxy subclass :: Interfacing concrete accessors

2006-03-14 Thread Matt Chotin










Oops, yes FDS is not meant for PHP right
now.

 

Matt









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Schmalle
Sent: Monday, March 13, 2006 5:29
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex2 ::
ObjectProxy subclass :: Interfacing concrete accessors



 

Matt,

I am using amfphp/mysql, dosn't dataservices require java or more enterprise
solutions? Remember, you are dealing with a UI/Component developer, so I am not
that educated 'yet' about dataservices etc. 

I understand what you are saying but, can it be done with amfphp?

I say this becasue I just read the chapters on DataServices and I don't see how
to implement them using what I use, php.

Peace, Mike



On 3/12/06, Matt Chotin <[EMAIL PROTECTED]> wrote:





You know you might want to consider looking into DataServices
too if the idea is keeping things like your Projects in sync with the
server.  It takes care of monitoring property changes for you for example.

 

Matt

 









From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Michael Schmalle
Sent: Sunday, March 12, 2006 3:42
PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex2 ::
ObjectProxy subclass :: Interfacing concrete accessors







 

Thanks Matt,

Yeah re-reading my post it dosn't make much sense.

You know I am in the labratory ;-) Testing and messing around with thoughts.
Basically, I have a mySQL record that I wanted to use as the internal object.
Once you load the result, a project IS the record and a Project class is
created looping through the record sets. I also wanted to add some methods like
save() remove() to the project class. This seemed like a real kewl use of
composition. I thought of object proxy becasue I am still finding my 'style'
using as3.

Seems as though, now that I have tested more things that either 

I just put all public properties as public var name:String; etc, or write
get-set methods for them. The major thing is here I really loved the idea that
ObjectProxy monitors that properties. I want to monitor these properties as they
change. Binding?

I will write more about this if you care to hear it, it's abit long winded for
just free typing this thought train.

;-) I think this is just going to be one of those cases where one solution
gives me THESE benefits and the other solution gives me THOSE benifits. Time to
get out the triple beam :)!

Peace, Mike



On
3/12/06, Matt
 Chotin < [EMAIL PROTECTED]> wrote:





Sorry, I really don't get it.  So you have a Project
that extends ObjectProxy (this is because you want to monitor property access I
guess).  So now would you really be returning a subclass of Project? 
Or is the deal that the object within the ObjectProxy has a concrete type that
you want to reach?  If that is the case you really shouldn't be using the
ObjectProxy.  The whole point of ObjectProxy is that you don't care what's
inside and never want concrete typing.  If you want the concrete type you
should devise another system.  

 

Matt

 









From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Michael Schmalle
Sent: Friday, March 10, 2006 6:53
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex2 ::
ObjectProxy subclass :: Interfacing concrete accessors



 





Hello,

Lets see here, the question is kinda odd...

I have the following;

        private function _getProjectAt(id:uint):Project
        {
            var cursor:IViewCursor
= projectsQueue.getCursor();    
            
            while
(!cursor.afterLast) {
                var
curProject:Project = cursor.current as Project;
                var
curID:uint = curProject.id;
                if
(curID == id) {
               
    return curProject;
               
}                
               
cursor.moveNext();    
            }
            return
null;        
        }


1)  the Project class extends ObjectProxy
2) The Project class wraps a record from mySQL (so we really don't have a set
interface for the mySQL record from a record set)
3) When I loop through these Project of type ObjectProxy, is there anyway I can
attach an interface to this, IE IProject
4) I know most of the time typing an interface is the best way but, uisng
ObjectProxy as a super class, I am wondering if the rules are changing here.

Theoretically, we don't know what properties are there because is is a proxy
for the ture object. Now, should I type the returned Project class AS Project
and programm to the concrete implemenation of Project?? I see know way of
creating an interface other that concrete typing. 

Do you get it ? :)

What is the elogent way of nailing down an ObjectProxy class from it's
accessors in a concrete implementation?

Peace, Mike

-- 
What goes up, does come down. 








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcod

RE: [flexcoders] identity tree level when on click ?

2006-03-14 Thread Matt Chotin
In 1.5 you could just call getParent() until it's null and count.  2.0
it's harder if you don't know your data structure.  I was just talking
to the engineer who's working on Tree and he's investigating some
approaches.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of sinacapho
Sent: Monday, March 13, 2006 6:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] identity tree level when on click ?

Dear all,
  it that any possible way to find our the node level on a
cellpressed node in the tree controls?

thx
capho






--
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



 




--
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:
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:
http://docs.yahoo.com/info/terms/
 





RE: [flexcoders] Re: WSDLResponse not resolvable

2006-03-14 Thread Matt Chotin










That makes it all the more likely that
there’s a missing namespace.  Because 1.5 was more lenient (I believe we’re
still investigating whether we can bring us back to being more lenient). 
Basically look in your WSDL for every xmlns declaration and then go find the
GetCities elements and see what namespace prefix they use.  Make sure that the
prefix is matching up as expected (and then look at the individual SOAP
response and see if the namespaces match).

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Monday, March 13, 2006 3:41
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
WSDLResponse not resolvable



 



Here’s a doosey then – the
exact same call using Flex 1.5 works completely fine. Flex 2 I get this
error….so either Flex 1.5 doesn’t care about the WSDL problem or
Flex2 changed something about not allowing the return of complex objects in a
webservice.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt
 Chotin
Sent: Sunday, March 12, 2006 2:42
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
WSDLResponse not resolvable



 

So far when we’ve seen this
it’s been because the namespace declaration was missing in the WSDL that
would line up the GetCitiesResponse with the method.  So go through your
produced WSDL carefully and make sure that the namespaces match up correctly.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Friday, March 10, 2006 3:22
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
WSDLResponse not resolvable



 



Nah, it’s not the response not being
there….oddly enough passing a string works fine – it’s a
return type of Any (object) or Struct that blows up.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Doug Lowder
Sent: Friday, March 10, 2006 4:08
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
WSDLResponse not resolvable



 

Looks like some kind of
mismatch between GetCities and 
GetCitiesResponse in your code (although I didn't
see a definition 
for GetCitiesResponse).

Maybe try: 

('Error:'+event.fault.faultstring,'Error',Alert.OK)"

result="getCitiesHandler(event)">

...

function getCitiesHandler(event:
mx.rpc.events.ResultEvent) {
   myData = event.result;
}

...

myRemote.GetCities(myState, myCityType);


--- In flexcoders@yahoogroups.com,
"Jonathan Miranda" <[EMAIL PROTECTED]> 
wrote:
>
> Need help with an error message - Working
with BlueDragon 
(aka .Net),
> I'm attempting a WebService in Flex. Doing a
"cfinvoke" works fine 
and
> looking at the wsdl produced from the CFC it
looks fine...but I 
get this
> when I tr

RE: [flexcoders] referencing a datamodel from another component

2006-03-14 Thread Matt Chotin
I would pass a reference of the model from comp1 to comp2.  Perhaps the
Application has both comp1 and comp2?




Comp2.mxml


Var theModel:Object




Even better may be to provide centralized access to the data model
(depending on what it represents).  You could store it on the
application or store it in a ModelLocator (Cairngorm approach).  

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of rgwilson26
Sent: Tuesday, March 14, 2006 7:52 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] referencing a datamodel from another component

I am recently starting to work with datamodels in flex 1.5 and am 
having a bit of a time trying to pass data around my application. I 
figured I would use a data model using a model tag within comp#1. I 
will need comp#2 to access and display this data. However I cannot 
seem to get comp#2 to see comp#1's datamodel. Instead I get 
a "changes to unknown property, comp#1Model, will not be detected".

In comp#2 I have text="{comp#1Model.userFirstName}"


This is my directory strucuture:

main.mxml
>comp directory
comp#1.mxml
comp#2.mxml

If there is possibly a better approach to passing data around within 
an app I am open to suggestions.

Thanks





--
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



 




--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] How to extend a radiobutton component?

2006-03-14 Thread Matt Chotin
You're not going to be able to do it in MXML because a RadioButton
doesn't have children like a container does.  You'll need to do this in
AS and explicitly call addChild and do whatever positioning you need to
do.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Alberto Albericio
Sent: Monday, March 13, 2006 1:29 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] How to extend a radiobutton component?

Hi all,

I want to extend the RadioButton component so that it becomes something 
like:

the radiobutton itself + something else (vbox, canvas, ...)

How can I do this? Right now, Im trying this:

http://www.macromedia.com/2005/mxml"; xmlns="*"
selected="{mySelected}"
>











The Script code works, it is extending the component fine but the visual

"addon" is not working, I mean that HBox.

It is important for me to extend the radiobutton component and not 
create a new VBox with a radiobutton on it because im creating these 
components from a Repeater and it should behave as a RadioButton.

Any ideas?

Thank you all.

Albert




--
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



 




--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Drag & drop *from* the user's file system into a Flex 2.0 app

2006-03-14 Thread Matt Chotin
That's not something that Player 8.5 is going to support I think.  There
might be other tricks but the Player itself won't understand the drag
and drop.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of David Katz
Sent: Monday, March 13, 2006 7:56 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Drag & drop *from* the user's file system into a
Flex 2.0 app

I know the Flash player is limited in its ability interact with the
user's file system. I'm wondering if a Flex 2.0 application (and the
new Flash player) has the ability to enable a user to drag a file or
folder *from the file system* onto a Flex app and have the app perform
an action (such as reading meta data on the files, uploading them,
etc.). Does anybody have any insight about this?

thanks,
David

--

David Katz
[EMAIL PROTECTED]


--
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



 




--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Flex 1.5: Passing selected data to a popup

2006-03-14 Thread Matt Chotin










I thought what you did might work too. 
You could declare pop as a CambioPasswordForm (instead of TitleWindow) and then
on the next line assign pop.dataItem?

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of RAMOS CARDONA JESUS SALVADOR
Sent: Tuesday, March 14, 2006 8:27
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 1.5:
Passing selected data to a popup



 

Hi all.

 

Is there a way in which I can pass data
from a grid to a popped up TitleWindow?

 

This is the code that pops the TWindow:

 

    private function showCambioPassword(Void):Void
{

    var
pop:TitleWindow = TitleWindow(PopUpManager.createPopUp(this,
CambioPasswordForm, true, {dataItem:usuarioSeleccionado, style:this,
owner:this}));

    pop.centerPopUp();

    }

 

This function is called when a button is
pressed (which, in turn, enables itself when the data grid has a selected
item).

 

The variable
‘usuarioSeleccionado’ is a previously setted variable of type
‘UsuarioExternoImpl’ in my class.

 

The ‘CambioPasswordForm’ is a
Canvas that contains the rest of the components required by the interface.

 

I believed that the init object at the end
of the createPopUp method could contain variables that were passed to the
CambioPasswordForm component, and as such I could manipulate the data contained
in them in the popped-up window. I tried this with this code:

 

class
com.bursatec.seguridad.presentation.views.usuarios.CambioPasswordForm extends
TitleWindow {

    var
dataItem:UsuarioExternoImpl;

    …

    …

}

 

I thought that the matching dataItem both
in the init object in the createPopUp method would set it to the proper value,
and thus could access it from my CambioPasswordForm component, but this did not
work.

 

How can I accomplish this?

 

Please help.

 

J.









--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] flex.data package

2006-03-14 Thread Matt Chotin
You want to compile against flex-messaging.jar which is in web-inf/lib.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of denny431
Sent: Monday, March 13, 2006 12:59 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] flex.data package

Hello everyone,

I am trying to use the flex.data.ChangeObject class in an Assembler 
Java Class such as is used in the Flex 2.0 samples. Does anyone know 
where I may find this library to install so that I may compile this 
Java class?

Dennis





--
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



 




--
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:
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:
http://docs.yahoo.com/info/terms/
 





RE: [flexcoders] Re: Named Webservices

2006-03-14 Thread Matt Chotin
Yes, you need to be running through FES if you want named service
support.  If useProxy=false there's no place to look up the named
service...

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jeremy Rottman
Sent: Tuesday, March 14, 2006 9:22 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Named Webservices

Thing is I am not using FES. I am using the standard version of Flex.
Does this have any bearing on being able to use named webservices?

--- In flexcoders@yahoogroups.com, "Rich Tretola" <[EMAIL PROTECTED]> wrote:
>
> Try this:
>
http://www.everythingflex.com/blog/1/2006/03/WebService-setup-for-FES.cf
m
> 
> Rich
> 
> On 3/14/06, Jeremy Rottman <[EMAIL PROTECTED]> wrote:
> > During development, I used something like this to handle all data
> > sending/retreiving.
> >
> >  > wsdl="http://flex.homesmartagent.com/cfc/adminHS2F.cfc?wsdl";
> > showBusyCursor="true" />
> >
> > Currently I develope on one box, and I upload the compiled swf to
> > anohter box that contains our cf/sql servers. How can I setup a
named
> > webservice with in flex.
> >
> > any help will be greatly appreciated.
> >
> >
> >
> >
> >
> >
> > --
> > 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
> >
> >
> >
> >
> >
> >
> >
>






--
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



 




--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] XMLEncoder Question [Flex 2.0 b1]

2006-03-14 Thread Matt Chotin
It's not really documented right now.  However all it will do is convert
an XML structure into an anonymous object graph.  It's not useful for
deserializing to typed classes.  So in many respects you're often better
off just using e4x unless getting typed objects is important.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of sourcecoderia
Sent: Tuesday, March 14, 2006 1:54 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] XMLEncoder Question [Flex 2.0 b1]

Any one know where i can find more info or examples on the XMLEncoder? 
Or has anyone used this yet for encoding objects to xml ?

Samples, pointers, idea?

Thanks

Jason





--
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



 




--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] FES & .Net

2006-03-14 Thread Matt Chotin
So we don't have an announced strategy on integrating FES and .NET yet.
It's something we do want to support in the future though.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Battershall, Jeff
Sent: Monday, March 13, 2006 7:54 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] FES & .Net

Our entire website infrastructure, after being on Java/CF shop for
years, is now going to be ported over to .Net.

I've got existing Flex apps built against a CFC back end, which I was
planning to port to Flex2, leveraging FES and the CF Adapter.  

So, my question is how Flex Enterprise Services can be integrated with
.Net, and if anyone has any experience with this.

Jeff Battershall
Application Architect
Dow Jones Indexes
[EMAIL PROTECTED]
(609) 520-5637 (p)
(484) 477-9900 (c)


--
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



 




--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Error when i try to get information from a dataservice to populate my datagrid

2006-03-14 Thread Matt Chotin










Your Java code looks right.  Can you turn
on the logging in flex-enterprise-services.xml and see what’s coming
across as a result of the fill call?  It looks like you don’t have an AS
class mapping to the Usuario Java class.  I don’t think we require you
have it but it might be worth writing one and getting it linked into the MXML
app (private var linker:Usuario;) and see if that makes a difference.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of mbordallo
Sent: Tuesday, March 14, 2006 1:12
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Error when i
try to get information from a dataservice to populate my datagrid



 

Hi, i'm trying to create a dataservice
to conect a database with my datagrid, but i get this error


Error: Item requested at index 0 was null and should not have been. Error for
service 'usuario'
at mx.data::DataList/http://www.macromedia.com/2005/flex/mx/internal::requestItemAt()
at mx.data::DataList/getItemAt()
at mx.collections::ListCollectionView/getItemAt()
at mx.collections::ListCollectionViewCursor/seek()
at mx.controls.listclasses::ListBase/modelChanged()
at mx.controls::DataGrid/modelChanged()
at flash.events::EventDispatcher/dispatchEvent()
at mx.collections::ListCollectionView/dispatchEvent()
at mx.collections::ListCollectionView/http://www.macromedia.com/2005/flex/mx/internal::reset()
at
mx.collections::ListCollectionView/mx.collections:ListCollectionView::listChangeHandler()
at flash.events::EventDispatcher/dispatchEvent()
at mx.data::DataList/http://www.macromedia.com/2005/flex/mx/internal::processSequenceResult()
at
C:\dev\enterprise_beta1\frameworks\mx\data\errors\DataServiceError.as$34::DataListRequestResponder/result()
at mx.rpc::AsyncRequest/acknowledge()
at
C:\dev\enterprise_beta1\frameworks\libs\framework.swc(mx/core/mx_internal)$35::NetConnectionMessageResponder/result()



I'm using:


 Windows XP servicepack 2
 Mozilla Firefox 1.5 (i've also tryed ie, but i
 get the same error)
 Flex 2.0 beta 1
 Flex Enterprise Services 2.0 beta 1
 Flash Player 8.5 Alpha 3 (build 211)! 













ListaUsuarios.mxml

import mx.collections.ArrayCollection;
import mx.data.DataService;

public var ds:DataService;

[Bindable]
public var usuarios:ArrayCollection;

public function initApp()
{
    usuarios = new ArrayCollection();
    ds = new DataService("usuario");
    ds.fill(usuarios);
} 










flex-data-service.xml







































   












0








usuarios.UsuarioAssembler
true






loadUsuarios




















UsuarioAssembler.java

package usuarios;

import java.util.List;

public class UsuarioAssembler
{

public List loadUsuarios()
{

UsuarioDAO dao = new
UsuarioDAO();
return dao.getUsuarios();

}


}










UsuarioDAO.java

package usuarios;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.s! ql.Statement;
import java.util.ArrayList;
import java.util.List;

public class UsuarioDAO
{

public List getUsuarios() throws DAOException
{

ArrayList list = new
ArrayList();
Connection c = null;
try
{

c =
ConexionBD.getConexion();
Statement s = c.createStatement();
ResultSet rs = s.executeQuery("SELECT * FROM alumnos ORDER BY
nombre");
Usuario usuario;
while (rs.next())
{

usuario = new Usuario();
usuario.setIdUsuario(rs.getString("id_usuario"));
usuario.setPassword(rs.getString("password"));
usuario.setNombre(rs.getString("nombre"));
list.add(usuario);

}

}
catch (SQLException e)
{ 

e.printStackTrace();
throw new DAOException(e);

}
finally
{

ConexionBD.cerrarConexion(c);

}
return list;

}

}




Everything in java works correctly, but when i try to call it from flex doesn't
work.

If anybody can help me, i will be very pleased.
Thanks in advance.


--
Manuel Bordallo
[EMAIL PROTECTED]







--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Question about BitmapData max height (Flex)

2006-03-14 Thread Matt Chotin
Reason for 2880 from an old email thread I found internally:

"I believe the 2880 number corresponds to 40 inches.  The Flash canvas
can range from .25 inches x .25 inches to 40 inches x 40 inches.  Each
inch is 72 points, and 40 * 72 = 2880."

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Richard Schutten
Sent: Monday, March 13, 2006 6:26 AM
To: [EMAIL PROTECTED] Com
Subject: [flexcoders] Question about BitmapData max height (Flex)

Hi there,

I've created a Animation class which extends Image. When loaded a Timer
is
created and on each timer event i draw the next state of my source
image.
Therefore i'm using CopyPixels of BitmapData. This works fine with small
images. But i've noticed that i can't use files which height are greater
then 2880 pixels.

Why does the BitmapData has this strange limit of 2880 pixels?

And is there another way to manipulate data of a bitmap?


Thanx,


Richard



--
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



 




--
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:
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:
http://docs.yahoo.com/info/terms/
 





[flexcoders] [Flex 1.5] Update ColumnData with new data

2006-03-14 Thread Sreejith Unnikrishnan





Hi,
 
Need some help here.
 
Assume I have an editable datagrid with 10 
columns and 10 rows, all cells initially populated with a value 0.
 
When I enter a value, say 10 in the first column 
and tab out, I need to update all the succeeding columns with the value 10. And 
then if I say edit the 3rd column with a different value, the succeeding columns 
should update with the new value.
 
What would be the most efficient way to achieve 
this?
 
Maybe I should try to generically find 
the "newValue" of a cell and then assign it by 
rowIndex-columnIndex?
 
Thanks
Sree





--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Flex 1.5: Passing selected data to a popup

2006-03-14 Thread RAMOS CARDONA JESUS SALVADOR










Hi all.

 

Is
there a way in which I can pass data from a grid to a popped up TitleWindow?

 

This
is the code that pops the TWindow:

 

    private function showCambioPassword(Void):Void
{

    var pop:TitleWindow
= TitleWindow(PopUpManager.createPopUp(this,
CambioPasswordForm, true, {dataItem:usuarioSeleccionado,
style:this, owner:this}));

    pop.centerPopUp();

    }

 

This
function is called when a button is pressed (which, in turn, enables itself
when the data grid has a selected item).

 

The
variable ‘usuarioSeleccionado’ is a
previously setted variable of type ‘UsuarioExternoImpl’ in my class.

 

The
‘CambioPasswordForm’ is a Canvas that
contains the rest of the components required by the interface.

 

I
believed that the init object at the end of the createPopUp
method could contain variables that were passed to the CambioPasswordForm
component, and as such I could manipulate the data contained in them in the
popped-up window. I tried this with this code:

 

class com.bursatec.seguridad.presentation.views.usuarios.CambioPasswordForm
extends TitleWindow {

    var dataItem:UsuarioExternoImpl;

    …

    …

}

 

I
thought that the matching dataItem both in the init
object in the createPopUp method would set it to the
proper value, and thus could access it from my CambioPasswordForm
component, but this did not work.

 

How
can I accomplish this?

 

Please
help.

 

J.









--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Flex2 :: 3rd party Components :: blog/site(future)

2006-03-14 Thread Michael Schmalle



Hello list,

Since I ask more questions than answer for now, I would like those
interested to bookmark my blog and eventual Flex2 component community
site. I am going to get all my brain waves out on this so people can
help me proliferate why flex components rock.

For those who wonder about solid 3rd party component sites when Flex2
goes public, well my site teotigraphix.com will sell them but this site
is all about creating the community.!!! I have been developing
components for 3 years now and it's time to have fun :)

http://www.flex2components.com

Peace, Mike-- What goes up, does come down.






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Flex 1.5, AxisRenderer labelRotation

2006-03-14 Thread Graham, Jason










I am using the AxisRenderer for the verticalAxis similar to
this.  

 

    

    

    

 

It appears as though its rotating it 90 degrees by default,
making the text read from top to bottom, with the bottom of the label facing
away from the chart.

 

We have requirements that force us to have the label rotated
the other direction.  So its like I want to rotate it 270 degrees really.  

 

I attempted to set the labelRotation but it had no effect.

 

Anyway to fix this?

 

I looked at the code for AxisRenderer and it seems pretty
strict about the labelRotation being in between 0-90 degrees.

 

Thanks









--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: RE : [flexcoders] RTE -- Flex 2 Style Explorer (beta)

2006-03-14 Thread Manish Jethani
On 3/15/06, Robert Thompson <[EMAIL PROTECTED]> wrote:
> If anyone knows where I can begin in utilizing a Rich Text Editor for FLEX 
> 2.0 I'd appreciate it.

If you have the Flex 2.0 Beta 1:

 

Manish


--
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:
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:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] setStyle( "selectionColor", color) changes focus.

2006-03-14 Thread Manish Jethani
On 3/15/06, tobiaspatton <[EMAIL PROTECTED]> wrote:

> I've noticed that calling mx.control.list.setStyle("selectionColor,
> color) removes focus from a previously focused TextInput control in
> the list. Based on the relatedeObject parameters of the FocusEvent
> object sent the focusOut callback that the newly focused object is
> null.
>
> Is this the intended behavior?

No, a call to setStyle should never change the focus, so that looks like a bug.

Manish


--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] How does flex save changes into database

2006-03-14 Thread Larry Liang
Hi,


I'm new to flex and I was just wondering what's the best way to save 
changes made on the client side into database?

With Flash MX, we can use dataset to keep track of all the changes 
and generate delta packet. But seems like flex works in a different 
way. So what's the best practice way in flex to save data into DBs? 

Thanks

Larry








--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: Component that has event listeners and handles it's own event

2006-03-14 Thread george_lui
Thanx Gordon,  that is what it appears to be.

However I thought of a different workaround to address this.  I just
have the combobox that handles its change event.  It would then
dispatch a new custom event in which other components could receive
and handle.  That would ensure the ordering of events I want I believe.


george


--- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote:
>
> In Flex 1.X, dispatchEvent() is implemented in AS2 using a for-in loop
> over an Object holding all the listeners. I think AS2 didn't technically
> guarantee the for-in order for an object's properties, but I believe the
> player's implementation actually consistently enumerated them in the
> reverse order that they were added.
> 
> So in 1.X, it may be that the order in which event listeners get called
> is always the reverse of the order in which addEventListener() added
> them.
> 
> - Gordon
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of george_lui
> Sent: Friday, March 10, 2006 4:02 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Component that has event listeners and handles
> it's own event
> 
> Thanx for the info Gordon. Unfortunately we're using 1.5 still.   And
> yes, it's undeterministic what executes first.
> 
> George
> 
> --- In flexcoders@yahoogroups.com, "Gordon Smith"  wrote:
> >
> > In Flex 1.X, the order in which event handlers on an object execute
> > isn't well-defined.
> > 
> > In Flex 2, the order in which event handlers on an object execute is
> > deterministic:
> > 
> > 1. Higher priority handlers execute before lower priority ones.
> > 
> > 2. For handlers with the same priority, those added earlier with
> > addEventListener() execute before those added later.
> > 
> > When you write an event handler attribute in MXML, addEventListener()
> is
> > called to add that handler immediately after the component is first
> > created.
> > 
> > So in Flex 2, cbChanged() should execute first, then fooViewHelper().
> If
> > this isn't happening, please file a bug.
> > 
> > - Gordon
> > 
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> On
> > Behalf Of george_lui
> > Sent: Thursday, March 09, 2006 5:29 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Component that has event listeners and handles
> > it's own event
> > 
> > Hi,
> > 
> > I have an interesting situation here.
> > 
> > I have something like below.
> > 
> >  >  labelFunction="formatName"
> >  change="empFolderViewHelper.cbChanged(event);">
> >{ ModelLocator.employees } 
> > 
> > 
> > There's a handler for its "change" event.
> > 
> > I also have event listeners of this comboBox that listens to the
> > change event as well.
> > 
> > 
> > view.employeeCB.addEventListener('change', fooViewHelper);
> > 
> > I've noticed that the order of event execution seems to be that the
> > event listeners get the event first and processes it and then the
> > employeeCB handles its change event later.
> > 
> > This seems to be consistent, but I'm not really sure if this is the
> > case behind the scenes.
> > 
> > Anyone know the exact behavior of this?  And if there's a way that I
> > can programmatically change the ordering of this execution?
> > 
> > TIA,
> > George
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > --
> > 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
> >
> 
> 
> 
> 
> 
> 
> --
> 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
>






--
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:
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:
http://docs.yahoo.com/info/terms/
 





RE: [flexcoders] Quick RemoteObject clarification

2006-03-14 Thread Peter Farland





The Flash Remoting Gateway has been superseded by the 
Remoting Service from Flex Enterprise Services (now referred to as Flex Data 
Services as of Flex Beta 2). RemoteObject in Flex 2 connects to the FDS 
RemotingService using RemotingMessages.
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Jonathan 
MirandaSent: Tuesday, March 14, 2006 4:00 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Quick RemoteObject 
clarification


RemoteObject in Flex 2 requires Flex 
Enterprise Services and a Flash Remoting Gateway (or does FES come with one?).RemoteObject in Flex 1.5 just 
requires a Flash Remoting Gateway.Right?
 





--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] setStyle( "selectionColor", color) changes focus.

2006-03-14 Thread tobiaspatton
I've noticed that calling mx.control.list.setStyle("selectionColor, 
color) removes focus from a previously focused TextInput control in 
the list. Based on the relatedeObject parameters of the FocusEvent 
object sent the focusOut callback that the newly focused object is 
null.

Is this the intended behavior?

Here's a sample app to demonstrate. Running in debug mode, click 
inside of the TextInput fields in the list. Now click the button. 
>From the messages in the debug console, you'll see that the 
TextInput is no longer focused.

Thanks.
Tobias.


http://www.macromedia.com/2005/mxml"; 
xmlns="*" layout="absolute">










   




















--
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:
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:
http://docs.yahoo.com/info/terms/
 





Re: RE : [flexcoders] RTE -- Flex 2 Style Explorer (beta)

2006-03-14 Thread Michael Schmalle



Hello,

Do you have Flex2 installed?

There is a Text Editor in the component framework.

Peace, MikeOn 3/14/06, Robert Thompson <[EMAIL PROTECTED]> wrote:




If anyone knows where I can begin in utilizing a Rich Text Editor for FLEX 2.0 I'd appreciate it.

FLoaded came out with one but they keep leaving bugs in it so it's good, but just short of good
enough to be as good as it needs to be.

I keep hearing Macromedia is going to come out with one in the Framework, is it there somewhere?
  







--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Quick RemoteObject clarification

2006-03-14 Thread Jonathan Miranda










RemoteObject in Flex 2 requires Flex Enterprise Services and
a Flash Remoting Gateway (or does FES come
with one?).

RemoteObject in Flex 1.5 just requires a Flash Remoting Gateway.

Right?

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: RE : [flexcoders] RTE -- Flex 2 Style Explorer (beta)

2006-03-14 Thread Robert Thompson
If anyone knows where I can begin in utilizing a Rich Text Editor for FLEX 2.0 
I'd appreciate it.

FLoaded came out with one but they keep leaving bugs in it so it's good, but 
just short of good
enough to be as good as it needs to be.

I keep hearing Macromedia is going to come out with one in the Framework, is it 
there somewhere?


> Does the Frames Per Second you sent me in the last attached DEMO.FLA make a
> difference.
> 
> Try it yourself (attached) or go to http://www.akochanowski.net/ak_test.asp


--- Philippe Maegerman <[EMAIL PROTECTED]> wrote:

> I noticed a weird behavior with Other / MenuBar.
> If you set the Border Color to Black and Background Alpha to 0, the whole 
> menu background
> becomes black.
>  
> P.
> 
> 
> 
> De: flexcoders@yahoogroups.com de la part de João Fernandes
> Date: mar. 3/14/2006 18:57
> À: flexcoders@yahoogroups.com
> Objet : RE: [flexcoders] Flex 2 Style Explorer (beta)
> 
> 
> 
> I was just testing it in fact, but I was wondering if it was a bug.
> 
>  
> 
> João Fernandes
> Sistemas de Informação
> 
> Programador Informático
> Cofina media
> 
> Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
> Tel (+351) 213 185 200 . Fax (+351) 213 540 370
> [EMAIL PROTECTED]  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter 
> Baird
> Sent: terça-feira, 14 de Março de 2006 17:20
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Flex 2 Style Explorer (beta)
> 
>  
> 
> So, by setting the borderStyle to none, you're setting the borderStyle of the 
> background to none
> as well, and if you've read this post:
> http://weblogs.macromedia.com/mc/archives/2005/10/round-cornered.cfm you'll 
> note that by setting
> the border to none, you loose the ability to set the cornerRadius.  So what 
> you see happening is
> the header and footer are receiving the cornerRadius, but the background 
> isn't. 
> 
> Another way of achieving what you're trying to do is to keep the borderStyle 
> as solid, but set
> the borderThickness to 0... In effect no border, but now no little while 
> corners. 
> 
> -Peter
> 
> 
> On 3/14/06 11:59 AM, "João Fernandes" <[EMAIL PROTECTED]> wrote:
> 
> Hi there, 
>  
> A very nice job, I just want to make a remark, In the panel option if you set 
> alpha = 1 so you
> can use highlight alphas, if you set border style = none you can see a small 
> white corner. Is
> this supposed to happen?
>  
> Regards,
>  
> 
> João Fernandes
> Sistemas de Informação
> Programador Informático
> Cofina media
> 
> Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
> Tel (+351) 213 185 200 . Fax (+351) 213 540 370
> [EMAIL PROTECTED]    
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter 
> Baird
> Sent: terça-feira, 14 de Março de 2006 16:38
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Flex 2 Style Explorer (beta)
> 
> Just wanted to let you that Flex 2 Style Explorer (beta) is available for 
> download.  The usual
> beta caveats apply.
> 
> Read more here:
> 
> http://weblogs.macromedia.com/mc/archives/2006/03/flex_2_style_ex.cfm
> 
> 
> / \®   PETER BAIRD
> 888/   \888User Experience Consultant
> 88/  /  \88Adobe Consulting | Adobe Systems, Inc
> 8/  /8\  \8275 Grove St. Newton, MA
> /  /888\  \Office: 617.219.2126 | Cell: 617.803.6804
>   \8\   AIM: pbaird00 | Y!IM: pbaird00
> 
> 
> 
> 
> --
> 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 
> 
> 
>   Web site design development
>

>

> Computer software development
>

>

> Software design and development
>


[flexcoders] Flex 2 graph axis label question

2006-03-14 Thread christopherjdunn
I'm trying to do the following with no luck so far. 

I have a small graph to represents 24 hours worth of data (happens to 
be ping response times). Since it's a small graph and numerous 
values, the horizontal axis labels look like little lines. I would 
like to do one of the following, which I have not been able to get 
either to work. Remove the labels altogether and leave only a title 
(Response time 24hr) or only add labels for every hour.

Here's my code for trying to remove the labels altogether:

















Any pointers would be great.

Chris






--
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:
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:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Flex2 :: Component-Inheriting Styles :: Help

2006-03-14 Thread Michael Schmalle



Oh yeah,

They were doing that back with Flex1, got ya

Thanks,

Peace, MikeOn 3/14/06, Manish Jethani <[EMAIL PROTECTED]> wrote:




On 3/15/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:

>  PS Is it convention now that you put all child creation
calls in an if() statement? I thought createChildren() only ran once.
Did this change in Flex2?
>

`createChildren` only runs once, but a subclass can override
`createChildren` and create a child object different there.

 function createChildren()
 {
  if (!titleBar)
  {
   // if subclass has not created the title bar, create it here
   titleBar = new ...;
  }

  super.createChildren();
 }

The superclass's `createChildren` is called last.

Manish







--
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
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  









-- What goes up, does come down.






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] HSlider multiple thumbs alternate skinning

2006-03-14 Thread matt wicks
is it possible if having two thumbs on a HSlider to skin them 
differently? I.e. one green and one blue - i cam see the thumbSkin 
propety but cant's seem to apply it as (eg_ thmb[1].thumbSkin)

any help appreciated

Matt Wicks



--
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:
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:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Flex2 :: Component-Inheriting Styles :: Help

2006-03-14 Thread Manish Jethani
On 3/15/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:

>  PS Is it convention now that you put all child creation calls in an if() 
> statement? I thought createChildren() only ran once. Did this change in Flex2?
>

`createChildren` only runs once, but a subclass can override
`createChildren` and create a child object different there.

 function createChildren()
 {
  if (!titleBar)
  {
   // if subclass has not created the title bar, create it here
   titleBar = new ...;
  }

  super.createChildren();
 }

The superclass's `createChildren` is called last.

Manish


--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: referencing a datamodel from another component

2006-03-14 Thread rgwilson26
That is exactly what I want to do. I did try using parentDocument, 
and it does work by transferring the values from one component to 
another. However, I am recieving a "Changes to unkown property, 
datamodel, will not be detected" error. Does this just mean that any 
changes in comp#2 will not take effect in comp#1, and is there a way 
to eliminate this?

Thanks,

--- In flexcoders@yahoogroups.com, "t_msreddy" <[EMAIL PROTECTED]> wrote:
>
> I am not sure if i understand you right, but there is something 
> called "parentDocument" which allows you to access parentDocuments 
> objects
> Main
> 
>
>
>  
> then in comp2.mxml, you can do this:
> parentDocument.comp1.datamodel to get you datamode defined in 
> comp1.mxml
> 
> 
> --- In flexcoders@yahoogroups.com, "rgwilson26"  
> wrote:
> >
> > I am recently starting to work with datamodels in flex 1.5 and am 
> > having a bit of a time trying to pass data around my application. 
> I 
> > figured I would use a data model using a model tag within comp#1. 
> I 
> > will need comp#2 to access and display this data. However I 
cannot 
> > seem to get comp#2 to see comp#1's datamodel. Instead I get 
> > a "changes to unknown property, comp#1Model, will not be 
detected".
> > 
> > In comp#2 I have text="{comp#1Model.userFirstName}"
> > 
> > 
> > This is my directory strucuture:
> > 
> > main.mxml
> > >comp directory
> > comp#1.mxml
> > comp#2.mxml
> > 
> > If there is possibly a better approach to passing data around 
> within 
> > an app I am open to suggestions.
> > 
> > Thanks
> >
>






--
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:
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:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Flex2 :: Component-Inheriting Styles :: Help

2006-03-14 Thread Michael Schmalle



BTW,

I just added that simple little line and it works just like expected. 

Well, who says wasting hours on a solution that takes 1 second is a bad thing?! :-)

Peace, MikeOn 3/14/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:
Manish, H

I feel like an idiot! I forgot the styleName pointer. OMG!

Your right, this is where I messed up. I guess I am doing tomany things at once. 

I feel like a newbie right now man.

Thanks a lot.

PS Is it convention now that you put all child creation calls in an
if() statement? I thought createChildren() only ran once. Did this
change in Flex2?

Peace, MikeOn 3/14/06, Manish Jethani <
[EMAIL PROTECTED]> wrote:





On 3/14/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:

>  I understand what you wrote, I guess my question is more about the implementation of getStyle().
>
>  If you have a sub component that needs to access
'sizerThickness', and it's a composited component that stands on it's
own as a 'component', should I declare that style on the Host component.

Let's say you have a main component, say "Foo".  And you have a
subcomponent, say "Sizer".  Every Foo has a Sizer.  The Sizer's colour
is determined by Foo's "sizerColor" style.  The Sizer instance lives
in the `allChildrenList` of Foo.

Given the above scenario, "sizerColor" should be declared as a style
of Foo, so you can write MXML code like so:

 

Now your question is: how does the Sizer know its colour?

In the `createChildren` of Foo, where the Sizer instance is created,
its `styleName` property is set to point to the Foo instance.

 override protected function createChildren():void
 {
  if (!sizer) {
   sizer = new sizerClass();
   sizer.styleName = this; // XXX
  }

  super.createChildren();
 }

Now, inside Sizer's code, when you call `getStyle`, it actually gets
the style value off the style settings of the Foo object.  So
`styleName` is the important thing here.

Got it?

When you create extra chome objects in your component's
`createChildren`, just point their `styleName` to `this`.

Manish







--
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
  
  
  



Web site design development
  
  


Computer software development
  
  


Software design and development
  
  




Macromedia flex
  
  


Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 

[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.





  










-- What goes up, does come down.

-- What goes up, does come down.






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Flex2 :: Component-Inheriting Styles :: Help

2006-03-14 Thread Michael Schmalle



Manish, H

I feel like an idiot! I forgot the styleName pointer. OMG!

Your right, this is where I messed up. I guess I am doing tomany things at once. 

I feel like a newbie right now man.

Thanks a lot.

PS Is it convention now that you put all child creation calls in an
if() statement? I thought createChildren() only ran once. Did this
change in Flex2?

Peace, MikeOn 3/14/06, Manish Jethani <[EMAIL PROTECTED]> wrote:




On 3/14/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:

>  I understand what you wrote, I guess my question is more about the implementation of getStyle().
>
>  If you have a sub component that needs to access
'sizerThickness', and it's a composited component that stands on it's
own as a 'component', should I declare that style on the Host component.

Let's say you have a main component, say "Foo".  And you have a
subcomponent, say "Sizer".  Every Foo has a Sizer.  The Sizer's colour
is determined by Foo's "sizerColor" style.  The Sizer instance lives
in the `allChildrenList` of Foo.

Given the above scenario, "sizerColor" should be declared as a style
of Foo, so you can write MXML code like so:

 

Now your question is: how does the Sizer know its colour?

In the `createChildren` of Foo, where the Sizer instance is created,
its `styleName` property is set to point to the Foo instance.

 override protected function createChildren():void
 {
  if (!sizer) {
   sizer = new sizerClass();
   sizer.styleName = this; // XXX
  }

  super.createChildren();
 }

Now, inside Sizer's code, when you call `getStyle`, it actually gets
the style value off the style settings of the Foo object.  So
`styleName` is the important thing here.

Got it?

When you create extra chome objects in your component's
`createChildren`, just point their `styleName` to `this`.

Manish







--
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
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  










-- What goes up, does come down.






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Referencing Controls within a Repeater (Flex 2beta1)

2006-03-14 Thread Tim Sawyer
Ah-ha, missed that!  I'll give it a go, I'm new at this Flex stuff, thanks.

Tim.

On Tuesday 14 Mar 2006 18:55, Manish Jethani wrote:
> On 3/14/06, Tim Sawyer <[EMAIL PROTECTED]> wrote:
> > 
> >> doubleClick="openMessage(event.currentTarget.getRepeaterItem())"
> > click="selectMessage()">
> >  That's `event.target`, isn't it?
>
> Manish
>
>
> --
> 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
>
>
>


--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: IE popup blocker causes page reload

2006-03-14 Thread Doug Lowder
Another problem I've run into is when the user has the Information 
Bar itself turned off from the Popup Blocker Settings dialog.  The 
user clicks a link and, from their perspective, nothing happens.  I 
use a utility class to handle both this case and the one you 
mentioned, and it has worked pretty well.

Usage:  utils.BrowserUtil.openBrowserWindow(url, name, props);

The three parameters are the same as for the Javascript window.open
() function.  All three are Strings, with the first being required 
and the other two optional.  Note that this utility doesn't support 
all URLs; for example, you couldn't pass a javascript: prefixed url 
to it.

Here's the code for utils/BrowserUtil.as
---
class utils.BrowserUtil {

import mx.core.Application;

public static function openBrowserWindow(url: String, name: 
String, params: String) : Void {
var errorMsg: String = "Warning - Popup Blocked" + 
"\\n\\nYour browser\\'s popup blocker may be enabled." + 
"\\nPlease change your popup blocker settings in order 
to view the requested page.";

if (name == null) name = "_blank";

mx.core.Application.getURL("javascript:var newwnd = 
window.open('" + url + "', '" + 
name + (params == null? "" : ("', '" + params)) + "');" 
+ 
"if (newwnd == null) {" + 
"  alert('" + errorMsg + "')" + 
"}" + 
"else {" + 
"  newwnd.focus();" + 
"}"
);
}

}


Hope that is of some help.

Doug


--- In flexcoders@yahoogroups.com, "Hassan Schroeder" 
<[EMAIL PROTECTED]> wrote:
>
> I'm seeing a problem on a Flex site involving Win/IE that started 
with
> the latest MS security update.
> 
> When the user clicks a link to download anything -- PDF, tar file, 
etc. --
> IE's "download blocked" notification bar appears. When the user OKs
> the download, IE immediately requests the original site URL ("/") 
and
> the user's page view is reset. Then they have to navigate back to 
the
> view with the download, at which point clicking the link works as
> expected.
> 
> Does anyone have any ideas on what's causing this, or how to deal
> with it?
> 
> I'm new to Flex so I'm not even sure what other information might 
be
> relevant, so feel free to ask :-)
> 
> TIA!
> --
> Hassan Schroeder  [EMAIL PROTECTED]
>







--
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:
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:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Flex 2: ColdFusion Updater Install Issues with FES

2006-03-14 Thread Dave Carabetta



Bill,Thanks so much for the detailed instructions. However, nothing came through attached. Would you mind e-mailing the files to dcarabetta (at) gmail.com? Also, I assume that I'll be able to deploy directly to a J2EE ColdFusion instance using the exe installer in a subsequent beta? I used the WAR deployment option for CFMX, as I've always found that setup much easier than the EAR deployment option. My directory setup for CFMX 
7.01 is:D:\JRun4\servers\cfmx7\cfusion(again, note that it's not at the default C:\ location)And that's the only instance (other than the JRun admin instance) that I have right now. I only point all this out because I want to make sure that my setup (which is pretty vanilla as far as the J2EE CFMX setup process goes) will eventually be covered by the one-click installer you provided on the Labs site.
Regards,Dave.On 3/14/06, Bill Sahlas <[EMAIL PROTECTED]> wrote:







Hi Dave -
 

The current beta installer  is designed to only update 
the initial CF instance in your multi-instance CFMX install - not a JRun 4 
deployment.  
 
Currently the beta 1 version has a bug and doesn't make the 
correct modification to the web.xml file on the "multi-server installer" (that's 
option #2 of the CFMX 7.01 installer)  but all the needed files are 
deployed to the correct location.  The one scenario that the installer 
isn't designed to handle is when the installer is a pure J2EE app 
server installer like JRun 4 install where you've also 
(appserver/jrun/lib/jrun-comp.ear) installed CF using the J2EE option 
(appserver/jrun/servers/cfmx/cfusion/)  The instructions should be 
sufficient to get you going for the J2EE app servers like JRun 4 and 
CF J2EE.
 
Below find the instructions on what you need to add 
to the web.xml file and instructions for both Flex Builder 2 and FES2 
messaging/cf flex event gateway.
 

For Flex 
Builder 2 connectivity
 
1) modify 
/WEB-INF/web.xml for you're deployed server
Add this to 
the Servlet section 
 
   
    
    
MessageBrokerServlet

 
    
coldfusion.bootstrap.BootstrapServlet

 
    
    
servlet.class    
flex.messaging.MessageBrokerServlet    
services.configuration.file    
/WEB-INF/flex/flex-enterprise-services.xml    
    
1    
    

 

 

Add this down 
near the bottom of the file in the servlet-mapping 
section

    
  
MessageBrokerServlet    
/flex2gateway/*    
 

2) Make this 
dir C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\flex and add the 
attached flex-enterprise-services.xml .

3) Modify 
flex-enterprise-services.xml - find the channel-definition id="my-cfamf" and 
make the endpoint uri= match your environment.  It defaults to 


 http://localhost:8500{context.root}/flex2gateway/
" 
class="flex.messaging.endpoints.AMFEndpoint"/> so if you're got cf running 
off http://localhost:8300/cfusion then 
you'd have

 http://localhost:8300/cfusion/flex2gateway/
" 
class="flex.messaging.endpoints.AMFEndpoint"/>

4) copy the 
attached flashremoting_update.jar and flex-messaging.jar and put these under 
C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\lib

 

For the 
FlexMessaging Gateway all you'll need to do is 


 

1) put the 
attached flex-messaging-gateway.jar file under 
C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\gateway\lib 
(flex-messaging-gateway.cfg is only a sample and isn't 
needed)

2) in the 
unzip the eventgateway.zip file under your 
C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\CFIDE\administrator\ which will 
replace the ones that you've got with the updated version that includes the 
FlexMessaging Gateway.  

3) Download 
the instructions and docs from the Mystic downloads page on the mmbeta site to 
familiarize yourself with both of these implementations.  There's tutorials 
on how to setup samples of both of 
these implementations  
Using 
ColdFusion MX with Flex 2 (PDF) .


 

 

NOTE: if 
you've got FES Beta I installed it includes both /flex and 
/samples applcations and maybe more than that.  If you want to you can 
restrict what Flex loads by modifying the 
C:\fes2\jrun4\servers\default\SERVER-INF\jrun.xml

 

Replace the 
 section that says This Service 
handles application deployment with this one.

            true        {jrun.server.rootdir}/SERVER-INF/temp    
false    
false    
{jrun.home}/lib/jrun-comp.ear    
 {jrun.server.rootdir}/flex/    
true    
  
WEB-INF/flex/flex-config.xml    
  

 
 
For the J2EE appserver + CFMX J2EE deploys you 
may need to copy the flex-messaging-logins.jar and backport-util-concurrent.jar 
files from your FES2 install.


From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of Dave 
CarabettaSent: Tuesday, March 14, 2006 9:55 AMTo: Flex 
CodersSubject: [flexcoders] Flex 2: ColdFusion Updater Install Issues 
with FES
I've been trying to avoid using this list for install support, 
butI've tried the Labs Forums, two blogs, and anot

Re: [flexcoders] Re: rowIndex & columnIndex while rendering in Flex 2.0

2006-03-14 Thread Manish Jethani
On 3/14/06, t_msreddy <[EMAIL PROTECTED]> wrote:
> I have the same problem. I need to know rowIndex and columnIndex to
> populate values in cellrenderer (Please see the code for both
> below). Also I get the error:
> --
> ReferenceError: Error #1069: Property text not found on WeekHoursCR
> and there
>  is no default value
[snip]

> -
> This is my Cellrenderer (WeekHourCR.mxml):
> -
> 
> http://www.macromedia.com/2005/mxml"; width="100%"
> height="100%" horizontalGap="0" verticalAlign="top" >
>  textAlign="center" text="{(dataObject.employeeHours
> [0]).forecastHours}" />
>  textAlign="center" text="{(dataObject.employeeHours
> [0]).actualHours}" />
> 
> -

It's trying to access the non-existent `text` property on HBox.  Add a
`text` property, or, faster, set `editorProperty` to "label" and bind
the HBox's label to the TextInput's text.

 
  
 ...

Manish


--
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:
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:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Referencing Controls within a Repeater (Flex 2beta1)

2006-03-14 Thread Manish Jethani
On 3/14/06, Tim Sawyer <[EMAIL PROTECTED]> wrote:

> 
>click="selectMessage()">
> 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:
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:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] IE popup blocker causes page reload

2006-03-14 Thread Manish Jethani
On 3/14/06, Hassan Schroeder <[EMAIL PROTECTED]> wrote:

> When the user clicks a link to download anything -- PDF, tar file, etc. --
> IE's "download blocked" notification bar appears. When the user OKs
> the download, IE immediately requests the original site URL ("/") and
> the user's page view is reset. Then they have to navigate back to the
> view with the download, at which point clicking the link works as
> expected.

Yes, this sucks.  IE reloads the "current URL", and in a single-page
interface mostly that means you have to navigate again manually to the
point where you left.

My quick and kludgy solution would be to open a pop-up
programmatically at the beginning of the app - and close it back
within a second or two.  In this time, the user will get the pop-up
blocker notification and they'll either accept it (good for them) or
deny it.  But this'll ensure that the pop-up blocker has been dealt
with before the user starts using your app.

Not a great solution, but I can't of anything better ATM.

Manish


--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Flex 2: ColdFusion Updater Install Issues with FES

2006-03-14 Thread Bill Sahlas





Hi Dave -
 

The current beta installer  is designed to only update 
the initial CF instance in your multi-instance CFMX install - not a JRun 4 
deployment.  
 
Currently the beta 1 version has a bug and doesn't make the 
correct modification to the web.xml file on the "multi-server installer" (that's 
option #2 of the CFMX 7.01 installer)  but all the needed files are 
deployed to the correct location.  The one scenario that the installer 
isn't designed to handle is when the installer is a pure J2EE app 
server installer like JRun 4 install where you've also 
(appserver/jrun/lib/jrun-comp.ear) installed CF using the J2EE option 
(appserver/jrun/servers/cfmx/cfusion/)  The instructions should be 
sufficient to get you going for the J2EE app servers like JRun 4 and 
CF J2EE.
 
Below find the instructions on what you need to add 
to the web.xml file and instructions for both Flex Builder 2 and FES2 
messaging/cf flex event gateway.
 

For Flex 
Builder 2 connectivity
 
1) modify 
/WEB-INF/web.xml for you're deployed server
Add this to 
the Servlet section 
 
   
    
    
MessageBrokerServlet

 
    
coldfusion.bootstrap.BootstrapServlet

 
    
    
servlet.class    
flex.messaging.MessageBrokerServlet    
services.configuration.file    
/WEB-INF/flex/flex-enterprise-services.xml    
    
1    
    

 

 

Add this down 
near the bottom of the file in the servlet-mapping 
section

    
  
MessageBrokerServlet    
/flex2gateway/*    
 

2) Make this 
dir C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\flex and add the 
attached flex-enterprise-services.xml .

3) Modify 
flex-enterprise-services.xml - find the channel-definition id="my-cfamf" and 
make the endpoint uri= match your environment.  It defaults to 


 http://localhost:8500{context.root}/flex2gateway/" 
class="flex.messaging.endpoints.AMFEndpoint"/> so if you're got cf running 
off http://localhost:8300/cfusion then 
you'd have

 http://localhost:8300/cfusion/flex2gateway/" 
class="flex.messaging.endpoints.AMFEndpoint"/>

4) copy the 
attached flashremoting_update.jar and flex-messaging.jar and put these under 
C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\lib

 

For the 
FlexMessaging Gateway all you'll need to do is 


 

1) put the 
attached flex-messaging-gateway.jar file under 
C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\gateway\lib 
(flex-messaging-gateway.cfg is only a sample and isn't 
needed)

2) in the 
unzip the eventgateway.zip file under your 
C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\CFIDE\administrator\ which will 
replace the ones that you've got with the updated version that includes the 
FlexMessaging Gateway.  

3) Download 
the instructions and docs from the Mystic downloads page on the mmbeta site to 
familiarize yourself with both of these implementations.  There's tutorials 
on how to setup samples of both of 
these implementations  Using 
ColdFusion MX with Flex 2 (PDF) .

 

 

NOTE: if 
you've got FES Beta I installed it includes both /flex and 
/samples applcations and maybe more than that.  If you want to you can 
restrict what Flex loads by modifying the 
C:\fes2\jrun4\servers\default\SERVER-INF\jrun.xml

 

Replace the 
 section that says This Service 
handles application deployment with this one.

            true        {jrun.server.rootdir}/SERVER-INF/temp    
false    
false    
{jrun.home}/lib/jrun-comp.ear    
 {jrun.server.rootdir}/flex/    
true    
  
WEB-INF/flex/flex-config.xml    
  

 
 
For the J2EE appserver + CFMX J2EE deploys you 
may need to copy the flex-messaging-logins.jar and backport-util-concurrent.jar 
files from your FES2 install.


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Dave 
CarabettaSent: Tuesday, March 14, 2006 9:55 AMTo: Flex 
CodersSubject: [flexcoders] Flex 2: ColdFusion Updater Install Issues 
with FES
I've been trying to avoid using this list for install support, 
butI've tried the Labs Forums, two blogs, and another flex2dev 
mailinglist that I don't think works anymore, so I'm out of 
options...I'm trying to get the Flex/ColdFusion Connectivity installer 
availableon the Labs site (cf_flexconnect_b1_0123_en.exe) to run, and 
I'mconstantly hung up on the first step after selecting the 
"Multiserver"option where it asks where ColdFusion MX 7 is located. The 
defaultpath listed is C:\JRun4. My install is at D:\JRun4. I changed it 
tothat but I got this: "The specified directory D:\JRun4 does notcontain 
a valid JRun root directory." and I cannot continue. I thenadd one directory 
at a time all the way down to my ColdFusion MX 7instance (through the 
/WEB-INF/cfusion directory, and through my/CFIDE directory) and I get the 
same exact error, except with theadded directories listed.Does the 
installer not work with a path other than C:\JRun4 orsomething? The forums 
are getting next to no traffic in the relevantcatego

Re: [flexcoders] Flex2 :: Component-Inheriting Styles :: Help

2006-03-14 Thread Manish Jethani
On 3/14/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:

>  I understand what you wrote, I guess my question is more about the 
> implementation of getStyle().
>
>  If you have a sub component that needs to access 'sizerThickness', and it's 
> a composited component that stands on it's own as a 'component', should I 
> declare that style on the Host component.

Let's say you have a main component, say "Foo".  And you have a
subcomponent, say "Sizer".  Every Foo has a Sizer.  The Sizer's colour
is determined by Foo's "sizerColor" style.  The Sizer instance lives
in the `allChildrenList` of Foo.

Given the above scenario, "sizerColor" should be declared as a style
of Foo, so you can write MXML code like so:

 

Now your question is: how does the Sizer know its colour?

In the `createChildren` of Foo, where the Sizer instance is created,
its `styleName` property is set to point to the Foo instance.

 override protected function createChildren():void
 {
  if (!sizer) {
   sizer = new sizerClass();
   sizer.styleName = this; // XXX
  }

  super.createChildren();
 }

Now, inside Sizer's code, when you call `getStyle`, it actually gets
the style value off the style settings of the Foo object.  So
`styleName` is the important thing here.

Got it?

When you create extra chome objects in your component's
`createChildren`, just point their `styleName` to `this`.

Manish


--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Re: list.selectedIndices has the wrong values

2006-03-14 Thread Mac Martine










Tobias-

 I have just submitted this issue to the
Flex team. Thanks!

-Mac

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of tobiaspatton
Sent: Monday, March 13, 2006 4:34
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
list.selectedIndices has the wrong values



 

One more strange thing: if I
select "five" and then shift-
select "one", the selectedIndices
attribute is correct.

--- In flexcoders@yahoogroups.com,
"tobiaspatton" <[EMAIL PROTECTED]> 
wrote:
>
> Hello list;
> 
> I have a list with multiple selection turned
on. When I examine 
the 
> selectedIndices attribute of the list, the
values seem to be 
> erroneous. For example, if my list looks like
this:
> 
> one
> two
> three
> four
> five
> 
> I click on "one" and then
shift-click on "two". At this point 
> selectedIndices contains [1,2] when it should
be [0,1]. If I click 
> on "one" and shift-click on
"five", selectedIndices contains 
> [4,8,5,6,7] when it should contain
[0,1,2,3,4]. Strangely, 
> selectedItems contains the correct
dataObjects. However, I want 
> access to the item renderers, not the data
objects, so this is not 
> of no use to me.
> 
> Using ctrl-click to create a multi-selection
works fine. That is, 
> the value of selectedIndices is correct when
ctrl-click is used 
> instead of shift-click.
> 
> Here's small program to illustrate the
problem:
> 
> 
> http://www.macromedia.com/2005/mxml"

>  
xmlns="*" 
>  
layout="absolute">
>   
>   
>  
  width="200"
>  
  multipleSelection="true"
>   
>  
dataProvider="[ 'one', 'two', 'three', 'four', 'five' ]">
>   
>  

>   
>  
  label="Trace" 
>  
  click="trace( l1.selectedIndices, 
> l1.selectedItems )"/>
> 
> 
> 
> Thanks.
> Tobias.
>












--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE : [flexcoders] Flex 2 Style Explorer (beta)

2006-03-14 Thread Philippe Maegerman
I noticed a weird behavior with Other / MenuBar.
If you set the Border Color to Black and Background Alpha to 0, the whole menu 
background becomes black.
 
P.



De: flexcoders@yahoogroups.com de la part de João Fernandes
Date: mar. 3/14/2006 18:57
À: flexcoders@yahoogroups.com
Objet : RE: [flexcoders] Flex 2 Style Explorer (beta)



I was just testing it in fact, but I was wondering if it was a bug.

 

João Fernandes
Sistemas de Informação

Programador Informático
Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel (+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]  



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter 
Baird
Sent: terça-feira, 14 de Março de 2006 17:20
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex 2 Style Explorer (beta)

 

So, by setting the borderStyle to none, you're setting the borderStyle of the 
background to none as well, and if you've read this post: 
http://weblogs.macromedia.com/mc/archives/2005/10/round-cornered.cfm you'll 
note that by setting the border to none, you loose the ability to set the 
cornerRadius.  So what you see happening is the header and footer are receiving 
the cornerRadius, but the background isn't. 

Another way of achieving what you're trying to do is to keep the borderStyle as 
solid, but set the borderThickness to 0... In effect no border, but now no 
little while corners. 

-Peter


On 3/14/06 11:59 AM, "João Fernandes" <[EMAIL PROTECTED]> wrote:

Hi there, 
 
A very nice job, I just want to make a remark, In the panel option if you set 
alpha = 1 so you can use highlight alphas, if you set border style = none you 
can see a small white corner. Is this supposed to happen?
 
Regards,
 

João Fernandes
Sistemas de Informação
Programador Informático
Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel (+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]    



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter 
Baird
Sent: terça-feira, 14 de Março de 2006 16:38
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2 Style Explorer (beta)

Just wanted to let you that Flex 2 Style Explorer (beta) is available for 
download.  The usual beta caveats apply.

Read more here:

http://weblogs.macromedia.com/mc/archives/2006/03/flex_2_style_ex.cfm


/ \®   PETER BAIRD
888/   \888User Experience Consultant
88/  /  \88Adobe Consulting | Adobe Systems, Inc
8/  /8\  \8275 Grove St. Newton, MA
/  /888\  \Office: 617.219.2126 | Cell: 617.803.6804
  \8\   AIM: pbaird00 | Y!IM: pbaird00




--
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 


  Web site design development 

 

 Computer software development 

 

 Software design and development 

 

 
  Macromedia flex 

 

 Soft

RE: [flexcoders] Flex 2 Style Explorer (beta)

2006-03-14 Thread João Fernandes
Title: Re: [flexcoders] Flex 2 Style Explorer (beta)










I was just testing it in fact, but I was wondering if it was a bug.

 



João Fernandes
Sistemas
de Informação

Programador Informático
Cofina media

Avenida
João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel
(+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]











From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Peter Baird
Sent: terça-feira, 14 de Março de 2006 17:20
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex 2 Style Explorer (beta)



 

So, by setting the borderStyle to none, you’re
setting the borderStyle of the background to none as well, and if you’ve
read this post: http://weblogs.macromedia.com/mc/archives/2005/10/round-cornered.cfm
you’ll note that by setting the border to none, you loose the ability to
set the cornerRadius.  So what you see happening is the header and footer
are receiving the cornerRadius, but the background isn’t. 

Another way of achieving what you’re trying to do is to keep the
borderStyle as solid, but set the borderThickness to 0... In effect no border,
but now no little while corners. 

-Peter


On 3/14/06 11:59 AM, "João Fernandes" <[EMAIL PROTECTED]> wrote:

Hi
there, 
 
A very nice job, I just want to make a remark, In the panel option if you set
alpha = 1 so you can use highlight alphas, if you set border style = none you
can see a small white corner. Is this supposed to happen?
 
Regards,
 

João
Fernandes
Sistemas
de Informação
Programador Informático
Cofina media

Avenida
João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel (+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED] 








From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Peter Baird
Sent: terça-feira, 14 de Março de 2006 16:38
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2 Style Explorer (beta)

Just wanted to let you that Flex 2 Style Explorer (beta) is available for
download.  The usual beta caveats apply.

Read more here:

http://weblogs.macromedia.com/mc/archives/2006/03/flex_2_style_ex.cfm


/
\®   PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe
Consulting | Adobe Systems, Inc
8/  /8\  \8    275
Grove St. Newton, MA
/  /888\  \    Office:
617.219.2126 | Cell: 617.803.6804
  \8\
  AIM: pbaird00 | Y!IM: pbaird00




--
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 


  Web site
design development 
   Computer software development 
   Software design and development 
   
  Macromedia
flex 
   Software development best practice

     
 







YAHOO! GROUPS LINKS 

 


 Visit
 your group "flexcoders 
 " on the web. 
   
 To
 unsubscribe from this group, send an email to: 
  [EMAIL PROTECTED]
 
 
   
 Your
 use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
 . 


 









--
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 
  
  Web site
design development 
  Computer software development 
  Software design and development 
  
  Macromedia
flex 
  Software development best practice 

 
 







YAHOO! GROUPS LINKS 


 Visit
 your group "flexcoders 
 " on the web. 
  
 To
 unsubscribe from this group, send an email to: 
 [EMAIL PROTECTED]
 
 
  
 Your
 use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
 . 



 







 



/
\®   PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe
Consulting | Adobe Systems, Inc
8/  /8\  \8    275
Grove St. Newton, MA
/  /888\  \    Office:
617.219.2126 | Cell: 617.803.6804
  \8\
  AIM: pbaird00 | Y!IM: pbaird00




--
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 




 
  
  Web
  site design development 
  
  
  Computer
  software development 
  
  
  Software
  design and development 
  
 
 
  
  Macromedia
  flex 
  
  
  Software
  development best practice 
  
  
   
  
 


 







YAHOO! GROUPS LINKS 

 


  Visit
 your group "flexcoders"
 on the web.
   
  To
 unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]
   
  Your
 use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
 


 















--
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
  
  
  

Web site design development
  
  
Computer software de

[flexcoders] FAST Framework and Cairngorm

2006-03-14 Thread sof4real03
I'm looking to leverage the FAST frameworks logging and communication
capability in conjunction with the Cairngorm micro-architecture. Are
there any known issues with them working together?





--
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:
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:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: Named Webservices

2006-03-14 Thread Jeremy Rottman
I tried to find the flex-enterprise-services.xml file in my flex
builder install folder. But I cant seem to find it at all. Is it part
of something I need to install extra?

--- In flexcoders@yahoogroups.com, "Rich Tretola" <[EMAIL PROTECTED]> wrote:
>
> Have you tried this:
> 
> "Note:  If you wish to use a named service within FlexBuilder (non FES
> application) you will need to add an argument to your Flex Compiler
> arguments under the project properties:
> mxmlc --services=./mypath/to/flex-enterprise-services.xml etc"
> 
> Rich
> 
> On 3/14/06, Jeremy Rottman <[EMAIL PROTECTED]> wrote:
> > Thing is I am not using FES. I am using the standard version of Flex.
> > Does this have any bearing on being able to use named webservices?
> >
> > --- In flexcoders@yahoogroups.com, "Rich Tretola"  wrote:
> > >
> > > Try this:
> > >
> >
http://www.everythingflex.com/blog/1/2006/03/WebService-setup-for-FES.cfm
> > >
> > > Rich
> > >
> > > On 3/14/06, Jeremy Rottman  wrote:
> > > > During development, I used something like this to handle all data
> > > > sending/retreiving.
> > > >
> > > >  > > > wsdl="http://flex.homesmartagent.com/cfc/adminHS2F.cfc?wsdl";
> > > > showBusyCursor="true" />
> > > >
> > > > Currently I develope on one box, and I upload the compiled swf to
> > > > anohter box that contains our cf/sql servers. How can I setup
a named
> > > > webservice with in flex.
> > > >
> > > > any help will be greatly appreciated.
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > > 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
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > >
> >
> >
> >
> >
> >
> >
> > --
> > 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
> >
> >
> >
> >
> >
> >
> >
>






--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] IE popup blocker causes page reload

2006-03-14 Thread Hassan Schroeder
I'm seeing a problem on a Flex site involving Win/IE that started with
the latest MS security update.

When the user clicks a link to download anything -- PDF, tar file, etc. --
IE's "download blocked" notification bar appears. When the user OKs
the download, IE immediately requests the original site URL ("/") and
the user's page view is reset. Then they have to navigate back to the
view with the download, at which point clicking the link works as
expected.

Does anyone have any ideas on what's causing this, or how to deal
with it?

I'm new to Flex so I'm not even sure what other information might be
relevant, so feel free to ask :-)

TIA!
--
Hassan Schroeder  [EMAIL PROTECTED]


--
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:
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:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Referencing Controls within a Repeater (Flex 2beta1)

2006-03-14 Thread Tim Sawyer
Hi,

I am rendering an inbox full of emails to the user.  I'd like single click to 
"select" an item (say, change the clicked one's background colour to blue and 
make the rest white) and then double click to open another window with the 
message in.

Individual emails in the list are generated using a repeater something like 
this:


  
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:
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:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Flex 2 Style Explorer (beta)

2006-03-14 Thread Peter Baird
Title: Re: [flexcoders] Flex 2 Style Explorer (beta)





So, by setting the borderStyle to none, you’re setting the borderStyle of the background to none as well, and if you’ve read this post: http://weblogs.macromedia.com/mc/archives/2005/10/round-cornered.cfm you’ll note that by setting the border to none, you loose the ability to set the cornerRadius.  So what you see happening is the header and footer are receiving the cornerRadius, but the background isn’t. 

Another way of achieving what you’re trying to do is to keep the borderStyle as solid, but set the borderThickness to 0... In effect no border, but now no little while corners. 

-Peter


On 3/14/06 11:59 AM, "João Fernandes" <[EMAIL PROTECTED]> wrote:

Hi there, 
 
A very nice job, I just want to make a remark, In the panel option if you set alpha = 1 so you can use highlight alphas, if you set border style = none you can see a small white corner. Is this supposed to happen?
 
Regards,
 

João Fernandes
Sistemas de Informação
Programador Informático
Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel (+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]  





From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter Baird
Sent: terça-feira, 14 de Março de 2006 16:38
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2 Style Explorer (beta)
 
Just wanted to let you that Flex 2 Style Explorer (beta) is available for download.  The usual beta caveats apply.

Read more here:

http://weblogs.macromedia.com/mc/archives/2006/03/flex_2_style_ex.cfm


/ \®   PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe Consulting | Adobe Systems, Inc
8/  /8\  \8    275 Grove St. Newton, MA
/  /888\  \    Office: 617.219.2126 | Cell: 617.803.6804
  \8\   AIM: pbaird00 | Y!IM: pbaird00




--
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 


 
  Web site design development      Computer software development      Software design and development      
  Macromedia flex      Software development best practice         
 



YAHOO! GROUPS LINKS 


 
 Visit your group "flexcoders  " on the web.
   
 To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]  
   
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service  . 
 


--
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 
  
  Web site design development     Computer software development     Software design and development     
  Macromedia flex     Software development best practice   
 
 
 YAHOO! GROUPS LINKS 

 Visit your group "flexcoders  " on the web.
  
 To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]  
  
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service  . 

 



/ \®   PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe Consulting | Adobe Systems, Inc
8/  /8\  \8    275 Grove St. Newton, MA
/  /888\  \    Office: 617.219.2126 | Cell: 617.803.6804
  \8\   AIM: pbaird00 | Y!IM: pbaird00









--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Flex 2 Style Explorer (beta)

2006-03-14 Thread Peter Baird
Title: Re: [flexcoders] Flex 2 Style Explorer (beta)





Thanks.  Yeah, One of my pet-peeves is when I get emails that have “attachments” that are just part of the signature. ... So I figured I’d get the logo in there while sparing all my recipients the attachment. 

Glad you enjoyed it. :-)

-peter 




On 3/14/06 11:58 AM, "Ryan Stewart" <[EMAIL PROTECTED]> wrote:

Peter,

 

This is totally off-topic, but your signature is very, very cool.

 

-Ryan




From: Peter Baird[mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 14, 2006 4:38 PM -08:00
To: flexcoders@yahoogroups.com [EMAIL PROTECTED]
Subject: [flexcoders] Flex 2 Style Explorer (beta)

Just wanted to let you that Flex 2 Style Explorer (beta) is available for download.  The usual beta caveats apply.

Read more here:

http://weblogs.macromedia.com/mc/archives/2006/03/flex_2_style_ex.cfm


/ \®   PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe Consulting | Adobe Systems, Inc
8/  /8\  \8    275 Grove St. Newton, MA
/  /888\  \    Office: 617.219.2126 | Cell: 617.803.6804
  \8\   AIM: pbaird00 | Y!IM: pbaird00




--
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 
Web site design development   Computer software development   Software design and development   
Macromedia flex   Software development best practice   
YAHOO! GROUPS LINKS 

 Visit your group "flexcoders  " on the web.
  
 To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]  
  
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service  . 




Organize. Communicate. Share. @ www.goowy.com  


--
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 
  
  Web site design development     Computer software development     Software design and development     
  Macromedia flex     Software development best practice   
 
 
 YAHOO! GROUPS LINKS 

 Visit your group "flexcoders  " on the web.
  
 To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]  
  
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service  . 

 



/ \®   PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe Consulting | Adobe Systems, Inc
8/  /8\  \8    275 Grove St. Newton, MA
/  /888\  \    Office: 617.219.2126 | Cell: 617.803.6804
  \8\   AIM: pbaird00 | Y!IM: pbaird00









--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Re: Named Webservices

2006-03-14 Thread Rich Tretola
Have you tried this:

"Note:  If you wish to use a named service within FlexBuilder (non FES
application) you will need to add an argument to your Flex Compiler
arguments under the project properties:
mxmlc --services=./mypath/to/flex-enterprise-services.xml etc"

Rich

On 3/14/06, Jeremy Rottman <[EMAIL PROTECTED]> wrote:
> Thing is I am not using FES. I am using the standard version of Flex.
> Does this have any bearing on being able to use named webservices?
>
> --- In flexcoders@yahoogroups.com, "Rich Tretola" <[EMAIL PROTECTED]> wrote:
> >
> > Try this:
> >
> http://www.everythingflex.com/blog/1/2006/03/WebService-setup-for-FES.cfm
> >
> > Rich
> >
> > On 3/14/06, Jeremy Rottman <[EMAIL PROTECTED]> wrote:
> > > During development, I used something like this to handle all data
> > > sending/retreiving.
> > >
> > >  > > wsdl="http://flex.homesmartagent.com/cfc/adminHS2F.cfc?wsdl";
> > > showBusyCursor="true" />
> > >
> > > Currently I develope on one box, and I upload the compiled swf to
> > > anohter box that contains our cf/sql servers. How can I setup a named
> > > webservice with in flex.
> > >
> > > any help will be greatly appreciated.
> > >
> > >
> > >
> > >
> > >
> > >
> > > --
> > > 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
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> >
>
>
>
>
>
>
> --
> 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
>
>
>
>
>
>
>


--
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:
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:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Flex 2 Style Explorer (beta)

2006-03-14 Thread Michael Schmalle



Ryan,

I was just about to say the same thing! :)

Peace, MikeOn 3/14/06, Ryan Stewart <[EMAIL PROTECTED]> wrote:


Peter,

 

This is totally off-topic, but your signature is very, very cool.

 

-Ryan









From: Peter Baird[mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 14, 2006 4:38 PM -08:00To: flexcoders@yahoogroups.com [
flexcoders@yahoogroups.com]Subject: [flexcoders] Flex 2 Style Explorer (beta)
Just wanted to let you that Flex 2 Style Explorer (beta) is available for download.  The usual beta caveats apply.Read more here:
http://weblogs.macromedia.com/mc/archives/2006/03/flex_2_style_ex.cfm
/ \
®   PETER BAIRD888/   \888    User Experience Consultant88/  /  \88    Adobe Consulting | Adobe Systems, Inc
8/  /8\  \8    275 Grove St. Newton, MA/  /888\  \    Office: 617.219.2126 | Cell: 617.803.6804  \8\   AIM: pbaird00 | Y!IM: pbaird00
--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com 

SPONSORED LINKS 








Web site design development 


Computer software development 


Software design and development 




Macromedia flex 


Software development best practice 





YAHOO! GROUPS LINKS 



 Visit your group "flexcoders" on the web.  

 To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED]  

 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 






Organize. Communicate. Share. @ 
www.goowy.com





--
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
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  







-- What goes up, does come down.






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Flex2 : MP3 Audio player, play problem...

2006-03-14 Thread Benoit Hediard
Thanks for the tip.
I made some research to find out the supported bit rates of the Flash
Player.
I did not find anything on the adobe/macromedia site, but I found this:
http://www.draftlight.net/dnex/mp3player/mp3format.php
 
It looks like variable bit rate (VBR) are not well supported but constant
bit rate are ok.
We have some MP3s encoded at 137kbps and at 320Kbps working with Flex2/Flash
Player 8.5.
So apparently, there is no bit rate limitation.
 
Any official word on this from the Adobe team?
I suppose that those problems are related to the alpha status of the player
8.5.
I will check with beta2 when it is released.
 
Benoit Hediard
 
PS: on the other side, FLV playback works great!

  _  

De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la
part de Philippe Maegerman
Envoyé : mardi 14 mars 2006 13:04
À : flexcoders@yahoogroups.com
Objet : RE : [flexcoders] Flex2 : MP3 Audio player, play problem...


I remember reading in the flash 7 doc that the flash player can't read mp3s
encoded at higher rate than 140K.
 
Philippe

  _  

De: flexcoders@yahoogroups.com de la part de Benoit Hediard
Date: lun. 3/13/2006 16:12
À: flexcoders@yahoogroups.com
Objet : RE: [flexcoders] Flex2 : MP3 Audio player, play problem...


No, I've not tried to do the AS example without Flex involved.
It looks like the problem is not coming from flex but from the MP3 files or
a buggy MP3 support in the 8.5 player.
With some MP3 files, it works, with others it doesn't...
But the MP3 files have been encoded directly from a CD with iTunes, so I
don't understand.

I've put online a (pretty buggy and unfinished) Flex2 audio player here
(with view source option) :
http://www.benorama.com/music/AudioPlayer.html

You can try different uploaded MP3s :
- AdamF.mp3 (encoded with iTunes), the song plays but the sound is cut all
the time, ID3 are not detected, when the load is complete, it stops the song
(channel soundComplete event mixed with sound load complete event?)...
- Unknown.mp3, this one works (no ID3 on this one),
- Herbaliser.mp3, this one does not play at all (immediate channel
soundComplete event), ID3 are loaded at the end of the load,
- CYHSY.mp3 (encoded with iTunes), this one does not play at all (immediate
channel soundComplete event), ID3 are not detected.

I can play all those songs with iTunes or Window Media Player without any
problem.

Other bugs :
- the pause does not work, it looks like sound.play(position) does not take
the "position" argument into account,
- when using the audio player inside another app, the loading/play progress
does not work at all.
The load progress bytesTotal does not have a fix value, it is growing all
the time...

Has anyone successfully built a MP3 audio player with Flex2 beta1?

This week, next step: a FLV video player... ;)

Benoit Hediard

-Message d'origine-
De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la
part de Matt Chotin
Envoyé : dimanche 12 mars 2006 22:17
À : flexcoders@yahoogroups.com
Objet : RE: [flexcoders] Flex2 : MP3 Audio player, play problem...

Have you tried doing the AS example without Flex involved?  Based on
everything I can see I think it looks OK.  

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Benoit Hediard
Sent: Friday, March 10, 2006 11:51 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex2 : MP3 Audio player, play problem...

I'm currently trying to build a very basic MP3 audio player with Flex2,
based on the SoundChannel code example.
The MP3 file is successfully loaded, ID3 tags are available, length is > 0.
But when I press play I've got immediatly the soundComplete event.
What's wrong here?

I've tried with several MP3, same problem...


http://www.macromedia.com/2005/mxml";
  creationComplete="onCreationComplete()">
  
  

  
  
  
  


Benoit Hediard




--
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








--
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











--
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 
Web
 site design development Computer


[flexcoders] Re: Named Webservices

2006-03-14 Thread Jeremy Rottman
Thing is I am not using FES. I am using the standard version of Flex.
Does this have any bearing on being able to use named webservices?

--- In flexcoders@yahoogroups.com, "Rich Tretola" <[EMAIL PROTECTED]> wrote:
>
> Try this:
>
http://www.everythingflex.com/blog/1/2006/03/WebService-setup-for-FES.cfm
> 
> Rich
> 
> On 3/14/06, Jeremy Rottman <[EMAIL PROTECTED]> wrote:
> > During development, I used something like this to handle all data
> > sending/retreiving.
> >
> >  > wsdl="http://flex.homesmartagent.com/cfc/adminHS2F.cfc?wsdl";
> > showBusyCursor="true" />
> >
> > Currently I develope on one box, and I upload the compiled swf to
> > anohter box that contains our cf/sql servers. How can I setup a named
> > webservice with in flex.
> >
> > any help will be greatly appreciated.
> >
> >
> >
> >
> >
> >
> > --
> > 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
> >
> >
> >
> >
> >
> >
> >
>






--
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:
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:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Named Webservices

2006-03-14 Thread Rich Tretola
Try this:
http://www.everythingflex.com/blog/1/2006/03/WebService-setup-for-FES.cfm

Rich

On 3/14/06, Jeremy Rottman <[EMAIL PROTECTED]> wrote:
> During development, I used something like this to handle all data
> sending/retreiving.
>
>  wsdl="http://flex.homesmartagent.com/cfc/adminHS2F.cfc?wsdl";
> showBusyCursor="true" />
>
> Currently I develope on one box, and I upload the compiled swf to
> anohter box that contains our cf/sql servers. How can I setup a named
> webservice with in flex.
>
> any help will be greatly appreciated.
>
>
>
>
>
>
> --
> 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
>
>
>
>
>
>
>


--
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:
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:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: Named Webservices

2006-03-14 Thread t_msreddy



See the sample code in flex-config.mxml below.
---
    
 
        client
 
            {context.root}/flashproxy            {context.root}/flashproxy            false        false
 
                        http://{localserver}/*    https://{localserver}/*            
 
             false     {context.root}/EmployeeWS.jws?wsdl        {context.root}/EmployeeWS.jws                         false     {context.root}/services/ProjectWS?wsdl        {context.root}/services/ProjectWS              
 
    
 
    
 
---
 
--- In flexcoders@yahoogroups.com, "Jeremy Rottman" <[EMAIL PROTECTED]> wrote:>> During development, I used something like this to handle all data> sending/retreiving.> > > wsdl="http://flex.homesmartagent.com/cfc/adminHS2F.cfc?wsdl"> showBusyCursor="true" />> > Currently I develope on one box, and I upload the compiled swf to> anohter box that contains our cf/sql servers. How can I setup a named> webservice with in flex.> > any help will be greatly appreciated.>






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Flex 2 Style Explorer (beta)

2006-03-14 Thread João Fernandes
Title: Flex 2 Style Explorer (beta)










Hi
there, 

 

A very nice job, I just want to make a remark, In the panel option
if you set alpha = 1 so you can use highlight alphas, if you set border style =
none you can see a small white corner. Is this supposed to happen?

 

Regards,

 



João Fernandes
Sistemas
de Informação

Programador Informático
Cofina media

Avenida
João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel
(+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]











From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Peter Baird
Sent: terça-feira, 14 de Março de 2006 16:38
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2 Style Explorer (beta)



 

Just wanted to let you that Flex 2 Style Explorer
(beta) is available for download.  The usual beta caveats apply.

Read more here:

http://weblogs.macromedia.com/mc/archives/2006/03/flex_2_style_ex.cfm


/
\®   PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe
Consulting | Adobe Systems, Inc
8/  /8\  \8    275
Grove St. Newton, MA
/  /888\  \    Office:
617.219.2126 | Cell: 617.803.6804
  \8\
  AIM: pbaird00 | Y!IM: pbaird00




--
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 




 
  
  Web
  site design development 
  
  
  Computer
  software development 
  
  
  Software
  design and development 
  
 
 
  
  Macromedia
  flex 
  
  
  Software
  development best practice 
  
  
   
  
 


 







YAHOO! GROUPS LINKS 

 


  Visit
 your group "flexcoders"
 on the web.
   
  To
 unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]
   
  Your
 use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
 


 















--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Flex 2 Style Explorer (beta)

2006-03-14 Thread Ryan Stewart


Peter,

 

This is totally off-topic, but your signature is very, very cool.

 

-Ryan

From: Peter Baird[mailto:[EMAIL PROTECTED]Sent: Tuesday, March 14, 2006 4:38 PM -08:00To: flexcoders@yahoogroups.com [EMAIL PROTECTED]Subject: [flexcoders] Flex 2 Style Explorer (beta)Just wanted to let you that Flex 2 Style Explorer (beta) is available for download.  The usual beta caveats apply.Read more here:http://weblogs.macromedia.com/mc/archives/2006/03/flex_2_style_ex.cfm/ \®   PETER BAIRD888/   \888    User Experience Consultant88/  /  \88    Adobe Consulting | Adobe Systems, Inc8/  /8\  \8    275 Grove St. Newton, MA/  /888\  \    Office: 617.219.2126 | Cell: 617.803.6804  \8\   AIM: pbaird00 | Y!IM: pbaird00--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 

SPONSORED LINKS Web site design development 

Computer software development 

Software design and development Macromedia flex 

Software development best practice 

YAHOO! GROUPS LINKS  Visit your group "flexcoders" on the web.  

 To unsubscribe from this group, send an email to: [EMAIL PROTECTED]  

 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 

Organize. Communicate. Share. @ www.goowy.com





--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  








[flexcoders] Flex 2 Style Explorer (beta)

2006-03-14 Thread Peter Baird
Title: Flex 2 Style Explorer (beta)





Just wanted to let you that Flex 2 Style Explorer (beta) is available for download.  The usual beta caveats apply.

Read more here:

http://weblogs.macromedia.com/mc/archives/2006/03/flex_2_style_ex.cfm


/ \®   PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe Consulting | Adobe Systems, Inc
8/  /8\  \8    275 Grove St. Newton, MA
/  /888\  \    Office: 617.219.2126 | Cell: 617.803.6804
  \8\   AIM: pbaird00 | Y!IM: pbaird00









--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Problem with datagrid, e4x data, and checkbox cellrenderer. Flex (2.0 b1)

2006-03-14 Thread Jason Hawryluk





Thanks Manish! It did the trick, I was not aware that boolean was 
treated that way. Good to know ;)
 
jason

  -Message d'origine-De : 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part 
  de Manish JethaniEnvoyé : mardi 14 mars 2006 
  13:54À : flexcoders@yahoogroups.comObjet : Re: 
  [flexcoders] Problem with datagrid, e4x data, and checkbox cellrenderer. Flex 
  (2.0 b1)On 3/14/06, Jason Hawryluk 
  <[EMAIL PROTECTED]> wrote:> You  mean basicly i have it 
  right. Perhaps we do not have the same doc's cause "rendererIsEditor" does not 
  exist  in mine. Perhaps you meant "isCellEditor="true"" wich 
  is[snip]Yes, that's the one.  Sorry I didn't notice you were 
  already using it.> The  prblem is not editing as the code I 
  posted does work and it does update the  source, however, On load of the 
  data into the grid the checkbox is always set to  true iregardless of the 
  source data.Okay, so here's the problem: the property value is a 
  string, and anon-empty string when coerced to a boolean value is always 
  true.    
  private function test():void  
    {  
      var s:String = 
  "false";    
    var b:Boolean = 
  s;    
    trace(b); // 
  true    
    b = "";  
      trace(b); // 
  false    
    b = "0";  
      trace(b); // 
  true    
  }So you really need to check for the string "true" here.  I'm 
  using aninline cell renderer to achieve the result:  
    
    
      
  I'm really not sure 
  that this is a bug.  I think it's somethingapplication developers 
  need to be aware of about the AS3 language andhandle it in their 
  code.Manish





--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Named Webservices

2006-03-14 Thread Jeremy Rottman
During development, I used something like this to handle all data
sending/retreiving.

http://flex.homesmartagent.com/cfc/adminHS2F.cfc?wsdl";
showBusyCursor="true" />

Currently I develope on one box, and I upload the compiled swf to
anohter box that contains our cf/sql servers. How can I setup a named
webservice with in flex.

any help will be greatly appreciated.






--
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:
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:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Re: Google, Yahoo hooked on AJAX?

2006-03-14 Thread dos dedos



The Flex/Flash company I was referring to (that was purchased recently by Google) is called MeasureMap (http://measuremap.com/)  I had read about it on some blog a while ago that said it was based on Flex, but they don't have any demos yet (which would make sense if it's based on Flex 2)It's great to know that Yahoo is already working with Flex. I didn't know that. That was the second piece of evidence needed before concluding that Google, Yahoo and others have no issues incorporating Flex into their strategy. This conclusion is further supported by the recent announcement of the AJAX-Flex bridge.I have no doubt now that Google, Yahoo and others have already started working with Flex.Kevin Ewok <[EMAIL PROTECTED]> wrote: Is it just me or doesn't Google seem like the type of company
 that would not want to get involved with third party products such as Adobe and Flex. I would think they would never use Flex.  --- In flexcoders@yahoogroups.com, "Michael Schmalle"  <[EMAIL PROTECTED]> wrote: > > Figure of speech... ;-) >  > First you boild the water, > then you add the pudding mix & milk, > then you stir with love, > then you let simmer, > then you refirgerate for half a day, > then it taste mmm mm good. >  > But, it wans't pudding to begin with, only if you read the directions first. > :) >  > Peace, Mike >  > On 3/13/06, dos dedos <[EMAIL PROTECTED]> wrote: > > > > Usable pudding? > > > > > > *Michael Schmalle <[EMAIL PROTECTED]>* wrote: > > > > I think it will be 'the proof is in the pudding'. > > > > BTW, isn't it
 the actual developers like us that make a technology seen > > and be competitive ? :) It's all in the implementation, meaning, users are > > conditioned to what they see and if they see usable flex2 apps in a year, > > paradigm shift happens. > > > > Peace, Mike > > > > On 3/13/06, dos dedos <[EMAIL PROTECTED]> wrote: > > > > > >  I agree re: no envangelism > > > > > > However, it's very helpful for some of of us to understand the context > > > and not just the content of what we're getting into. :) > > > > > > > > > > > > *Nick Weekes <[EMAIL PROTECTED]>* wrote: > > > > > > personally id rather not see a technology evangelism debate appear on > > > this forum, thats a little OT for my liking. > > > > >
 >  -- > > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > > > Behalf Of *Jignesh Dodiya > > > *Sent:* 13 March 2006 18:17 > > > *To:* flexcoders@yahoogroups.com > > > *Subject:* Re: [flexcoders] Google, Yahoo hooked on AJAX? > > > > > >  Jesse has really a mature idea on this.. > > > Don't u think, this forum can be more fruitfull if anybody from Adobe do > > > share his/her idea on this forum. Afterall its their duty to make people > > > encourage to use flex over AJAX, and the community always likes to hear Flex > > > expert's comment on such intensive topic? > > > > > > > > > > > > On 3/13/06, dos dedos < [EMAIL PROTECTED]> wrote: > > > > > >
 > > << > > > >  Yahoo has a lot of efforts in regards to Flex & Flash, you just > > > > probably haven't read about them, is all, or they didn't get as widely > > > > publicized. > > > > >> > > > > > > > > That's what I wanted to find out ... thanks for pointing it out!!! > > > > > > > > > > > > *JesterXL < [EMAIL PROTECTED] >* wrote: > > > > > > > > AJAX is here, works, has a large community, is an old technology and > > > > thus has a plethora of resources.  Flex 2 isn't publicy out yet in an > > > > official capacity and Flex 1.5's price point excludes a lot of those > > > > types of endeavors. > > > > > > > > Yahoo uses both; they are a big company.  Yahoo Maps utilized
 Flex 1.5. > > > > They should of used Flash Player 8's bitmap features so it wasn't the best > > > > use of Flex, but it at least got us on the radar.  They are also > > > > experiementing with updating some of the Java games to Flash. > > > > > > > > Again, neither Google nor Yahoo can utilize Flex 2 because even if > > > > they did, no one could see it. Flash Player 8.5 is beta, not publicly > > > > available, and you have to download the entire Flex 2 package just to get it > > > > (which is a good thing). > > > > > > > > Yahoo has a lot of efforts in regards to Flex & Flash, you just > > > > probably haven't read about them, is all, or they didn't get as widely > > > > publicized. > > > > > > > > Bottom line, AJAX is here, has been
 for awhile, and works.  Flex 2 > > > > isn't even out yet.  Sparkle's awesome, but you don't see people, even > > > > Microsoft, creating Sparkle apps. > > > > > > > > > > > >  - Original Message - *From: * dos dedos > > > > <[EMAIL PROTECTED]> > > > > *To:* flexcoders@yahoogroups.com > > > > *Sent:* Monday, March 13, 2006 12:24 PM > > > > *Subject:* [flexcoders] Google, Yahoo hooked on AJAX? > > > > > > > > > > > > > > > > Google has purchased at least one company that uses Flash or Flex (a > > > > Web analytics startup) but their own internal efforts seem to be

[flexcoders] Re: referencing a datamodel from another component

2006-03-14 Thread t_msreddy
I am not sure if i understand you right, but there is something 
called "parentDocument" which allows you to access parentDocuments 
objects
Main

   
   
 
wrote:
>
> I am recently starting to work with datamodels in flex 1.5 and am 
> having a bit of a time trying to pass data around my application. 
I 
> figured I would use a data model using a model tag within comp#1. 
I 
> will need comp#2 to access and display this data. However I cannot 
> seem to get comp#2 to see comp#1's datamodel. Instead I get 
> a "changes to unknown property, comp#1Model, will not be detected".
> 
> In comp#2 I have text="{comp#1Model.userFirstName}"
> 
> 
> This is my directory strucuture:
> 
> main.mxml
> >comp directory
> comp#1.mxml
> comp#2.mxml
> 
> If there is possibly a better approach to passing data around 
within 
> an app I am open to suggestions.
> 
> Thanks
>







--
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:
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:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Re: Google, Yahoo hooked on AJAX?

2006-03-14 Thread Clint Modien



I actually saw a job posting for google the other day on hotjobs that had macromedia flex experience as a plus.  I'm sure they're using it.On 3/14/06, 
Kevin Ewok <[EMAIL PROTECTED]> wrote:
Is it just me or doesn't Google seem like the type of company thatwould not want to get involved with third party products such as Adobeand Flex. I would think they would never use Flex.--- In 
flexcoders@yahoogroups.com, "Michael Schmalle"<[EMAIL PROTECTED]> wrote:>> Figure of speech... ;-)>> First you boild the water,> then you add the pudding mix & milk,
> then you stir with love,> then you let simmer,> then you refirgerate for half a day,> then it taste mmm mm good.>> But, it wans't pudding to begin with, only if you read the
directions first.> :)>> Peace, Mike>> On 3/13/06, dos dedos <[EMAIL PROTECTED]> wrote:> >> > Usable pudding?> >> >> > *Michael Schmalle <
[EMAIL PROTECTED]>* wrote:> >> > I think it will be 'the proof is in the pudding'.> >> > BTW, isn't it the actual developers like us that make a technologyseen> > and be competitive ? :) It's all in the implementation, meaning,
users are> > conditioned to what they see and if they see usable flex2 apps ina year,> > paradigm shift happens.> >> > Peace, Mike> >> > On 3/13/06, dos dedos <[EMAIL PROTECTED]> wrote:
> > >> > >  I agree re: no envangelism> > >> > > However, it's very helpful for some of of us to understand thecontext> > > and not just the content of what we're getting into. :)
> > >> > >> > >> > > *Nick Weekes <[EMAIL PROTECTED]>* wrote:> > >> > > personally id rather not see a technology evangelism debateappear on
> > > this forum, thats a little OT for my liking.> > >> > >  --> > > *From:* flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com] *On> > > Behalf Of *Jignesh Dodiya> > > *Sent:* 13 March 2006 18:17> > > *To:* 
flexcoders@yahoogroups.com> > > *Subject:* Re: [flexcoders] Google, Yahoo hooked on AJAX?> > >> > >  Jesse has really a mature idea on this..> > > Don't u think, this forum can be more fruitfull if anybody from
Adobe do> > > share his/her idea on this forum. Afterall its their duty tomake people> > > encourage to use flex over AJAX, and the community always likesto hear Flex> > > expert's comment on such intensive topic?
> > >> > >> > >> > > On 3/13/06, dos dedos < [EMAIL PROTECTED]> wrote:> > > >> > > > <<> > > >  Yahoo has a lot of efforts in regards to Flex & Flash, you just
> > > > probably haven't read about them, is all, or they didn't getas widely> > > > publicized.> > > > >>> > > >> > > > That's what I wanted to find out ... thanks for pointing it out!!!
> > > >> > > >> > > > *JesterXL < [EMAIL PROTECTED] >* wrote:> > > >> > > > AJAX is here, works, has a large community, is an oldtechnology and
> > > > thus has a plethora of resources.  Flex 2 isn't publicy outyet in an> > > > official capacity and Flex 1.5's price point excludes a lot ofthose> > > > types of endeavors.
> > > >> > > > Yahoo uses both; they are a big company.  Yahoo Maps utilizedFlex 1.5.> > > > They should of used Flash Player 8's bitmap features so itwasn't the best
> > > > use of Flex, but it at least got us on the radar.  They are also> > > > experiementing with updating some of the Java games to Flash.> > > >> > > > Again, neither Google nor Yahoo can utilize Flex 2 because even if
> > > > they did, no one could see it. Flash Player 8.5 is beta, notpublicly> > > > available, and you have to download the entire Flex 2 packagejust to get it> > > > (which is a good thing).
> > > >> > > > Yahoo has a lot of efforts in regards to Flex & Flash, you just> > > > probably haven't read about them, is all, or they didn't getas widely> > > > publicized.
> > > >> > > > Bottom line, AJAX is here, has been for awhile, and works.  Flex 2> > > > isn't even out yet.  Sparkle's awesome, but you don't seepeople, even> > > > Microsoft, creating Sparkle apps.
> > > >> > > >> > > >  - Original Message - *From: * dos dedos> > > > <[EMAIL PROTECTED]>> > > > *To:* 
flexcoders@yahoogroups.com> > > > *Sent:* Monday, March 13, 2006 12:24 PM> > > > *Subject:* [flexcoders] Google, Yahoo hooked on AJAX?> > > >> > > >> > > >
> > > > Google has purchased at least one company that uses Flash orFlex (a> > > > Web analytics startup) but their own internal efforts seem tobe always> > > > focused on AJAX ... 
e.g. the latest Google Mars(http://www.google.com/mars/> > > > )> > > >> > > > So it's fair to wonder why Google isn't doing more with Flex
at this> > > > time ... and why Flickr (Yahoo) moved from Flash to AJAX ...especially> > > > given the fact that Flex 2 has a lot going for it fromtechnical and> > > > end-user perspectives.
> > > >> > > > Attitudes change over time and new technologies take a whileto adopt,> > > > but it'd be nice to understand whether or not Google, Yahooand others are
> > > > consciously resisting Flex based on some non-technical reason(e.g.> > > > the fact that Flex is a proprietary platfo

[flexcoders] referencing a datamodel from another component

2006-03-14 Thread rgwilson26
I am recently starting to work with datamodels in flex 1.5 and am 
having a bit of a time trying to pass data around my application. I 
figured I would use a data model using a model tag within comp#1. I 
will need comp#2 to access and display this data. However I cannot 
seem to get comp#2 to see comp#1's datamodel. Instead I get 
a "changes to unknown property, comp#1Model, will not be detected".

In comp#2 I have text="{comp#1Model.userFirstName}"


This is my directory strucuture:

main.mxml
>comp directory
comp#1.mxml
comp#2.mxml

If there is possibly a better approach to passing data around within 
an app I am open to suggestions.

Thanks





--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: rowIndex & columnIndex while rendering in Flex 2.0

2006-03-14 Thread t_msreddy
I have the same problem. I need to know rowIndex and columnIndex to 
populate values in cellrenderer (Please see the code for both 
below). Also I get the error:
--
ReferenceError: Error #1069: Property text not found on WeekHoursCR 
and there
 is no default value
at 
mx.controls::DataGrid/mx.controls:DataGrid::cellEditorCellEndEditH
andler()
at flash.events::EventDispatcher/dispatchEvent()
at mx.controls::DataGrid/endEdit()
at mx.controls::DataGrid/deactivateHandler()
--

Here is the Datagrid code:
--








-
This is my Cellrenderer (WeekHourCR.mxml):
-

http://www.macromedia.com/2005/mxml"; width="100%" 
height="100%" horizontalGap="0" verticalAlign="top" >



-










--- In flexcoders@yahoogroups.com, "Dustin Mercer" <[EMAIL PROTECTED]> 
wrote:
>
> Another way is to cast the list data to DataGridListData I.E.
> 
> DataGridListData(listData).rowIndex 
> or
> DataGridListData(listData).coulmnIndex
> 
> Dustin Mercer
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Manish Jethani
> Sent: Friday, March 10, 2006 1:51 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] rowIndex & columnIndex while rendering 
in Flex 2.0
> 
> On 3/10/06, stchavan <[EMAIL PROTECTED]> wrote:
> 
> > In Flex 2.0, we can get rowIndex and columnIndex for a datagrid 
cell,
> > when it is being edited, by using event.rowIndex and 
event.columnIndex
> > (where event is a DataGridEvent like cellBeginEdit, cellEndEdit 
etc.)
> > Similarly, how can we retrieve the rowIndex and columnIndex, 
when a
> > cell is being rendered for the first time?
> 
>  ListBase(listData.owner).getItemIndices()
> 
> I'm not sure it's a public, documented method in Beta 1 (or even 
Beta
> 2), but it's the one to use basically.
> 
> Manish
> 
> 
> --
> 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
>







--
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:
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:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: Google, Yahoo hooked on AJAX?

2006-03-14 Thread Kevin Ewok
Is it just me or doesn't Google seem like the type of company that
would not want to get involved with third party products such as Adobe
and Flex. I would think they would never use Flex.

--- In flexcoders@yahoogroups.com, "Michael Schmalle" 
<[EMAIL PROTECTED]> wrote:
>
> Figure of speech... ;-)
> 
> First you boild the water,
> then you add the pudding mix & milk,
> then you stir with love,
> then you let simmer,
> then you refirgerate for half a day,
> then it taste mmm mm good.
> 
> But, it wans't pudding to begin with, only if you read the
directions first.
> :)
> 
> Peace, Mike
> 
> On 3/13/06, dos dedos <[EMAIL PROTECTED]> wrote:
> >
> > Usable pudding?
> >
> >
> > *Michael Schmalle <[EMAIL PROTECTED]>* wrote:
> >
> > I think it will be 'the proof is in the pudding'.
> >
> > BTW, isn't it the actual developers like us that make a technology
seen
> > and be competitive ? :) It's all in the implementation, meaning,
users are
> > conditioned to what they see and if they see usable flex2 apps in
a year,
> > paradigm shift happens.
> >
> > Peace, Mike
> >
> > On 3/13/06, dos dedos <[EMAIL PROTECTED]> wrote:
> > >
> > >  I agree re: no envangelism
> > >
> > > However, it's very helpful for some of of us to understand the
context
> > > and not just the content of what we're getting into. :)
> > >
> > >
> > >
> > > *Nick Weekes <[EMAIL PROTECTED]>* wrote:
> > >
> > > personally id rather not see a technology evangelism debate
appear on
> > > this forum, thats a little OT for my liking.
> > >
> > >  --
> > > *From:* flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] *On
> > > Behalf Of *Jignesh Dodiya
> > > *Sent:* 13 March 2006 18:17
> > > *To:* flexcoders@yahoogroups.com
> > > *Subject:* Re: [flexcoders] Google, Yahoo hooked on AJAX?
> > >
> > >  Jesse has really a mature idea on this..
> > > Don't u think, this forum can be more fruitfull if anybody from
Adobe do
> > > share his/her idea on this forum. Afterall its their duty to
make people
> > > encourage to use flex over AJAX, and the community always likes
to hear Flex
> > > expert's comment on such intensive topic?
> > >
> > >
> > >
> > > On 3/13/06, dos dedos < [EMAIL PROTECTED]> wrote:
> > > >
> > > > <<
> > > >  Yahoo has a lot of efforts in regards to Flex & Flash, you just
> > > > probably haven't read about them, is all, or they didn't get
as widely
> > > > publicized.
> > > > >>
> > > >
> > > > That's what I wanted to find out ... thanks for pointing it out!!!
> > > >
> > > >
> > > > *JesterXL < [EMAIL PROTECTED] >* wrote:
> > > >
> > > > AJAX is here, works, has a large community, is an old
technology and
> > > > thus has a plethora of resources.  Flex 2 isn't publicy out
yet in an
> > > > official capacity and Flex 1.5's price point excludes a lot of
those
> > > > types of endeavors.
> > > >
> > > > Yahoo uses both; they are a big company.  Yahoo Maps utilized
Flex 1.5.
> > > > They should of used Flash Player 8's bitmap features so it
wasn't the best
> > > > use of Flex, but it at least got us on the radar.  They are also
> > > > experiementing with updating some of the Java games to Flash.
> > > >
> > > > Again, neither Google nor Yahoo can utilize Flex 2 because even if
> > > > they did, no one could see it. Flash Player 8.5 is beta, not
publicly
> > > > available, and you have to download the entire Flex 2 package
just to get it
> > > > (which is a good thing).
> > > >
> > > > Yahoo has a lot of efforts in regards to Flex & Flash, you just
> > > > probably haven't read about them, is all, or they didn't get
as widely
> > > > publicized.
> > > >
> > > > Bottom line, AJAX is here, has been for awhile, and works.  Flex 2
> > > > isn't even out yet.  Sparkle's awesome, but you don't see
people, even
> > > > Microsoft, creating Sparkle apps.
> > > >
> > > >
> > > >  - Original Message - *From: * dos dedos
> > > > <[EMAIL PROTECTED]>
> > > > *To:* flexcoders@yahoogroups.com
> > > > *Sent:* Monday, March 13, 2006 12:24 PM
> > > > *Subject:* [flexcoders] Google, Yahoo hooked on AJAX?
> > > >
> > > >
> > > >
> > > > Google has purchased at least one company that uses Flash or
Flex (a
> > > > Web analytics startup) but their own internal efforts seem to
be always
> > > > focused on AJAX ... e.g. the latest Google Mars
(http://www.google.com/mars/
> > > > )
> > > >
> > > > So it's fair to wonder why Google isn't doing more with Flex
at this
> > > > time ... and why Flickr (Yahoo) moved from Flash to AJAX ...
especially
> > > > given the fact that Flex 2 has a lot going for it from
technical and
> > > > end-user perspectives.
> > > >
> > > > Attitudes change over time and new technologies take a while
to adopt,
> > > > but it'd be nice to understand whether or not Google, Yahoo
and others are
> > > > consciously resisting Flex based on some non-technical reason
(e.g.
> > > > the fact that Flex is a proprietary platform whereas AJAX is not.)
> > > >
> > > > Google's and Yahoo's position d

RE: SPAM-LOW: [flexcoders] FES & .Net

2006-03-14 Thread Jonathan Miranda












You’d have to buy the Flash Remoting
Gateway for .Net

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Philippe Maegerman
Sent: Tuesday, March 14, 2006 5:15
AM
To: flexcoders@yahoogroups.com
Subject: RE : SPAM-LOW:
[flexcoders] FES & .Net



 



I think BlueDragon doesn't support flash remoting.





 





Philippe















De: flexcoders@yahoogroups.com de la part de Clarke
Bishop
Date: lun. 3/13/2006 22:21
À: flexcoders@yahoogroups.com
Objet : RE: SPAM-LOW: [flexcoders]
FES & .Net





Do you know about Blue Dragon? The
language is CFML and it can run on top of .Net just like CF runs on top of
Java. This might help you with your migration!

 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Battershall, Jeff
Sent: Monday, March 13, 2006 10:54
AM
To: flexcoders@yahoogroups.com
Subject: SPAM-LOW: [flexcoders] FES & .Net

Our entire website
infrastructure, after being on Java/CF shop for
years, is now going to be ported over to .Net.

I've got existing Flex apps built against a CFC
back end, which I was
planning to port to Flex2, leveraging FES and the CF Adapter.  

So, my question is how Flex Enterprise Services
can be integrated with
.Net, and if anyone has any experience with this.

Jeff Battershall
Application Architect
Dow Jones Indexes
[EMAIL PROTECTED]
(609) 520-5637 (p)
(484) 477-9900 (c)


--
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 




 
  
  Web
  site design development 
  
  
  Computer
  software development 
  
  
  Software
  design and development 
  
 
 
  
  Macromedia
  flex 
  
  
  Software
  development best practice 
  
  
   
  
 


 







YAHOO!
GROUPS LINKS


 


  Visit your group
 "flexcoders"
 on the web.
   
  To unsubscribe
 from this group, send an email to:
  [EMAIL PROTECTED]
   
  Your use of
 Yahoo! Groups is subject to the Yahoo!
 Terms of Service. 


 







 











--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Flex 2: ColdFusion Updater Install Issues with FES

2006-03-14 Thread Dave Carabetta
I've been trying to avoid using this list for install support, but
I've tried the Labs Forums, two blogs, and another flex2dev mailing
list that I don't think works anymore, so I'm out of options...

I'm trying to get the Flex/ColdFusion Connectivity installer available
on the Labs site (cf_flexconnect_b1_0123_en.exe) to run, and I'm
constantly hung up on the first step after selecting the "Multiserver"
option where it asks where ColdFusion MX 7 is located. The default
path listed is C:\JRun4. My install is at D:\JRun4. I changed it to
that but I got this: "The specified directory D:\JRun4 does not
contain a valid JRun root directory." and I cannot continue. I then
add one directory at a time all the way down to my ColdFusion MX 7
instance (through the /WEB-INF/cfusion directory, and through my
/CFIDE directory) and I get the same exact error, except with the
added directories listed.

Does the installer not work with a path other than C:\JRun4 or
something? The forums are getting next to no traffic in the relevant
categories, and even fewer responses at that. I really want to dig
into FES with ColdFusion, but it won't work if I can't get this
installed.

Anybody have any thoughts? I'm desperate.

Regards,
Dave.


--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Re: How to implement custom drawing for selected list items?

2006-03-14 Thread Stephen Gilson
Hi Tobias,

There are a few examples in doc for implementing an interface in MXML.
You can find one in the "Creating Advanced MXML Components" chapter of
the "Creating and Extending Flex Components" book, and another in the
"Working with Cell Editors" in the "Developing Flex Applications" book.

Both books are available here:
http://labs.macromedia.com/wiki/index.php/Flex:Release_Notes#Beta_1_docu
mentation

Stephen

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of tobiaspatton
Sent: Monday, March 13, 2006 11:30 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: How to implement custom drawing for selected
list items?

Hi Manish.

I never knew about the "implements" tag for MXML components. It seems
obvious now, but I never saw it mentioned in documentation or example
code.

My custom selection behavior is mostly working now. I've got one anomaly
that I need to track down. If it starts looking like a bug, I'll post a
follow-up.

Thanks again for your help. It's nice to have a mailing list with
representatives from Adobe that are so repsonsive.

Tobias.

--- In flexcoders@yahoogroups.com, "Manish Jethani" 
<[EMAIL PROTECTED]> wrote:
>
> On 3/11/06, tobiaspatton <[EMAIL PROTECTED]> wrote:
> 
> > I take this to mean that my VBox-based list item renderer should 
> > implement this interface,  but I don't know how to accomplish
this.
> > If my component were an AS file, it would be simple. But how can
an
> > MXML component implement an interface?
> 
> Simply use the "implements" attribute:
> 
> 
>  ...
> 
> 
> Or you can just reference the DataGrid directly from your item 
> renderer's code (there's no need to implement this interface).
> 
> Manish
>






--
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



 




--
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:
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:
http://docs.yahoo.com/info/terms/
 





[flexcoders] style for any row on datagrid

2006-03-14 Thread breakneck79
Hi,
i want to define a style name that get from httpservice on xml format
to a row of datagrid,how i can do this?
thanks

xml code is :



sty1
Fbszfgtnsry7 5  5e5 j5j kjujrfjdjyuju
14 Mar 19:28:05
4 KB


sty2
fvadfv
14 Mar 12:11:01
3 KB

 

and my mxml file in brif is :




{folderslist.selectedItem.name}



















--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] coloring the tree

2006-03-14 Thread sinacapho
Dear all, 
   is there any method that can coloring different color in
different node in the tree? is that anything set style for the node?
thx
capho





--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Plz give solution to below error find Urgent?????

2006-03-14 Thread anil thakur








 

 

 

Hi Sir

 When I starting my flex builder
then I find this error I not know the solution plz help me in this….

 



  

 

 

 

 

Regards

Anil kumar
[EMAIL PROTECTED]
Software Engineer , Software Division
Vanguard Info-Solutions Limited
78, JIL Tower-II, Sector-18,
Gurgaon-122001 (INDIA)

 





-- "The information in this e-mail is the property of VanGuard Info-Solution Ltd. and may be confidential and privileged. It is intended solely for the addressee. Access to this email by anyone else is unauthorised. If you are not the intended recipient, any disclosure, copying, distribution or any action taken in reliance on it is prohibited and may be unlawful. If you receive this message in error, please notify the sender immediately & forward a copy of this e-mail to [EMAIL PROTECTED] .An E-mail reply to this address may be subject to interception or monitoring for operational reasons or for lawful business practices .This e-mail and any attachments has been scanned for the presence of computer viruses.Vanguard accept no responsibility for computer viruses once e-mail has been transmitted" -- 


extension deleted
Description: extension deleted


Re: [flexcoders] Flex2 :: Component-Inheriting Styles :: Help

2006-03-14 Thread Michael Schmalle



Hi Manish,

I understand what you wrote, I guess my question is more about the implementation of getStyle().

If you have a sub component that needs to access 'sizerThickness', and
it's a composited component that stands on it's own as a 'component',
should I declare that style on the Host component.

AHHH, this is to complicated to explain. 

Basically it's like RectBorder. All containers use a border compositied
inside themselves. How do you set up RectBorder to correctly get a
borderStyle style from it's parent? THis is basically my problem. 

Also, the getStyle method is called each time(for now) setActualSize()
is called within the sub component. THis why I am saying the
styleChanged() method really is irrelivent to my case other than if it
actually sets the prop on the child. Does it do that?

Peace, MikeOn 3/14/06, Manish Jethani <[EMAIL PROTECTED]> wrote:




On 3/14/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:

>  Lets say we have Component and SubComponent(composite inside Component, queued in Component.allChildrensList).
>
>  1) SubComponent uses getStyle("sizerThickness")
>
>  How do I get this to where you call
Component.setStyle("sizerThickness") and through inheriting this style,
SubComponent can use it's getStyle("sizerThickenss") when the Component
gets it's setStyle() called?
[snip]

If the style is an inheriting style, the `styleChanged` method of all
descendants will get called.  That's where you can call
`invalidateDisplayList` (which will lead to a call to
`updateDisplayList` by the framework).

Manish







--
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
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  










-- What goes up, does come down.






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Problem with datagrid, e4x data, and checkbox cellrenderer. Flex (2.0 b1)

2006-03-14 Thread Manish Jethani
On 3/14/06, Jason Hawryluk <[EMAIL PROTECTED]> wrote:

> You  mean basicly i have it right. Perhaps we do not have the same doc's 
> cause "rendererIsEditor" does not exist  in mine. Perhaps you meant 
> "isCellEditor="true"" wich is
[snip]

Yes, that's the one.  Sorry I didn't notice you were already using it.

> The  prblem is not editing as the code I posted does work and it does update 
> the  source, however, On load of the data into the grid the checkbox is 
> always set to  true iregardless of the source data.

Okay, so here's the problem: the property value is a string, and a
non-empty string when coerced to a boolean value is always true.

private function test():void
{
var s:String = "false";
var b:Boolean = s;
trace(b); // true

b = "";
trace(b); // false

b = "0";
trace(b); // true
}

So you really need to check for the string "true" here.  I'm using an
inline cell renderer to achieve the result:

  
 
 
 
 

I'm really not sure that this is a bug.  I think it's something
application developers need to be aware of about the AS3 language and
handle it in their code.

Manish


--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE : SPAM-LOW: [flexcoders] FES & .Net

2006-03-14 Thread Philippe Maegerman
I think BlueDragon doesn't support flash remoting.
 
Philippe



De: flexcoders@yahoogroups.com de la part de Clarke Bishop
Date: lun. 3/13/2006 22:21
À: flexcoders@yahoogroups.com
Objet : RE: SPAM-LOW: [flexcoders] FES & .Net


Do you know about Blue Dragon? The language is CFML and it can run on top of 
.Net just like CF runs on top of Java. This might help you with your migration!



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Battershall, Jeff
Sent: Monday, March 13, 2006 10:54 AM
To: flexcoders@yahoogroups.com
Subject: SPAM-LOW: [flexcoders] FES & .Net


Our entire website infrastructure, after being on Java/CF shop for
years, is now going to be ported over to .Net.

I've got existing Flex apps built against a CFC back end, which I was
planning to port to Flex2, leveraging FES and the CF Adapter.  

So, my question is how Flex Enterprise Services can be integrated with
.Net, and if anyone has any experience with this.

Jeff Battershall
Application Architect
Dow Jones Indexes
[EMAIL PROTECTED]
(609) 520-5637 (p)
(484) 477-9900 (c)


--
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 
Web site design development 

 Computer software development 

 Software design and development 

 
Macromedia flex 

 Software development best practice 

   



YAHOO! GROUPS LINKS 



*Visit your group "flexcoders 
 " on the web.
  
*To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]  
  
*Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
 . 






--
**STATEMENT OF CONFIDENTIALITY** 

This e-mail and any attached files are confidential and intended solely for the 
use of the individual to whom it is addressed. If you have received this email 
in error please send it back to the person that sent it to you. Any views or 
opinions presented are solely those of author and do not necessarily represent 
those the Emakina Company. Unauthorized publication, use, dissemination, 
forwarding, printing or copying of this email and its associated attachments is 
strictly prohibited.

We also inform you that we have checked that this message does not contain any 
virus but we decline any responsability in case of any damage caused by an a 
non detected virus.
--



--
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:
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:
http://docs.yahoo.com/info/terms/
 
<>

[flexcoders] Re: Capture events a la the underlying transparent window from PopUpManager

2006-03-14 Thread dopenhagen
Hi Everybody,

If its a hack, workaround or the way its suppose to work does not 
matter as I have found a solution that works.

Just as the documentation for the PopUpManager suggests, the solution 
is to put a independent layer underneath the layer containing the 
components and then disable this layer. This disabling will 
eventually intercept all user input and discard them as it is 
disabled.

Thanks anyways for the help everybody.

Cheers,
Pedro

--- In flexcoders@yahoogroups.com, "dopenhagen" <[EMAIL PROTECTED]> 
wrote:
>
> Hi Everybody,
> 
> Thanks for your help.
> However, before I raise the white flag I jsut want to make I am not 
> missing anything...
> 
> Excempt from the documentation for the UIObject mouseDown event:
> 
> "...The event will only be broadcast by the component if the mouse 
is 
> not also over a child of the component that has a mouseDown 
listener, 
> or the component is not obscured by another component with a 
> mouseDown listener..."
> 
> They way I interpret that is that it should not propagate if
> there is a handler registered?
> 
> Please let me know if I am minunderstanding anyting ?
> 
> Best regards,
> Pedro
> 
> --- In flexcoders@yahoogroups.com, "Gordon Smith"  wrote:
> >
> > Like Manish, I'm also rusty now on 1.5, but my recollection is 
the 
> same:
> > Setting event.bubbles = false in your Panel's mouseDown handler 
> should
> > prevent it from bubbling up the parent chain.
> > 
> > And if this doesn't work and we can't figure out how to prevent 
the
> > bubbling, then you could put protection code in the ancestors' 
mouse
> > handlers to check whether event.target is what you expect it to 
be.
> > 
> > In Flex 2.0, you can use event.stopPropagation() or
> > event.stopImmediatePropagation() to prevent the bubbling. The 
> difference
> > is that stopPropagation() will allow the remaining handlers on 
the 
> same
> > object to execute.
> > 
> > - Gordon
> > 
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On
> > Behalf Of Manish Jethani
> > Sent: Monday, March 13, 2006 8:09 AM
> > To: flexcoders@yahoogroups.com
> > Subject: Re: [flexcoders] Re: Capture events a la the underlying
> > transparent window from PopUpManager
> > 
> > On 3/13/06, dopenhagen  wrote:
> > 
> > > Sorry, no - its actually the opposite I am trying to achieve. 
> Where
> > the
> > > underlying layers do not recieve the event.
> > >
> > > Part of my MXML:
> > >
> > >  > [snip]
> > 
> > > mouseDown="this.shoppingcartViewHelper.onMouseDown
(event)"
> > [snip]
> > 
> > > The questions is how do I get this panel to capture all mouse-
> events
> > > and NOT bubble them on to the lower layers?
> > 
> > Sorry, I really don't remember how this worked in Flex 1.5, but 
can
> > you try setting event.bubbles to false (in the mouseDown handler)?
> > 
> > Manish
> > 
> > 
> > --
> > 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
> >
>






--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE : [flexcoders] Flex2 : MP3 Audio player, play p roblem...

2006-03-14 Thread Philippe Maegerman
I remember reading in the flash 7 doc that the flash player can't read mp3s 
encoded at higher rate than 140K.
 
Philippe



De: flexcoders@yahoogroups.com de la part de Benoit Hediard
Date: lun. 3/13/2006 16:12
À: flexcoders@yahoogroups.com
Objet : RE: [flexcoders] Flex2 : MP3 Audio player, play problem...


No, I've not tried to do the AS example without Flex involved.
It looks like the problem is not coming from flex but from the MP3 files or
a buggy MP3 support in the 8.5 player.
With some MP3 files, it works, with others it doesn't...
But the MP3 files have been encoded directly from a CD with iTunes, so I
don't understand.

I've put online a (pretty buggy and unfinished) Flex2 audio player here
(with view source option) :
http://www.benorama.com/music/AudioPlayer.html

You can try different uploaded MP3s :
- AdamF.mp3 (encoded with iTunes), the song plays but the sound is cut all
the time, ID3 are not detected, when the load is complete, it stops the song
(channel soundComplete event mixed with sound load complete event?)...
- Unknown.mp3, this one works (no ID3 on this one),
- Herbaliser.mp3, this one does not play at all (immediate channel
soundComplete event), ID3 are loaded at the end of the load,
- CYHSY.mp3 (encoded with iTunes), this one does not play at all (immediate
channel soundComplete event), ID3 are not detected.

I can play all those songs with iTunes or Window Media Player without any
problem.

Other bugs :
- the pause does not work, it looks like sound.play(position) does not take
the "position" argument into account,
- when using the audio player inside another app, the loading/play progress
does not work at all.
The load progress bytesTotal does not have a fix value, it is growing all
the time...

Has anyone successfully built a MP3 audio player with Flex2 beta1?

This week, next step: a FLV video player... ;)

Benoit Hediard

-Message d'origine-
De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la
part de Matt Chotin
Envoyé : dimanche 12 mars 2006 22:17
À : flexcoders@yahoogroups.com
Objet : RE: [flexcoders] Flex2 : MP3 Audio player, play problem...

Have you tried doing the AS example without Flex involved?  Based on
everything I can see I think it looks OK.  

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Benoit Hediard
Sent: Friday, March 10, 2006 11:51 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex2 : MP3 Audio player, play problem...

I'm currently trying to build a very basic MP3 audio player with Flex2,
based on the SoundChannel code example.
The MP3 file is successfully loaded, ID3 tags are available, length is > 0.
But when I press play I've got immediatly the soundComplete event.
What's wrong here?

I've tried with several MP3, same problem...


http://www.macromedia.com/2005/mxml";
  creationComplete="onCreationComplete()">
  
  

  
  
  
  


Benoit Hediard




--
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








--
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











--
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 
Web site design development 

 Computer software development 

 Software design and development 

 
Macromedia flex 

 Software development best practice 


[flexcoders] Re: Capture events a la the underlying transparent window from PopUpManager

2006-03-14 Thread dopenhagen
Hi Everybody,

Thanks for your help.
However, before I raise the white flag I jsut want to make I am not 
missing anything...

Excempt from the documentation for the UIObject mouseDown event:

"...The event will only be broadcast by the component if the mouse is 
not also over a child of the component that has a mouseDown listener, 
or the component is not obscured by another component with a 
mouseDown listener..."

They way I interpret that is that it should not propagate if
there is a handler registered?

Please let me know if I am minunderstanding anyting ?

Best regards,
Pedro

--- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote:
>
> Like Manish, I'm also rusty now on 1.5, but my recollection is the 
same:
> Setting event.bubbles = false in your Panel's mouseDown handler 
should
> prevent it from bubbling up the parent chain.
> 
> And if this doesn't work and we can't figure out how to prevent the
> bubbling, then you could put protection code in the ancestors' mouse
> handlers to check whether event.target is what you expect it to be.
> 
> In Flex 2.0, you can use event.stopPropagation() or
> event.stopImmediatePropagation() to prevent the bubbling. The 
difference
> is that stopPropagation() will allow the remaining handlers on the 
same
> object to execute.
> 
> - Gordon
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Manish Jethani
> Sent: Monday, March 13, 2006 8:09 AM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Re: Capture events a la the underlying
> transparent window from PopUpManager
> 
> On 3/13/06, dopenhagen <[EMAIL PROTECTED]> wrote:
> 
> > Sorry, no - its actually the opposite I am trying to achieve. 
Where
> the
> > underlying layers do not recieve the event.
> >
> > Part of my MXML:
> >
> >  [snip]
> 
> > mouseDown="this.shoppingcartViewHelper.onMouseDown(event)"
> [snip]
> 
> > The questions is how do I get this panel to capture all mouse-
events
> > and NOT bubble them on to the lower layers?
> 
> Sorry, I really don't remember how this worked in Flex 1.5, but can
> you try setting event.bubbles to false (in the mouseDown handler)?
> 
> Manish
> 
> 
> --
> 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
>






--
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:
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Problem with datagrid, e4x data, and checkbox cellrenderer. Flex (2.0 b1)

2006-03-14 Thread Jason Hawryluk





You 
mean basicly i have it right. Perhaps we do not have the same doc's cause "rendererIsEditor" does not exist 
in mine. Perhaps you meant "isCellEditor="true"" wich is described in the 
docs as being the property to set in order to allow a cell renderer to also 
allow editing. I am now convinced that this problem is due to incomplete 
functionality of the flex 2.0 beta 1. I imagine that the data binding and 
datasource code for e4x is not quite up to snuff in beta 1.
 
The 
prblem is not editing as the code I posted does work and it does update the 
source, however, On load of the data into the grid the checkbox is always set to 
true iregardless of the source data.
 
Jason

  -Message d'origine-De : 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part 
  de Manish JethaniEnvoyé : mardi 14 mars 2006 
  11:26À : flexcoders@yahoogroups.comObjet : Re: 
  [flexcoders] Problem with datagrid, e4x data, and checkbox cellrenderer. Flex 
  (2.0 b1)On 3/13/06, Jason Hawryluk 
  <[EMAIL PROTECTED]> wrote:> Here  is a little example to show 
  the problem. Run the below and click one of the  check boxes (no 
  updates). Is the data source (in this case the xml var) not  supposed to 
  update here?[snip]>   >    
  columnName="active">    
  isCellEditor="true">    
  cellRenderer="mx.controls.CheckBox"  editorProperty="selected"  
  />CheckBox is being set as the *renderer*, not the *editor*.  
  So it onlyrenders the data, it does not update the data source.  
  There's anotherproperty that can be set to say that the renderer is also 
  the editor. I don't know what it's called in Beta 1, but, in my current 
  bleedingedge internal build, it's called `rendererIsEditor` (false|true). 
  Look up the docs.Manish





--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Populating a Repeater from a ComboBox

2006-03-14 Thread Manish Jethani
On 3/13/06, nahruka <[EMAIL PROTECTED]> wrote:

> I'm trying to populate a Repeater with an XMLListCollection depending on the 
> selected index in a ComboBox. Although cmbAny.selectedIndex changes as I 
> select different values from the ComboBox, the DataProvider remains the same, 
> as if cmbAny.selectedIndex = 0.

>  dataProvider="{new 
> XMLListCollection(lclasseXML.any_academic[cmbAny.selectedIndex].assignatura)}"
>  >
[snip]

That should work: the combo box should fire a "change" event, which
should then trigger data binding.  Anyway - I don't have time to dig
into this.  Your other option is to listen for the "change" event on
the combo box and reset the repeater's data provider in the handler.

Manish


--
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:
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:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Problem with datagrid, e4x data, and checkbox cellrenderer. Flex (2.0 b1)

2006-03-14 Thread Manish Jethani
On 3/13/06, Jason Hawryluk <[EMAIL PROTECTED]> wrote:

> Here  is a little example to show the problem. Run the below and click one of 
> the  check boxes (no updates). Is the data source (in this case the xml var) 
> not  supposed to update here?

[snip]
>   columnName="active"
>isCellEditor="true"
>cellRenderer="mx.controls.CheckBox"  editorProperty="selected"  />

CheckBox is being set as the *renderer*, not the *editor*.  So it only
renders the data, it does not update the data source.  There's another
property that can be set to say that the renderer is also the editor. 
I don't know what it's called in Beta 1, but, in my current bleeding
edge internal build, it's called `rendererIsEditor` (false|true). 
Look up the docs.

Manish


--
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:
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:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Flex2 :: Component-Inheriting Styles :: Help

2006-03-14 Thread Manish Jethani
On 3/14/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:

>  Lets say we have Component and SubComponent(composite inside Component, 
> queued in Component.allChildrensList).
>
>  1) SubComponent uses getStyle("sizerThickness")
>
>  How do I get this to where you call Component.setStyle("sizerThickness") and 
> through inheriting this style, SubComponent can use it's 
> getStyle("sizerThickenss") when the Component gets it's setStyle() called?
[snip]

If the style is an inheriting style, the `styleChanged` method of all
descendants will get called.  That's where you can call
`invalidateDisplayList` (which will lead to a call to
`updateDisplayList` by the framework).

Manish


--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] XMLEncoder Question [Flex 2.0 b1]

2006-03-14 Thread sourcecoderia
Any one know where i can find more info or examples on the XMLEncoder? 
Or has anyone used this yet for encoding objects to xml ?

Samples, pointers, idea?

Thanks

Jason





--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Skin Radiobutton - Flex 1.5

2006-03-14 Thread Tansht
Hi, there
I'd like to skin the radiobuton using the symbol I created in the 
swf of Flash MX 2004. The following steps are what I've done:
1. Create a movie
2. Create 4 movie clip symbols for radio button
3. Export swf file into the folder where mxml file is located. 
4. Add Script into mxml file. 
5. Add initialize() in the RadioButton control. 

However, the symbol doesn't appear. 

Thanks in advance for your help

Cheers
David

Attached code:

http://www.macromedia.com/2003/mxml";>
















--
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:
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:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Error when i try to get information from a dataservice to populate my datagrid

2006-03-14 Thread mbordallo



Hi, i'm trying to create a dataservice to conect a database with my datagrid, but i get this errorError: Item requested at index 0 was null and should not have been. Error for service 'usuario'	at mx.data::DataList/http://www.macromedia.com/2005/flex/mx/internal::requestItemAt()	at mx.data::DataList/getItemAt()	at mx.collections::ListCollectionView/getItemAt()	at mx.collections::ListCollectionViewCursor/seek()	at mx.controls.listclasses::ListBase/modelChanged()	at mx.controls::DataGrid/modelChanged()	at flash.events::EventDispatcher/dispatchEvent()	at mx.collections::ListCollectionView/dispatchEvent()	at mx.collections::ListCollectionView/http://www.macromedia.com/2005/flex/mx/internal::reset()	at mx.collections::ListCollectionView/mx.collections:ListCollectionView::listChangeHandler()	at flash.events::EventDispatcher/dispatchEvent()	at mx.data::DataList/http://www.macromedia.com/2005/flex/mx/internal::processSequenceResult()	at C:\dev\enterprise_beta1\frameworks\mx\data\errors\DataServiceError.as$34::DataListRequestResponder/result()	at mx.rpc::AsyncRequest/acknowledge()	at C:\dev\enterprise_beta1\frameworks\libs\framework.swc(mx/core/mx_internal)$35::NetConnectionMessageResponder/result()I'm using:Windows XP servicepack 2Mozilla Firefox 1.5 (i've also tryed ie, but i get the same error)Flex 2.0 beta 1Flex Enterprise Services 2.0 beta 1Flash Player 8.5 Alpha 3 (build 211)
ListaUsuarios.mxmlimport mx.collections.ArrayCollection;	import mx.data.DataService;		public var ds:DataService;		[Bindable]		public var usuarios:ArrayCollection;		public function initApp()		{    usuarios = new ArrayCollection();    ds = new DataService("usuario");    ds.fill(usuarios);		}	
flex-data-service.xmlusuario">    idusuario"/>0usuarios.UsuarioAssemblertrueloadUsuarios
UsuarioAssembler.javapackage usuarios;import java.util.List;public class UsuarioAssembler{	public List loadUsuarios()	{		UsuarioDAO dao = new UsuarioDAO();		return dao.getUsuarios();	}}UsuarioDAO.javapackage usuarios;import java.sql.Connection;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import java.util.ArrayList;import java.util.List;public class UsuarioDAO{	public List getUsuarios() throws DAOException	{		ArrayList list = new ArrayList();		Connection c = null;		try		{			c = ConexionBD.getConexion();			Statement s = c.createStatement();			ResultSet rs = s.executeQuery("SELECT * FROM alumnos ORDER BY nombre");			Usuario usuario;			while (rs.next())			{usuario = new Usuario();usuario.setIdUsuario(rs.getString("id_usuario"));usuario.setPassword(rs.getString("password"));usuario.setNombre(rs.getString("nombre"));list.add(usuario);			}		}		catch (SQLException e)		{			e.printStackTrace();			throw new DAOException(e);		}		finally		{			ConexionBD.cerrarConexion(c);		}		return list;	}}Everything in java works correctly, but when i try to call it from flex doesn't work.If anybody can help me, i will be very pleased.Thanks in advance.--Manuel Bordallo[EMAIL PROTECTED]






--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] enumerable instance properties

2006-03-14 Thread Alisdair Mills


thanks describeType does the job perfectly :)On 14 Mar 2006, at 02:15, Gordon Smith wrote:  In AS3, only dynamic properties show up in for-in loops, and there is no 'enumerable' attribute.  However, you can use the flash.util.describeType() method to discover the public properties and methods of a non-dynamic class.  - Gordon   -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alisdair Mills Sent: Monday, March 13, 2006 2:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] enumerable instance properties  Hi,  I am trying to use a for in loop to access instance properties in AS3   but it isn't finding any so I have a value object  public class VO {   public var foo : String ; }  then if I pass an instance of this and try and access it's   properties  for ( var prop : String in myVO ) {   trace ( prop + " = " + myVO[ prop ] ) ; }  ... it finds nothing. but if i do this...  trace ( myVO.foo ) ;  ... it will output the value no problem.  Is there some way of marking instance properties as enumerable?  Thanks in advance for any help it is driving me nuts :(  cheers, Al   -- 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   -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comSPONSORED LINKS  Web site design development  Computer software development  Software design and development  Macromedia flex  Software development best practice YAHOO! GROUPS LINKS  Visit your group "flexcoders" on the web.    To unsubscribe from this group, send an email to: [EMAIL PROTECTED]    Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 





--
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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.