[flexcoders] Sync changes from textArea.htmlText to textArea.text? validateNow()?

2006-09-22 Thread Jeff Kroll





According to 
the Adobe® Flex™ 2 Language Reference for Class TextArea, one is supposed to 
call validateNow() on a textArea to sync up the htmlText and text properties 
after programmatically setting one of them.This seems to not be 
working.I have a textArea in which I've initialized the htmlText 
property.
I have a function on this 
textArea that selects the whole word when the word is enclosed in curly 
braces and the user clicks on it. I then programmatically replace the textRange 
according to what the user wants to something with fewer characters and styled 
via htmlText. This is nicely reflected in the textArea. However, looks are deceiving, because if the user 
clicks on that same word again, the selection is offset by the difference in 
length between the old and new 
strings.I created a test 
button to call validateNow() on the textArea to force the 
htmlText property changes to get pushed to the text property, but 
it doesn't work.The only way I can currently force them to sync up is to 
manually click in the text area (anywhere 
outside of the special bracketed words) and type a junk character. After 
that, my auto selection function works correctly again, because the htmlText is 
now once again in sync with the text property, as it was in the starting 
condition.Any ideas how to get validateNow() to work as 
advertised?Cheers,Jeff 
__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: Problem connecting URL requests from different folders

2006-09-22 Thread davidtdinh
Well, my flex program isnt really running on a server at the moment. 
Just executing off my laptop.  The weird thing is that when I run it
from Flex Builder it accesses and transfers Data just fine.  but when
I try and run the swf from *any other* folder on my local machine, it
fails to retrieve data from the PHP server.  Is a cross domain.xml
needed even for laptop access?

David

--- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote:
>
> Almost certainly a security issue.  Do you have a crossdomain.xml file
> in the PHP server root?
> 
>  
> 
> Tracy
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of davidtdinh
> Sent: Friday, September 22, 2006 3:34 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Problem connecting URL requests from different
> folders
> 
>  
> 
> Im developing a project that uses data grabbed from an online PHP file
> which accesses a DB. When I run it from Flex Builer 2, works and runs
> perfectly. When I load the project HTML from the project's bin/
> folder, runs and works perfectly. However, when I copy the contents
> of the bin folder to another location on my computer (desktop) and try
> to run the project html, it fails silently.
> 
> I would like to deploy this project eventually, but in flash 8 I used
> to just zip up a swf and its html and distribute it that way. It
> doesnt seem to work in this fashion in flex. Can anyone point me in
> the right direction to solve this?
>










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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: Object of a specified type

2006-09-22 Thread Daniel
Thank you very much Gordon!
That one really worked :D

--- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote:
>
> The preferred way is to use the 'is' operator, which is new in AS3:
> 
>  
> 
> trace(str is String); // output is "true"
> 
>  
> 
> - Gordon
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Harish Sivaramakrishnan
> Sent: Monday, September 18, 2006 6:06 AM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Object of a specified type
> 
>  
> 
> use typeof to find the type of an object.
> 
> ex:
> 
> var str:String
> 
> trace(typeof(str) : prints "string"
> 
> Hope this helps
> Harish
> 
> On 9/18/06, Daniel <[EMAIL PROTECTED]  > wrote:
> 
> How can I konw if an object is an instance of a specified type, for
> example String.
> 
> Thx!
>










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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: private constructors in flex

2006-09-22 Thread John Kirby
Title: quote






But if your goal is to create a Singleton pattern...check this out:



Gordon Smith said the following:


  
  
  
  
  I'm afraid
that AS3 doesn't allow a
constructor to be private.
   
  - Gordon
   
  
  
  
  From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com] On Behalf Of pauland2513
  Sent: Friday,
September 22, 2006
4:29 PM
  To: [EMAIL PROTECTED]ups.com
  Subject: [flexcoders]
Re: private
constructors in flex
  
   
  
  
  
  --- In [EMAIL PROTECTED]ups.com,
"zenwarden" <[EMAIL PROTECTED]> wrote:
>
> Sometimes in Java I declare a constructor private ( I think this is
> called the nullington pattern). Ex: utility classes that have all
> static methods or constants.
> 
> 
> 
> Can and should the same thing be done in flex?
> 
> Chris
  
Yes, it's an OO design pattern not a Java specific one. I haven't
heard of the nullington pattern, but private constructors are used for
the Singleton pattern.
  
Paul
  
  
  

  
  



-- 


Whether you think that you can, or that you
can't, you are usually right.
 - Henry Ford 



__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___




[flexcoders] Re: Accordion UI Mods to a CF Wizard Generated App

2006-09-22 Thread rob_scio
Feel like a bit of a dope but I'm answering my own question (in case any
other newbies search on this topic)...

I set creationPolicy="all" and voila!  Accordions (or Tab Navigator)
form fields see all the data.

Don't know that this is the best way to handle this situation so I'll
take advice from experienced folks on that but for better or worse
creationPolicy="all" does the trick.


--- In flexcoders@yahoogroups.com, "rob_scio" <[EMAIL PROTECTED]> wrote:
>
> Stating up front that I am a newbie to Flex and Actionscript...
>
> I am using the CF wizard to generate a simple application (master form
> and a detail form).  I have modified the detail form so that the nine
> form fields I am displaying that the wizard is placing on the
> cfComponents:SizeableTitleWindow are broken out into three sections. 
I
> am using the Accordion control and there are three form fields in each
> of the three accordion sections.
>
> I am able to successfully add new data to my database using this
layout.
> However when I choose to edit an existing record (selected in the data
> grid of the master page) the detail page will only display the field
> data in the first accordion panel.  The form fields in the two other
> accordion panels do not display the data for the record being edited.
>
> Has anyone seen this issue at all (I did not see it on his board but
> that doesn't mean it is not here)?
>
> I feel like I am missing something basic and want to see what it may
be.
> Any and all help is greatly appreciated.
>
> Thanks,
> Rob
>









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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: Sample Flex 2 based email interface

2006-09-22 Thread James Polanco
I built one in 1.5 back when I was on the FlexBuilder team (which may
be what you saw Brendan) and I used the Flex server to communicate
with a POJO system that I wrote. I used the Java mail package to
access an IMAP server to handle access to the mail account and also
used this to access SMTP to send emails.

Its possible to do this without the server by using PHP and PEAR to
handle email management.  There is a package in PEAR that allows you
to access a SMTP client and then if you have the right information you
can send emails out.  I have used this package for an eCommerce site
to handle email automation and its pretty easy to set up and use.  All
you would need to do is either create a POST system or use AMF
(WebOrb, etc) to access the class and then send the email out.

With IMAP it gets a little more tricky figuring out what folders
exists, what has been read, etc.  I had most of that working in my
example using a tree for the folder structure and custom renders to
change what had unread mail and the count.  I would offer the code up,
but I don't have it any more...  sorry. :(

J.

--- In flexcoders@yahoogroups.com, "Douglas Knudsen"
<[EMAIL PROTECTED]> wrote:
>
> http://labs.jboss.com/portal/jbossmail/
> 
> DK
> 
> On 9/22/06, Brendan Meutzner <[EMAIL PROTECTED]> wrote:
> >
> > I think I remember seeing an example of this done in 1.5... damned
if I
> > remember where though...  It wasn't a full on solution, but was a good
> > example... I'm pretty sure it was something that Macromedia had
done...
> >
> > Sorry :(
> >
> > Brendan
> >
> > On 9/22/06, Tracy Spratt <[EMAIL PROTECTED]> wrote:
> > >
> > >You can do simple mailto style links in flex natively, but I
don't
> > > think that is what you want.
> > >
> > >
> > >
> > > You will need a server-side app that does the actual mail
creation and
> > > send.  Flex would make a fine front end for that.
> > >
> > >
> > >
> > > Tracy
> > >
> > >
> > >  --
> > >
> > > *From:* [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED]
ups.com]
> > > *On Behalf Of *P Smith
> > > *Sent:* Friday, September 22, 2006 3:17 PM
> > > *To:* flexcoders@yahoogroups.com
> > > *Subject:* [flexcoders] Sample Flex 2 based email interface
> > >
> > >
> > >
> > > I need to create a Flex 2 based interface for email.  Is anyone
aware of
> > > any examples?
> > >
> > > If not in Flex 2, maybe Flex 1.5?  (or if not that, then maybe even
> > > Flash?)
> > >
> > > My initial requirement is for a send email interface, ideally with a
> > > limited email address book.
> > >
> > > The closest I have seen is
LaszloMail.combut  a) they don't
provide the source, b) the syntax would be LZX and not
> > > MXML anyway.
> > >
> > > Pete
> > >
> > >
> > >
> > >  __
> > > Do You Yahoo!?
> > > Tired of spam? Yahoo! Mail has the best spam protection around
> > > http://mail.yahoo.com
> > >
> > >
> > 
> >
> 
> 
> 
> -- 
> Douglas Knudsen
> http://www.cubicleman.com
> this is my signature, like it?
>









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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: FDS and web service.

2006-09-22 Thread Matt Chotin












This feels like you don’t have your
services-config set up correctly, or maybe you need a context-root argument
when you compile?

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of secolaha
Sent: Wednesday, September 20,
2006 5:41 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: FDS and
web service.



 








It turns out that the error only occurs if I run it from within
FlexBuilder. The main difference beeing that the file is called as

http://192.168.1.163/flex/bin/FilterBuilder.html

if I point the browser straight at the mxml file at 
http://192.168.1.163/flex/FilterBuilder/FilterBuilder.mxml
it work like charm. I guess this is good news, but I would really like
to get this running through the Builder so I can debug etc.

Am i missing some setup in FlexBuilder?

> Hi again, Thanks for the link.
> I tried it and are now getting the following error.
> faultcode Client.error.MessgaeSend
> faultDetail: "Unable to load WSDL. If currently online, please 
> verify the URI and/or format of the WSDL(null)"
> 
> the URI I supply works fine if I open it in a browser, so I suspect 
> that there is somethng else missing in my setup. 
> After browsing the archive I added a crossbrowser.xml file with 
> 
> from domain="*" />
> 
> as the content in the web-root. 
> 
> Has anyone seen this before?
> 
> regards,
> 
> /Lars
> 
> > Try this:
> > http://www.everythingflex.com/blog/1/2006/03/WebService-setup-for-
> FES.cfm






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] BTW - moderator settings

2006-09-22 Thread carl_steinhilber

Seems I'm set to continually require moderator approval on my posts.
Can someone fix this for me please?

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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: private constructors in flex

2006-09-22 Thread davidtdinh
Since everything in Flex gets generated into AS3 when you compile,  I
dont believe so.

I dont think AS3 allows for private or protected constructors.



--- In flexcoders@yahoogroups.com, "zenwarden" <[EMAIL PROTECTED]> wrote:
>
> Sometimes in Java I declare a constructor private ( I think this is
> called the nullington pattern). Ex: utility classes that have all
> static methods or constants.
> 
> 
> 
> Can and should the same thing be done in flex?
> 
> 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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Changing the background color of a datagrid row

2006-09-22 Thread carl_steinhilber
I'm setting the dataProvider of a DataGrid to an ArrayCollection (of
Objects).

If the value of a given field of a given row is a particular value, I
want to change the row of the DataGrid to red, say.

I already have a labelFunction on the DataGridColumn for something else.

And Brandon Purcell tells me that setting the background color of a
row is fairly easy:

   dg.setPropertiesAt(rowNum, {backgroundColor:0xFF});

Is it possible to determine the row number of the row that a
labelFunction is currently affecting, so that I could also do a
setPropertiesAt() and pass it said row number?

In other words... I have

  
  
  
  
  

and my formatDate function wants to look like:

  public function
formatDate(columnData:Object,columnDef:DataGridColumn):String
  {
 dg.setPropertiesAt(whateverRowThisIs, {backgroundColor:0xFF});
 DateDisplay.format(columnData.date);
  }

Anyone know how to determine "whateverRowThisIs"?

Or do I really need to use a itemRenderer? That seems like overkill to
just change the background color.

Any help would be appreciated.

Thanks!
-Carl









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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: tabbing in flex

2006-09-22 Thread Dustin Mercer












Yeah, this one was a bit annoying…
Here is what I had to do to get it working. I had to set the tabChilden
property to true in your custom component, override the setFocus method, and
implement the IFocusManagerComponent interface.  This is only if your
component is a pure AS component.  I found the mxml components tabbed
fine.  One side note:  There still seems to be some really weird
tabbing issues when tabbing out of the component.  Sometimes when you tab
out of the component, it tabs back to the beginning of the form.  Just
some weird things, I didn’t have a chance to trace it down though. 
I’ll see if I can get some time to fix that.  I included the source
to a time picker component that I built If you need something to reference
(it’s not perfect, but it should illustrate the solution).

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of khelonium
Sent: Thursday, September 21, 2006
8:04 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: tabbing
in flex



 







I have the same problem and don't have a solution yet.
If I extend the UIComponent , shouldn't all the focus aspects work by
default? The documentation specifies that focus is enabled by
default. But it doesn't . If I try to use setFocus in a mouse event ,
focusEvents are not received by my component. Is there something that
I must do and it is not specified in the documentation to have
focusing work(mouse click , tab ,focus events)? Thank you.

--- In [EMAIL PROTECTED]ups.com,
"b0b0bb0b" ...> wrote:
>
> well there are two things, one is a controlBar with buttons in it, 
> and when tabbed the first button will be highlighted then it will 
> just move onto the next text box in the VBox rather than the other 
> buttons in the controlBar. I haven't implented the below, so I was 
> just using the default settings. I then tried telling flex to make 
> them all true but the program tabbed in the same way.
> 
> 
> The other custom component is a mxml file that contains a dateField 
> and a text box. this get skiped altoghter when tabbing.
> 
> thanks
> 
> 
> 
> 
> 
> --- In [EMAIL PROTECTED]ups.com,
"JesterXL"  wrote:
> >
> > Does it extend UIComponent (or a sub-class)? Does it implment:
> > 
> > tabChildren = false;
> > tabEnabled = true;
> > focusEnabled = true;
> > 
> > ???
> > 
> > - Original Message - 
> > From: "b0b0bb0b" >
> > To: <[EMAIL PROTECTED]ups.com>
> > Sent: Friday, July 21, 2006 10:04 AM
> > Subject: [flexcoders] tabbing in flex
> > 
> > 
> > if I have a Vbox with say 10 items in it. from buttons to text 
> boxes, 
> > as well as a custom component which I've extended. then when the 
> app 
> > loads I tab my way through the app which works fine until it comes 
> to 
> > the custom component. it has a tabIndex like the rest of the 
> buttons 
> > and text boxes, but it never recieves focus if you tab. the focus 
> moves 
> > straight to the next non-custom component.
> > Any ideas how to get around this.
> > cheers. I'm using flex 1.5
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > --
> > 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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






TimeChooser.as
Description: TimeChooser.as


RE: [flexcoders] private constructors in flex

2006-09-22 Thread Karl Johnson





As far as I know, it is not possible to declare a private 
constructor in AS 3. 
Karl


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of 
zenwardenSent: Friday, September 22, 2006 10:54 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] private constructors 
in flex


Sometimes in Java I declare a constructor private ( I think this iscalled 
the nullington pattern). Ex: utility classes that have allstatic methods or 
constants.Can and should the same thing be done in 
flex?Chris
__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Sample Flex 2 based email interface

2006-09-22 Thread P Smith



Thank you all who responded.And Douglas, thank you very much!  The link for the JBoss Mail Server is brilliant!  A Flex 2 UI on the Mail Server portion of an open source Collaboration Server!And the Flex 2 UI was coded by Adobe's own James Ward!  And using the Cairngorm framework for Flex 2!It looks like both James and the project's lead committer, Andrew C. Oliver, will be presenting next month at the Ajax World Conference with Andrew specifically presenting on a "Case Study: The JBoss Flex-based Mail Client".If anyone has succeeded in downloading the source on this project
 please post back?  I tried this evening with no success.  When I can get this up and running I will post back with more observations.PeteDouglas Knudsen <[EMAIL PROTECTED]> wrote:http://labs.jboss.com/portal/jbossmail/DKOn 9/22/06, Brendan Meutzner <  [EMAIL PROTECTED]> wrote:I  think I remember seeing an example of this done in 1.5... damned if I  remember where though...  It wasn't a full on solution, but was a  good example... I'm pretty sure it was something that
 Macromedia had  done...Sorry :(BrendanOn 9/22/06, Tracy Spratt <  [EMAIL PROTECTED]> wrote:  You can do simple mailto style links in  flex natively, but I don't think that is what you want. You will need a server-side app that does  the actual mail creation and send.  Flex would make a fine front end for that.  Tracy From: [EMAIL PROTECTED]ups.com [mailto:  [EMAIL PROTECTED]  ups.com] On Behalf Of P Smith  Sent: Friday, September 22, 2006  3:17 PM  To: [EMAIL PROTECTED]ups.com  Subject: [flexcoders] Sample Flex  2 based email interface I need to create a Flex 2  based interface for email.  Is anyone aware of any examples?If not in Flex 2, maybe  Flex 1.5?  (or if not that, then maybe even Flash?)My initial requirement is  for a send email interface, ideally with a limited email
 address book.The closest I have seen  is LaszloMail.com but  a)  they don't provide the source, b) the syntax would be LZX and not MXML anyway.Pete  -- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?   
		 All-new Yahoo! Mail - Fire up a more powerful email and get things done faster.
__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: private constructors in flex

2006-09-22 Thread pauland2513
--- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote:
>
> I'm afraid that AS3 doesn't allow a constructor to be private.

Thanks Gordon - I didn't realised they'd changed that since AS2.

Seems bizarre.

Paul


> 
>  
> 
> - Gordon
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of pauland2513
> Sent: Friday, September 22, 2006 4:29 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: private constructors in flex
> 
>  
> 
> --- In flexcoders@yahoogroups.com 
> , "zenwarden"  wrote:
> >
> > Sometimes in Java I declare a constructor private ( I think this is
> > called the nullington pattern). Ex: utility classes that have all
> > static methods or constants.
> > 
> > 
> > 
> > Can and should the same thing be done in flex?
> > 
> > Chris
> 
> Yes, it's an OO design pattern not a Java specific one. I haven't
> heard of the nullington pattern, but private constructors are used for
> the Singleton pattern.
> 
> Paul
>







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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] XML issues

2006-09-22 Thread Tracy Spratt












It is not the XML structure.  Either
of those two examples would be fine.

 

Can you take this a step at a time?

 

Can you get data into a datagrid at
all?  I don’t do much charting, but can the line chart use the same
dataProvider that the data grid does?   Hard code a sample XML
structure into an XML variable.

 

Structure your code so that the two controls
are bound to a global variable dataProvider, probably an XMLListCollection. 
Code a function that uses an e4x _expression_ against the XML variable to set the
value of that collection (use the collection API).

 

The slider dataProvider needs to ba a
different var. A different e4x _expression_ can return that collection or XMLList
from the same base XML data  On the change event of the slider, call the
function that uses the e4x _expression_ to set the dataProvider for the grid and
chart, filtering for the data you want.

 

You haven’t said what problems you
have been having. Or posted any code, so I can’t be more specific.

 

What debugging techniques do you have
available?

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jnewport
Sent: Friday, September 22, 2006
4:00 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] XML issues



 







Ok, I have just wasted an entire week.and I think
I am going to go
insane. I have read every livedoc, flex doc and still no solution is
working. 

Either the issue is my XML structure (though tried several)
Or its my code or could be both.

Below are both xml structures. What I am trying to do is use the data
(via a httpService) in BOTH a datagrid and linechart. And tie the
datagrid and linechart to a slider. So I can map out the data for
each state on a chart for the year and then let the slider control the
months shown on the datagrid and linechart. I can't seem to pull the
data out of the xml and use it to populate the datagrid, line chart,
and slider. I tried e4x and bringing the data.xml file into an array
like the example Adobe dashboard example. I would prefer not having
to parse through the xml file and create several arrays for each
region in the xml file unless I have to. I tried the new dot
notation, but then I had issue with the slider and trying to convert
the xml object into an array to populate the slider.

What is the best format for xml and what is the easiest way to
populate the datagrid, slider, and linechart? 

[First Try XML]

>
Maine"
revenue="46130"/>
Nebraska"
revenue="106976"/>
Montana"
revenue="79554"/>
Texas"
revenue="39252"/>
Kansas"
revenue="128351"/>


>
Maine"
revenue="70324"/>
Nebraska"
revenue="88912"/>
Montana"
revenue="69677"/>
Texas"
revenue="59428"/>
Kansas"
revenue="90804"/>



[Second Try XML]



Maine
34343


Nebraska
23232


Montana
6




Maine
11343


Nebraska
29932


Montana
55644









__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Problem connecting URL requests from different folders

2006-09-22 Thread Tracy Spratt












Almost certainly a security issue.  Do you
have a crossdomain.xml file in the PHP server root?

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of davidtdinh
Sent: Friday, September 22, 2006
3:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Problem
connecting URL requests from different folders



 







Im developing a project that uses data grabbed from an
online PHP file
which accesses a DB. When I run it from Flex Builer 2, works and runs
perfectly. When I load the project HTML from the project's bin/
folder, runs and works perfectly. However, when I copy the contents
of the bin folder to another location on my computer (desktop) and try
to run the project html, it fails silently.

I would like to deploy this project eventually, but in flash 8 I used
to just zip up a swf and its html and distribute it that way. It
doesnt seem to work in this fashion in flex. Can anyone point me in
the right direction to solve this?






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Re: private constructors in flex

2006-09-22 Thread Gordon Smith












I'm afraid that AS3 doesn't allow a
constructor to be private.

 

- Gordon

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of pauland2513
Sent: Friday, September 22, 2006
4:29 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: private
constructors in flex



 







--- In [EMAIL PROTECTED]ups.com,
"zenwarden" <[EMAIL PROTECTED]> wrote:
>
> Sometimes in Java I declare a constructor private ( I think this is
> called the nullington pattern). Ex: utility classes that have all
> static methods or constants.
> 
> 
> 
> Can and should the same thing be done in flex?
> 
> Chris

Yes, it's an OO design pattern not a Java specific one. I haven't
heard of the nullington pattern, but private constructors are used for
the Singleton pattern.

Paul






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] private constructors in flex

2006-09-22 Thread Tracy Spratt












No.  If you search the archives you will
find some huge threads on this topic.

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of zenwarden
Sent: Friday, September 22, 2006
10:54 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] private
constructors in flex



 







Sometimes in Java I declare a constructor private ( I
think this is
called the nullington pattern). Ex: utility classes that have all
static methods or constants.

Can and should the same thing be done in flex?

Chris






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] Coverage testing for AS3 implementation?

2006-09-22 Thread aaron smith



Is there any AS3 implementation for Coverage testing, something similar to Clover in Java?

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: Flex jobs

2006-09-22 Thread pauland2513
--- In flexcoders@yahoogroups.com, Douglas McCarroll
<[EMAIL PROTECTED]> wrote:

>From what I'm hearing, there's already more demand for 
> developers than supply.  :-)

I can see there's some great stuff going on with Flex, but I have yet
to see that demand! Point some of it my way please!

LOL

Paul

> 
> Douglas







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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: private constructors in flex

2006-09-22 Thread pauland2513
--- In flexcoders@yahoogroups.com, "zenwarden" <[EMAIL PROTECTED]> wrote:
>
> Sometimes in Java I declare a constructor private ( I think this is
> called the nullington pattern). Ex: utility classes that have all
> static methods or constants.
> 
> 
> 
> Can and should the same thing be done in flex?
> 
> Chris

Yes, it's an OO design pattern not a Java specific one. I haven't
heard of the nullington pattern, but private constructors are used for
the Singleton pattern.

Paul






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] new one in flex

2006-09-22 Thread tawfek daghistani


greetin all , first i'd like 2 say that  i am flash dsigner and i am new in flex so .i'd like 2 ask about more  recoures in learning flex 2, flex data services and do i have to learn java to be able to build flex application or i can work with action script(2,3) and interacting with databases or anything else an be done with flex  ??thx all tawfekov 
 
__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___


Re: [flexcoders] Flash 9 for PDAs and mobile cell phones

2006-09-22 Thread greg h



mvbaffa,

The short answer is no, Flash 9 currently is not on  PDAS and cell phones.

Flash on cell phones is generally provided via FlashLite being installed on the handset.

FlashLite is a different code branch.  The syntax of the most
current version, FlashLite 2.1, is closer to (but still not the same
as) Flash 6 (I think).

A better forum for future question re: Flash for PDAS and cell phones is here:
http://tech.groups.yahoo.com/group/FlashLite/

hth,

g
On 9/22/06, mvbaffa <[EMAIL PROTECTED]> wrote:
Hi All,Is there a version of Flash 9 for PDAS and cell phones minibrowsersThanks in advance


__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] Re: Unable to access UserTransaction in DataService.

2006-09-22 Thread Jeff Vroom












Just to be clear, FDS uses: java:comp/UserTransaction
(no preceeding / before “comp”) (most likely not the problem but
just to be sure).   It also could be that the “begin” call is
failing for some reason since that is inside of the same try/catch which logs
that error.   Did you try turning on the server debug logging?  That ought to
provide more detail about the nature of the actual exception (including a stack
trace so we can see which call is actually failing).  To do this, go into
WEB-INF/flex/services-config.xml, search for level= and change the value to “Debug”.
 Make sure DataService.* and Message.* are included in the  tags
just underneath that in the file.

 

Jeff

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of erik_jen5en
Sent: Friday, September 22, 2006
6:27 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Unable
to access UserTransaction in DataService.



 







JBoss does use the java:/comp/UserTransaction
JNDI name for the
UserTransaction, I have used it myself in my own apps. 

Just incase I have tried setting the UserTxJNDI system property to the
values:

UserTransaction
java:/UserTransaction
java:/comp/UserTransaction

All fail! There must be some other configuration that is needed in
the Flex WAR to make this work.

Thanks,

Erik

--- In [EMAIL PROTECTED]ups.com,
"Jeff Vroom"
<[EMAIL PROTECTED]> wrote:
>
> This error occurs because either the server failed to find the
> UserTransaction component or because the "begin" call on the
> UserTransaction is failing. If you turn on debug logging for the
> server, I think you should get a stack trace and possibly more details
> about the exception which is occurring. By default, FDS is looking for
> the UserTransaction in JNDI at the standard location:
> "java:comp/UserTransaction" but it might be that in some
versions of
> JBoss, this is at a different location. I found from a quick google
> search that maybe they are just using the name "UserTransaction"
in at
> least some versions of Jboss. You can get this behavior by setting the
> system property:
> 
> 
> 
> UserTxJndiName
> 
> 
> 
> To the path name where Jboss has this registered. 
> 
> 
> 
> So you'd have to set this system property someplace... for example if
> you can find where you add command line args, you could do: "java
> -DUserTxJNDIName=UserTransaction args>"
> 
> 
> 
> Jeff
> 
> 
> 
> 
> 
> From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On
> Behalf Of erik_jen5en
> Sent: Thursday, September 21, 2006 12:51 AM
> To: [EMAIL PROTECTED]ups.com
> Subject: [flexcoders] Unable to access UserTransaction in DataService.
> 
> 
> 
> I am trying to use a data service on JBoss but keep getting the
> following error,
> 
> [RPC Fault faultString="Unable to access UserTransaction in
> DataService." faultCode="Server.Processing"
faultDetail="null"]
> at
> mx.data::ConcreteDataService/http://www.adobe.com/2006/flex/mx/internal:
> :dispatchFaultEvent
> 
()
> at mx.data::CommitResponder/fault()
> at
> mx.rpc::AsyncRequest/fault()[C:\dev\enterprise_gmc\frameworks\mx\rpc\Asy
> ncRequest.as:107]
> at
> NetConnectionChannel.as$37::NetConnectionMessageResponder/NetConnectionC
> hannel.as$37:NetConnectionMessageResponder::statusHandler()[C:\dev\enter
> prise_gmc\frameworks\mx\messaging\channels\NetConnectionChannel.as:458]
> at
> mx.messaging::MessageResponder/status()[C:\dev\enterprise_gmc\frameworks
> \mx\messaging\MessageResponder.as:225]
> 
> Is there some additional setup for transactions needed on the JBoss
> application server?
>






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] test

2006-09-22 Thread davidtdinh
I tried posting a problem, but it didnt apprear. Just seeing if i can
post.






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] XML issues

2006-09-22 Thread jnewport
Ok, I have just wasted an entire week.and I think I am going to go
insane.  I have read every livedoc, flex doc and still no solution is
working.  

Either the issue is my XML structure (though tried several)
Or its my code or could be both.

Below are both xml structures.  What I am trying to do is use the data
(via a httpService) in BOTH a datagrid and linechart. And tie the
datagrid and linechart to a slider.  So I can map out the data for
each state on a chart for the year and then let the slider control the
months shown on the datagrid and linechart.  I can't seem to pull the
data out of the xml and use it to populate the datagrid, line chart,
and slider.  I tried e4x and bringing the data.xml file into an array
like the example Adobe dashboard example.  I would prefer not having
to parse through the xml file and create several arrays for each
region in the xml file unless I have to.  I tried the new dot
notation, but then I had issue with the slider and trying to convert
the xml object into an array to populate the slider.

What is the best format for xml and what is the easiest way to
populate the datagrid, slider, and linechart? 

[First Try XML]


















[Second Try  XML]



Maine
34343


Nebraska
23232


Montana
6




Maine
11343


Nebraska
29932


Montana
55644









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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] REally Need help with this

2006-09-22 Thread Darrin
Trying to debug application loaded with SWFLoader. How do you do this?

Thanks Again for any help.






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

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

2006-09-22 Thread Douglas McCarroll
Hi Sri,

 > how should start my career with flex, should i learn flash, xml, php,
 > asp or shall i directly learn flex

I'm not a Flex expert (yet) - in fact I'm somewhat in the same position 
that you are in. But I've been scouting around, trying to get answers to 
this question, and can perhaps share a bit of what I've learned.

If I'm wrong I'll count on the list to correct me.  :-)

First of all, you don't need to learn Flash to learn Flex. If you want 
to learn Flex, learning Flash will be more of a diversion than anything. 
Not that you shouldn't learn it at some point - it might come in handy. 
It just isn't the most direct route.

Second, you can learn some Flex without learning other skills, except 
perhaps XML. You write your Flex applications in MXML and ActionScript, 
and MXML is XML, so it helps to know the principles of XML. Then learn 
MXML and ActionScript. The tutorials in the Getting Started manual are a 
good place to start.

But Flex is most valuable connected to back-end databases, so you might 
want to aim for learning Flex Data Services. You can do some 
data-connection stuff without it - with the HTTPService and WebService 
components - but FDS is very powerful.

In either case you'll need to know some back-end technology to connect 
to. You can either learn it fairly thoroughly or learn it somewhat and 
team with someone who knows it better. I'm planning to team with a 
friend who's fairly good at Java. Other options include PHP, Ruby, 
Coldfusion and probably others. At this point I'll ask for input from 
the list on what technologies are in greatest demand...  Personally, I 
think that Java is a pretty good bet, but I suspect that the others are 
too...

Finally, keep trying. There aren't many Flex developers yet. It's a 
great technology. From what I'm hearing, there's already more demand for 
developers than supply.  :-)

Douglas

PS  I've just started a blog and have links to resources for Java, PHP, 
Rails etc. there:
  http://www.brightworks.com/flex_ability




flexdeveloper wrote:
>
> Hi
> how should start my career with flex, should i learn flash, xml, php,
> asp or shall i directly learn flex, give me suggession
>
> Thanks
> sri
>
>  



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: Flash 9 for PDAs and mobile cell phones

2006-09-22 Thread Renaun Erickson
No there is not.

The players available are:
Flash Player 7 for Pocket PC and Windows Mobile 5
And just recently on labs Flash Lite 2.1 for BREW and Flash Lite 2.1
for  Windows Mobile 5 phones.

Renaun

--- In flexcoders@yahoogroups.com, "mvbaffa" <[EMAIL PROTECTED]> wrote:
>
> Hi All,
> 
> Is there a version of Flash 9 for PDAS and cell phones minibrowsers
> 
> Thanks in advance
>






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] HTTP Status 500 Error using SSL endpoint

2006-09-22 Thread syndrake7
Hello,

I've duplicated a sample app using the CF extensions wizard with Flex 
as presented in this great demo (shameless fanboy plug): 
http://www.adobe.com/devnet/coldfusion/articles/wizards.html

I'm using IIS 5 for development locally with CF 7 locally and 
publishing to an IIS 6 test server running CF 7.

I'm able to get the app to work using port 80 on both my local machine 
and remote server, but now I'm trying to use SSL. I have a valid cert 
on the remote server. I have edited my local services-config.xml file 
with an endpoint like this and rebuilt the app using it:



https://me.com/flex2gateway/"; 
class="flex.messaging.endpoints.SecureAMFEndpoint"/>

false

false





My problem is that I cannot GET nor POST to /flex2gateway/ on port 443 
on the remote server. I receive an HTTP: Status 500 error in its web 
log, and the same error code inside my Flex sample app.

I can GET and POST to /flex2gateway/ using port 80, both in an empty 
browser window and in my flex sample app.

I've done a lot of searching and have seen a lot of posts regarding 
the services-config.xml file, but nothing to address this specific 
problem.

Is there an XML file somewhere that I need to edit to enable GET and 
POST on port 443 for /flex2gateway/?

Thanks,

-Tony







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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Global keyboard event listener

2006-09-22 Thread Drew Miller



Hi, I am trying to build a keyboard handler for a game using Flex.  I'm getting confused and I'm hoping I can find some guidance here.I have been trying to build a global keyboard listener that grabs any keystroke in the flash movie.  The keyboard should move the games character around on screen regardless of what flex button has recently been clicked or what textfield has focus.  My stumbling block is that when I attach an event listener to the main MXML application tag, it only recieves keyboard events when a button, textfield, or other flex component is selected(has focus).  The main flex application window does not send keyboard events, only components do.   I would like to know how to capture keyboard events when nothing in the application is selected?
I can guess at 2 ways of doing this:1. I think could build the app so it has a textfield that is given focus when nothing else is selected, and capture all keystrokes here.2. I may be able to find a way of making the main application window dispatch keyboard events..?
An example of a Flex application that handles keyboard events would be a great help.  Thanks for any thoughts,Drew

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Flex 2.0 Hosting ( Cheap / Inexpensive )

2006-09-22 Thread Douglas McCarroll
Anatole Tartakovsky wrote:
You need to  provide preconfigured VMs with complete software stack 
preinstalled -
pretty much the configuration Chris Coenraets described in his blog

Anatole - can you provide a link to Chris's blog post that you refer to 
here?


>
> I do not think it would be that simple. Java server configuration can 
> be somewhat difficult. Java hosting never took off. Add just 1 hour of 
> support time per month and the costs of the hosting becomes irrelevant.
>  
> However, it is feasable by using dedicated machines in the same price 
> range (I am using eSecureData.com - very good value and quality 
> machines, and they do not sell beyond promissed capacity) . You need 
> to  provide preconfigured VMs with complete software stack 
> preinstalled - pretty much the configuration Chris Coenraets described 
> in his blog so that you have free good quality products hosted within 
> either VMWARE or XEN infrastructure and place deployment 
> responsibilities on the client.
>  
> However, Java + OS has to be sized well beyond php requirements - at 
> least 512MB, with clients needing more memory in most of the cases. 
> With 75% of average server load you would need to charge around $70/mo 
> just to get even - and that is with outsourced email-only support.
>  
> Regards,
> Anatole Tartakovsky
>  
>
>  
> On 9/20/06, *Kelly* <[EMAIL PROTECTED] > wrote:
>
> Is it really that hard to just pay for a server or a virtual
> server and
> install it yourself?
>
> You can get decent virtual dedicated servers for like $60/month.
>
> It's not hard at all to install fds when you have root access to a
> server.
>
> Makes me think I should just do it and sell it as a service.
>
> --Kelly
>
>
>
> -Original Message-
> From: flexcoders@yahoogroups.com
>  [mailto:
> flexcoders@yahoogroups.com ] On
> Behalf Of Douglas McCarroll
> Sent: Wednesday, September 20, 2006 1:14 PM
> To: flexcoders@yahoogroups.com 
> Subject: Re: [flexcoders] Flex 2.0 Hosting ( Cheap / Inexpensive )
>
> I've checked with CFDynamics. They say "Unfortunately, at this
> time, an
> ETA is unavailable."
>
> It seems to me that it would be in Adobe's interests to do
> whatever it
> can to facilitate making FDS hosting available. A friend of mine
> thinks
> that he may be able to help me out, but I'm sure that there are a
> lot of
> people out there with no options for deploying FDS apps at this
> point...
>
> I'm not talking about full-scale enterprise hosting - just an Express
> FDS equivalent...
>
> Matt Chotin wrote:
> >
> > Yes, CFDynamics has been considering it. I'm not sure if others have
> > been considering it recently, I'll ask Eric but we haven't seen a
> > massive request for it recently.
> >
> > Matt
> >
> > --
> >
> > *From:* flexcoders@yahoogroups.com
>  [mailto:
> flexcoders@yahoogroups.com ]
> > *On Behalf Of *Brendan Meutzner
> > *Sent:* Tuesday, September 19, 2006 3:59 PM
> > *To:* flexcoders@yahoogroups.com
> 
> > *Subject:* Re: [flexcoders] Flex 2.0 Hosting ( Cheap / Inexpensive )
> >
> > I've heard that CFDyanmics is considering it... worth posing the
> > question to them...
> >
> >
> > Brendan
> >
> >
> > On 9/19/06, *Douglas McCarroll* <
> > [EMAIL PROTECTED]
> 
> >  >> wrote:
> >
> > Paul Andrews wrote:
> >
> > > Hosting Flex isn't a problem, it's FDS that's the problem. ;-)
> >
> > Are there any solutions available for FDS?
> >
> > It sounds like there aren't. :-(
> >
> > Could someone from Adobe comment on whether Adobe is working on this?
> >
> >
>
> --
> 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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.c

[flexcoders] Problems loading large images

2006-09-22 Thread jeremyrichman
When I create an Image and call the load method with a really large 
image (upwards of 1 meg), there is no exception thrown but also nothing 
displayed.

Is Flex not intended to handle images of this size?

Jeremy Richman
Ames On Demand
617-684-1015





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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Problem connecting URL requests from different folders

2006-09-22 Thread davidtdinh
Im developing a project that uses data grabbed from an online PHP file
which accesses a DB.  When I run it from Flex Builer 2, works and runs
perfectly. When I load the project HTML from the project's bin/
folder, runs and works perfectly.  However, when I copy the contents
of the bin folder to another location on my computer (desktop) and try
to run the project html, it fails silently.

I would like to deploy this project eventually, but in flash 8 I used
to  just zip up a swf and its html and distribute it that way.  It
doesnt seem to work in this fashion in flex.  Can anyone point me in
the right direction to solve this?





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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

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

2006-09-22 Thread tawfek daghistani


greetin all , first i'd like 2 say that  i am flash dsigner and i am new in flex so .
i have worked with 'Quick Start Tutorials' in  flex help but i'd like 2 ask about more  recoures in learning flex 2, flex data services and do i have to learn java to be able to build flex application or i can work with action script(2,3) and interacting with databases or anything else an be done with flex  ??thx all tawfekov 
 
__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___


Re: [flexcoders] Re: UI Advise

2006-09-22 Thread Michael Schmalle



I read it to today also and man you have some good seeds there waiting to sprout ;-)Peace, MikeOn 9/22/06, Andrew Trice <
[EMAIL PROTECTED]> wrote:












  













No problem.  Thanks for reading it!

 



_


Andrew Trice


Cynergy Systems, Inc.

http://www.cynergysystems.com


 

Blog: 
http://www.cynergysystems.com/blogs/page/andrewtrice

Email: 
[EMAIL PROTECTED]

Office: 866-CYNERGY 

 











From: [EMAIL PROTECTED]
ups.com [mailto:[EMAIL PROTECTED]
ups.com] On Behalf Of Tim Hoff
Sent: Friday, September 22, 2006
5:17 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Re: UI
Advise



 







Hi Andy,

I read your article this morning. In fact, it's the reason I 
started thinking about this idea. Thanks for the great article and 
the advise.

-TH

--- In flexcoders@yahoogroups.com,
"Andrew Trice" <[EMAIL PROTECTED]> 
wrote:
>
> Hi Tim,
> 
> I just posted a blog article on this topic this morning. It is
> definitely possible to capture the BitmapData of a hidden object 
within
> an Image object. It has examples how to do this. You can check 
it out
> at: 
> 
> 
> 
> http://www.cynergysystems.com/blogs/page/andrewtrice?
entry=flex_2_bitmap
> data_tricks_and
> 
> 
> 
> I would use a viewstack to contain 1) the thumbnail and 2) the
> component. Perform a "mx:Resize" effect on the viewstack, then 
swap the
> thumb and component on the EFFET_END event (just toggle the visible
> child of the viewstack). If you bind the image to the constraints 
of
> the parent container (using "top", "left",
"right", "bottom"), 
then I
> think that the image *should* scale with the viewstack. You will
> definitely need to experiment with the mouse events/interaction on
> this... it is highly probable that the usability could get quirky
> behavior that you'll need to fine tune.
> 
> 
> 
> Hope that helps!
> 
> 
> 
> -Andy
> 
> 
> 
> 
> 
> _
> 
> Andrew Trice
> 
> Cynergy Systems, Inc.
> 
> http://www.cynergysystems.com
> 
> 
> 
> Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
> 
> Email: [EMAIL PROTECTED]
> 
> Office: 866-CYNERGY 
> 
> 
> 
> 
> 
> From: flexcoders@yahoogroups.com

[mailto:flexcoders@yahoogroups.com]
On
> Behalf Of Tim Hoff
> Sent: Friday, September 22, 2006 4:50 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] UI Advise
> 
> 
> 
> Hi all,
> 
> Perhaps some of you gurus can help me determine the best approach 
> for a UI that I'm thinking about. The use case will have a popup 
> that displays detail information that is related to summary 
records 
> in a DataGrid. When the user makes a grid selection, a popup will 
> display. The popup will contain several UI components (thumbnails 
> of panels) that each display different detail information. For 
> instance, if the grid contained Authors, the popup might contain: 
> Biopragraphy, Recent Books, Blog Postings, Articles, etc.. Some of 
> the components will contain static text, while others will contain 
> lists (DataGrids) or images. 
> 
> Now for the fun part. When the user clicks on (or MouseOver) the 
> thumbnail, the component will expand (zoom with effect) to the 
full 
> size of the popup and cover the other thumbnails. When the user 
> clicks again (or MouseOut) the popup will return to the initial 
> thumbnail state (using Cairngorm).
> 
> My thoughts are to capture BitmapData of the individual panel 
> components and display them as the thumbnails in the initial popup 
> state. When the user clicks a thumbnail, change state with zoom 
> effect and replace the image with the actual component. If this is 
> possible, does anyone have any ideas how I might go about 
> accomplishing this idea? In other words, is it possible to capture 
> the BitmapData of a component without displaying the component; 
just 
> the image? Also, when the thumbnail zoom completes, how might I 
> swap the image with the actual component? I'm pretty sure that 
> there is something similar to an EFFECT_END event that I could use 
> to change state a second time. But, I'm interested to hear 
> different perspectives.
> 
> Since Flex will soon be competing with Windows Vista and WPF, I'm 
> trying to develop innovative UI's that will rival the competition. 
> I would appreciate any ideas anyone might have for this scenario. 
> Or, if someone has done something similar, I would love to see the 
> code.
> 
> Thank you very much in advance,
> Tim Hoff
>










  













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

Software development tool
  
  
Software development
  
  
 

[flexcoders] Flash 9 for PDAs and mobile cell phones

2006-09-22 Thread mvbaffa
Hi All,

Is there a version of Flash 9 for PDAS and cell phones minibrowsers

Thanks in advance





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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Accordion UI Mods to a CF Wizard Generated App

2006-09-22 Thread rob_scio



Stating up front that I am a newbie to Flex and Actionscript...I am using the CF wizard to generate a simple application (master form and a detail form).  I have modified the detail form so that the nine form fields I am displaying that the wizard is placing on the cfComponents:SizeableTitleWindow are broken out into three sections.  I am using the Accordion control and there are three form fields in each of the three accordion sections.I am able to successfully add new data to my database using this layout.  However when I choose to edit an existing record (selected in the data grid of the master page) the detail page will only display the field data in the first accordion panel.  The form fields in the two other accordion panels do not display the data for the record being edited.Has anyone seen this issue at all (I did not see it on his board but that doesn't mean it is not here)?I feel like I am missing something basic and want to see what it may be.  Any and all help is greatly appreciated.Thanks,Rob

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] private constructors in flex

2006-09-22 Thread zenwarden
Sometimes in Java I declare a constructor private ( I think this is
called the nullington pattern). Ex: utility classes that have all
static methods or constants.



Can and should the same thing be done in flex?

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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] 2 know more about flex

2006-09-22 Thread tawfekov
greetin all , 
first i'd like 2 say that  i am flash dsigner and i am new in flex 
so .
i'd like 2 ask about more  recoures in learning flex 2, flex data 
services 
and do i have to learn java to be able to build flex application or i 
can work with action script(2,3) and interacting with databases or 
anything else an be done with flex  ??
thx all 
tawfekov 







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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: services-config.xml No Destination Found

2006-09-22 Thread Brendan Meutzner



Jeff,I believe you've put me on the right track now... however, would you be able to provide me with a sample of a services-config.xml file which has more than one destination and channel defined?Thanks,
BrendanOn 9/22/06, Jeff Vroom <[EMAIL PROTECTED]> wrote:













  













Hi Brendan,

 

That message is being generated from the
server.   I take it the error is actually:

 

"No destination 'CF_SFProdServer' exists
in service flex.messaging.services.RemotingService"

 

If that is the case, take a look at the
 tag in your services-config.xml
file.  That should exist inside of a tag that looks like:

 



   
class="flex.messaging.services.RemotingService"

   
messageTypes="flex.messaging.messages.RemotingMessage">

 

   … your  tag should
be here ….

 



 

The class and messageTypes attributes
should match exactly… the "id" is not important.  Destination names are scoped
both by the class of message(s) they receive as well as the type of service
that is defining that destination.  Both of those are going to have to match
what the server expects or the message is not going to get delivered.  It looks
like your destination is just being defined as part of the wrong service, or
maybe it has the wrong messageTypes?

 

I hope this helps.

 

Jeff

 









From: [EMAIL PROTECTED]
ups.com [mailto:[EMAIL PROTECTED]
ups.com] On Behalf Of Brendan Meutzner
Sent: Friday, September 22, 2006
12:05 PM
To: [EMAIL PROTECTED]ups.com
Subject: Re: [flexcoders] Re:
services-config.xml No Destination Found



 







Hi Jeff,

I'm getting "No destination 'detinationName' exists in service
flex.messaging.services.RemotingService"

Here's a snippet of the TraceTarget output...


'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer sending message
'A48825BE-FD16-7223-221D-D6D674320226' 
'SFProdServer'
channel endpoint set to http:// 
SFProdServer.xxx.com/flex2gateway/
'SFProdServer'
channel settings are:
 
   SFProdServer.xxx.com/flex2gateway/"/>

  
    false
  

' SFProdServer'
pinging endpoint.
' SFProdServer'
channel is connected.
'SFProdServer'
channel sending message: 
(mx.messaging.messages::RemotingMessage)#0
  body = (Array)#1
    [0] ""
  clientId = (null)
  destination = "
CF_SFProdServer"
  headers = (Object)#2
  messageId = "A48825BE-FD16-7223-221D-D6D674320226"
  operation = "saveXML"
  source = " reports.cf.cfc.metricXML"
  timestamp = 0
  timeToLive = 0
'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer connected.
'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer acknowledge of
'A48825BE-FD16-7223-221D-D6D674320226'. 
'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer fault for
'A48825BE-FD16-7223-221D-D6D674320226'.


Everything is in order as far as I can tell.


Thanks,

Brendan






On 9/21/06, Jeff Vroom <
[EMAIL PROTECTED]> wrote:












Can you provide the exact
error you are seeing?   We have "Unknown destination 'x' and 'x'
is not a valid destination.   It also might help to turn on debug
logging on the client… you do this by adding the MXML tag:  
then look in your flashlog.txt file.


 


Jeff


 











From:
[EMAIL PROTECTED] ups.com
[mailto:[EMAIL PROTECTED]
 ups.com] On Behalf Of Brendan Meutzner
Sent: Thursday, September 21, 2006
2:46 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Re:
services-config.xml No Destination Found




 










Sorry... maybe some code
might help elicit a response...

My call:







My services-config.xml (snippet):

   
 
   

   

   

   

   
* 
   

   

   
 
   
false
   

   
remote 
   


   

   

   
false 
   

   
false
   

   
false 
   

   

   


   

    http://SFProdServer.xxx.com/flex2gateway/"
class="flex.messaging.endpoints.AMFEndpoint"/>
   
 
   
false
   

   
false
   
 
    
    


and to add to my previous list...

6) Browsing to http://SFProdServer.xxx.com/flex2gateway/ gives
me the usual blank page, so I assume it's working...


Thanks,

Brendan






On 9/21/06, Brendan
Meutzner <
[EMAIL PROTECTED]> wrote:


I'm seriously at my wits end... I love CF, but I hate
CF... 

I have my services-config.xml file setup with 2 destinations, one pointing
to my local dev CF server and the other to a production server.  I can get
my local dev connection to work, but continue to receive the No Destination
Found error for my production server. 

I am 100% positive on the following:

1) My test CFC file I'm trying to reach exists, and I'm referencing it in the
right location.
2) My local and production servers are configured and installed identically..

RE: [flexcoders] Re: services-config.xml No Destination Found

2006-09-22 Thread Jeff Vroom












Hi Brendan,

 

That message is being generated from the
server.   I take it the error is actually:

 

“No destination ‘CF_SFProdServer’ exists
in service flex.messaging.services.RemotingService”

 

If that is the case, take a look at the
 tag in your services-config.xml
file.  That should exist inside of a tag that looks like:

 



   
class="flex.messaging.services.RemotingService"

   
messageTypes="flex.messaging.messages.RemotingMessage">

 

   … your  tag should
be here ….

 



 

The class and messageTypes attributes
should match exactly… the “id” is not important.  Destination names are scoped
both by the class of message(s) they receive as well as the type of service
that is defining that destination.  Both of those are going to have to match
what the server expects or the message is not going to get delivered.  It looks
like your destination is just being defined as part of the wrong service, or
maybe it has the wrong messageTypes?

 

I hope this helps.

 

Jeff

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Brendan Meutzner
Sent: Friday, September 22, 2006
12:05 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re:
services-config.xml No Destination Found



 







Hi Jeff,

I'm getting "No destination 'detinationName' exists in service
flex.messaging.services.RemotingService"

Here's a snippet of the TraceTarget output...


'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer sending message
'A48825BE-FD16-7223-221D-D6D674320226' 
'SFProdServer'
channel endpoint set to http:// SFProdServer.xxx.com/flex2gateway/
'SFProdServer'
channel settings are:
SFProdServer"
type="mx.messaging.channels.AMFChannel"> 
   SFProdServer.xxx.com/flex2gateway/"/>
  
    false
  

' SFProdServer'
pinging endpoint.
' SFProdServer'
channel is connected.
'SFProdServer'
channel sending message: 
(mx.messaging.messages::RemotingMessage)#0
  body = (Array)#1
    [0] ""
  clientId = (null)
  destination = "
CF_SFProdServer"
  headers = (Object)#2
  messageId = "A48825BE-FD16-7223-221D-D6D674320226"
  operation = "saveXML"
  source = " reports.cf.cfc.metricXML"
  timestamp = 0
  timeToLive = 0
'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer connected.
'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer acknowledge of
'A48825BE-FD16-7223-221D-D6D674320226'. 
'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer fault for
'A48825BE-FD16-7223-221D-D6D674320226'.


Everything is in order as far as I can tell.


Thanks,

Brendan






On 9/21/06, Jeff Vroom <[EMAIL PROTECTED]com> wrote:











Can you provide the exact
error you are seeing?   We have "Unknown destination 'x' and 'x'
is not a valid destination.   It also might help to turn on debug
logging on the client… you do this by adding the MXML tag:  
then look in your flashlog.txt file.

 

Jeff

 









From:
[EMAIL PROTECTED] ups.com
[mailto:[EMAIL PROTECTED] ups.com] On Behalf Of Brendan Meutzner
Sent: Thursday, September 21, 2006
2:46 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Re:
services-config.xml No Destination Found



 









Sorry... maybe some code
might help elicit a response...

My call:







My services-config.xml (snippet):

   
 
   

   

   

   

   
* 
   

   

   
 
   
false
   

   
level>remotelevel> 
   


   

   

   
falsee> 
   

   
lowercase>falselowercase>
   

   
lowercase>falselowercase> 
   

   

   


   

    http://SFProdServer.xxx.com/flex2gateway/"
class="flex.messaging.endpoints.AMFEndpoint"/>
   
 
   
false
   

   
types>falsetypes>
   
 
    
    


and to add to my previous list...

6) Browsing to http://SFProdServer.xxx.com/flex2gateway/ gives
me the usual blank page, so I assume it's working...


Thanks,

Brendan





On 9/21/06, Brendan
Meutzner <
[EMAIL PROTECTED]com> wrote:

I'm seriously at my wits end... I love CF, but I hate
CF... 

I have my services-config.xml file setup with 2 destinations, one pointing
to my local dev CF server and the other to a production server.  I can get
my local dev connection to work, but continue to receive the No Destination
Found error for my production server. 

I am 100% positive on the following:

1) My test CFC file I'm trying to reach exists, and I'm referencing it in the
right location.
2) My local and production servers are configured and installed identically...

3) The destination and chanel definitions exist in my services-config.xml
file, and the most recent file is getting compiled with my app (I've traced the
ServerConfig.xml content

RE: [flexcoders] Object of a specified type

2006-09-22 Thread Gordon Smith












The preferred way is to use the 'is'
operator, which is new in AS3:

 

    trace(str is String); // output is
"true"

 

- Gordon

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Harish Sivaramakrishnan
Sent: Monday, September 18, 2006
6:06 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Object
of a specified type



 







use typeof to find the type of an object.

ex:

var str:String

trace(typeof(str) : prints "string"

Hope this helps
Harish



On 9/18/06, Daniel
<[EMAIL PROTECTED]com> wrote:











How can I konw if an
object is an instance of a specified type, for
example String.

Thx!













 








__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Re: UI Advise

2006-09-22 Thread Andrew Trice












No problem.  Thanks for reading it!

 



_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com

 

Blog: http://www.cynergysystems.com/blogs/page/andrewtrice

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY 

 











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tim Hoff
Sent: Friday, September 22, 2006
5:17 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: UI
Advise



 







Hi Andy,

I read your article this morning. In fact, it's the reason I 
started thinking about this idea. Thanks for the great article and 
the advise.

-TH

--- In [EMAIL PROTECTED]ups.com,
"Andrew Trice" ...> 
wrote:
>
> Hi Tim,
> 
> I just posted a blog article on this topic this morning. It is
> definitely possible to capture the BitmapData of a hidden object 
within
> an Image object. It has examples how to do this. You can check 
it out
> at: 
> 
> 
> 
> http://www.cynergysystems.com/blogs/page/andrewtrice?
entry=flex_2_bitmap
> data_tricks_and
> 
> 
> 
> I would use a viewstack to contain 1) the thumbnail and 2) the
> component. Perform a "mx:Resize" effect on the viewstack, then 
swap the
> thumb and component on the EFFET_END event (just toggle the visible
> child of the viewstack). If you bind the image to the constraints 
of
> the parent container (using "top", "left",
"right", "bottom"), 
then I
> think that the image *should* scale with the viewstack. You will
> definitely need to experiment with the mouse events/interaction on
> this... it is highly probable that the usability could get quirky
> behavior that you'll need to fine tune.
> 
> 
> 
> Hope that helps!
> 
> 
> 
> -Andy
> 
> 
> 
> 
> 
> _
> 
> Andrew Trice
> 
> Cynergy Systems, Inc.
> 
> http://www.cynergysystems.com
> 
> 
> 
> Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
> 
> Email: andrew.trice@...
> 
> Office: 866-CYNERGY 
> 
> 
> 
> 
> 
> From: [EMAIL PROTECTED]ups.com

[mailto:[EMAIL PROTECTED]ups.com]
On
> Behalf Of Tim Hoff
> Sent: Friday, September 22, 2006 4:50 PM
> To: [EMAIL PROTECTED]ups.com
> Subject: [flexcoders] UI Advise
> 
> 
> 
> Hi all,
> 
> Perhaps some of you gurus can help me determine the best approach 
> for a UI that I'm thinking about. The use case will have a popup 
> that displays detail information that is related to summary 
records 
> in a DataGrid. When the user makes a grid selection, a popup will 
> display. The popup will contain several UI components (thumbnails 
> of panels) that each display different detail information. For 
> instance, if the grid contained Authors, the popup might contain: 
> Biopragraphy, Recent Books, Blog Postings, Articles, etc.. Some of 
> the components will contain static text, while others will contain 
> lists (DataGrids) or images. 
> 
> Now for the fun part. When the user clicks on (or MouseOver) the 
> thumbnail, the component will expand (zoom with effect) to the 
full 
> size of the popup and cover the other thumbnails. When the user 
> clicks again (or MouseOut) the popup will return to the initial 
> thumbnail state (using Cairngorm).
> 
> My thoughts are to capture BitmapData of the individual panel 
> components and display them as the thumbnails in the initial popup 
> state. When the user clicks a thumbnail, change state with zoom 
> effect and replace the image with the actual component. If this is 
> possible, does anyone have any ideas how I might go about 
> accomplishing this idea? In other words, is it possible to capture 
> the BitmapData of a component without displaying the component; 
just 
> the image? Also, when the thumbnail zoom completes, how might I 
> swap the image with the actual component? I'm pretty sure that 
> there is something similar to an EFFECT_END event that I could use 
> to change state a second time. But, I'm interested to hear 
> different perspectives.
> 
> Since Flex will soon be competing with Windows Vista and WPF, I'm 
> trying to develop innovative UI's that will rival the competition. 
> I would appreciate any ideas anyone might have for this scenario. 
> Or, if someone has done something similar, I would love to see the 
> code.
> 
> Thank you very much in advance,
> Tim Hoff
>






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings

[flexcoders] Re: UI Advise

2006-09-22 Thread Tim Hoff
Hi Andy,

I read your article this morning.  In fact, it's the reason I 
started thinking about this idea.  Thanks for the great article and 
the advise.

-TH

--- In flexcoders@yahoogroups.com, "Andrew Trice" <[EMAIL PROTECTED]> 
wrote:
>
> Hi Tim,
> 
> I just posted a blog article on this topic this morning.  It is
> definitely possible to capture the BitmapData of a hidden object 
within
> an Image object.  It has examples how to do this.  You can check 
it out
> at: 
> 
>  
> 
> http://www.cynergysystems.com/blogs/page/andrewtrice?
entry=flex_2_bitmap
> data_tricks_and
> 
>  
> 
> I would use a viewstack to contain 1) the thumbnail and 2) the
> component.  Perform a "mx:Resize" effect on the viewstack, then 
swap the
> thumb and component on the EFFET_END event (just toggle the visible
> child of the viewstack).  If you bind the image to the constraints 
of
> the parent container (using "top", "left", "right", "bottom"), 
then I
> think that the image *should* scale with the viewstack.  You will
> definitely need to experiment with the mouse events/interaction on
> this... it is highly probable that the usability could get quirky
> behavior that you'll need to fine tune.
> 
>  
> 
> Hope that helps!
> 
>  
> 
> -Andy
> 
>  
> 
>  
> 
> _
> 
> Andrew Trice
> 
> Cynergy Systems, Inc.
> 
> http://www.cynergysystems.com
> 
>  
> 
> Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
> 
> Email: [EMAIL PROTECTED]
> 
> Office: 866-CYNERGY 
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Tim Hoff
> Sent: Friday, September 22, 2006 4:50 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] UI Advise
> 
>  
> 
> Hi all,
> 
> Perhaps some of you gurus can help me determine the best approach 
> for a UI that I'm thinking about. The use case will have a popup 
> that displays detail information that is related to summary 
records 
> in a DataGrid. When the user makes a grid selection, a popup will 
> display. The popup will contain several UI components (thumbnails 
> of panels) that each display different detail information. For 
> instance, if the grid contained Authors, the popup might contain: 
> Biopragraphy, Recent Books, Blog Postings, Articles, etc.. Some of 
> the components will contain static text, while others will contain 
> lists (DataGrids) or images. 
> 
> Now for the fun part. When the user clicks on (or MouseOver) the 
> thumbnail, the component will expand (zoom with effect) to the 
full 
> size of the popup and cover the other thumbnails. When the user 
> clicks again (or MouseOut) the popup will return to the initial 
> thumbnail state (using Cairngorm).
> 
> My thoughts are to capture BitmapData of the individual panel 
> components and display them as the thumbnails in the initial popup 
> state. When the user clicks a thumbnail, change state with zoom 
> effect and replace the image with the actual component. If this is 
> possible, does anyone have any ideas how I might go about 
> accomplishing this idea? In other words, is it possible to capture 
> the BitmapData of a component without displaying the component; 
just 
> the image? Also, when the thumbnail zoom completes, how might I 
> swap the image with the actual component? I'm pretty sure that 
> there is something similar to an EFFECT_END event that I could use 
> to change state a second time. But, I'm interested to hear 
> different perspectives.
> 
> Since Flex will soon be competing with Windows Vista and WPF, I'm 
> trying to develop innovative UI's that will rival the competition. 
> I would appreciate any ideas anyone might have for this scenario. 
> Or, if someone has done something similar, I would love to see the 
> code.
> 
> Thank you very much in advance,
> Tim Hoff
>







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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] what's going on with this Flex?!?

2006-09-22 Thread Gordon Smith












The behavior you're seeing is the Deferred
Instantiation feature of Flex. The point of it is to avoid creating components
until the user can see them, in order to minimize the application startup time.

 

Setting creationPolicy="all" 'fixes'
the problem by disabling this feature. It is almost never the right thing to
do, as it causes your app to start up more slowly. You should instead write
your app in a way that works with Deferred Instantiation.

 

Instead of trying to push data into a TextInput
before it exists, store the data in a var and then have teh TextInput
"pull" the data into itself in its 'initialize' handler, which is
guarantee to execute when the TextInput gets created.

 

- Gordon

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt
 Horn
Sent: Thursday, September 14, 2006
7:15 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] what's
going on with this Flex?!?



 







if that
is the issue, you could set the container's creationPolicy to
all. Check out the chapter on improving startup performance in the
Building and Deploying book for more info.

hth,

matt horn
flex docs 

> -Original Message-
> From: [EMAIL PROTECTED]ups.com

> [mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of arnold_charming
> Sent: Thursday, September 14, 2006 5:00 AM
> To: [EMAIL PROTECTED]ups.com
> Subject: [flexcoders] what's going on with this Flex?!?
> 
> Hi!
> 
> I have some tabs in my flex application and when I want to 
> access a text field on my last tab I get an error about null 
> reference. If I click on this tab and try again then it 
> works. I guess the error happens because the last tab isn't 
> yet loaded. So please explain to me how can I solve this and 
> how can someone build a sirious business application if there 
> are such strange errors?
> 
> 
> 
> 
> 






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] UI Advise

2006-09-22 Thread Andrew Trice












Hi Tim,

I just posted a blog article on this topic
this morning.  It is definitely possible to capture the BitmapData of a hidden
object within an Image object.  It has examples how to do this.  You can check
it out at: 

 

http://www.cynergysystems.com/blogs/page/andrewtrice?entry=flex_2_bitmapdata_tricks_and

 

I would use a viewstack to contain 1) the
thumbnail and 2) the component.  Perform a “mx:Resize” effect on
the viewstack, then swap the thumb and component on the EFFET_END event (just
toggle the visible child of the viewstack).  If you bind the image to the
constraints of the parent container (using “top”, “left”,
“right”, “bottom”), then I think that the image *should* scale with the viewstack.  You will
definitely need to experiment with the mouse events/interaction on this…
it is highly probable that the usability could get quirky behavior that you’ll
need to fine tune.

 

Hope that helps!

 

-Andy

 

 



_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com

 

Blog: http://www.cynergysystems.com/blogs/page/andrewtrice

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY 

 











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tim Hoff
Sent: Friday, September 22, 2006
4:50 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] UI Advise



 







Hi all,

Perhaps some of you gurus can help me determine the best approach 
for a UI that I'm thinking about. The use case will have a popup 
that displays detail information that is related to summary records 
in a DataGrid. When the user makes a grid selection, a popup will 
display. The popup will contain several UI components (thumbnails 
of panels) that each display different detail information. For 
instance, if the grid contained Authors, the popup might contain: 
Biopragraphy, Recent Books, Blog Postings, Articles, etc.. Some of 
the components will contain static text, while others will contain 
lists (DataGrids) or images. 

Now for the fun part. When the user clicks on (or MouseOver) the 
thumbnail, the component will expand (zoom with effect) to the full 
size of the popup and cover the other thumbnails. When the user 
clicks again (or MouseOut) the popup will return to the initial 
thumbnail state (using Cairngorm).

My thoughts are to capture BitmapData of the individual panel 
components and display them as the thumbnails in the initial popup 
state. When the user clicks a thumbnail, change state with zoom 
effect and replace the image with the actual component. If this is 
possible, does anyone have any ideas how I might go about 
accomplishing this idea? In other words, is it possible to capture 
the BitmapData of a component without displaying the component; just 
the image? Also, when the thumbnail zoom completes, how might I 
swap the image with the actual component? I'm pretty sure that 
there is something similar to an EFFECT_END event that I could use 
to change state a second time. But, I'm interested to hear 
different perspectives.

Since Flex will soon be competing with Windows Vista and WPF, I'm 
trying to develop innovative UI's that will rival the competition. 
I would appreciate any ideas anyone might have for this scenario. 
Or, if someone has done something similar, I would love to see the 
code.

Thank you very much in advance,
Tim Hoff






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] getDefinitionByName

2006-09-22 Thread Gordon Smith












getDefinitionByName() works on Flex
classes as well as Flash ones, but if you want something like

 

   
getDefinitionByName("mx.controls.Button")

 

to work, you have to ensure that Flex's
Button class is linked into your application's SWF. If you actually use the
Button class somewhere, it will be. By contrast, the Flash classes are built
into the Player and don't need to be used in the SWF.

 

Sorry for the late reply. I'm going
through the 1700 posts to flexcoders while I was on vacation, and I didn't see
a reply to this one.

 

- Gordon

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Daniel Freiman
Sent: Tuesday, September 05, 2006
7:50 AM
To: flexcoders
Subject: [flexcoders]
getDefinitionByName



 







I want to
use getDefinitionByName in the flash.utils package to get a class by it's
name.  I've tried the example in the language reference using Sprite and
that works fine but when I use flex classes it doesn't seem to work (I've tried
classes I've made and mx.controls.ComboBox).  Is there a
limitation of this function that I'm missing?

Dan






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] UI Advise

2006-09-22 Thread Tim Hoff
Hi all,

Perhaps some of you gurus can help me determine the best approach 
for a UI that I'm thinking about.  The use case will have a popup 
that displays detail information that is related to summary records 
in a DataGrid.  When the user makes a grid selection, a popup will 
display.  The popup will contain several UI components (thumbnails 
of panels) that each display different detail information.  For 
instance, if the grid contained Authors, the popup might contain: 
Biopragraphy, Recent Books, Blog Postings, Articles, etc.. Some of 
the components will contain static text, while others will contain 
lists (DataGrids) or images.  

Now for the fun part.  When the user clicks on (or MouseOver) the 
thumbnail, the component will expand (zoom with effect) to the full 
size of the popup and cover the other thumbnails.  When the user 
clicks again (or MouseOut) the popup will return to the initial 
thumbnail state (using Cairngorm).

My thoughts are to capture BitmapData of the individual panel 
components and display them as the thumbnails in the initial popup 
state.  When the user clicks a thumbnail, change state with zoom 
effect and replace the image with the actual component.  If this is 
possible, does anyone have any ideas how I might go about 
accomplishing this idea?  In other words, is it possible to capture 
the BitmapData of a component without displaying the component; just 
the image?  Also, when the thumbnail zoom completes, how might I 
swap the image with the actual component?  I'm pretty sure that 
there is something similar to an EFFECT_END event that I could use 
to change state a second time.  But, I'm interested to hear 
different perspectives.

Since Flex will soon be competing with Windows Vista and WPF, I'm 
trying to develop innovative UI's that will rival the competition.  
I would appreciate any ideas anyone might have for this scenario.  
Or, if someone has done something similar, I would love to see the 
code.

Thank you very much in advance,
Tim Hoff







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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Sample Flex 2 based email interface

2006-09-22 Thread Douglas Knudsen



http://labs.jboss.com/portal/jbossmail/DKOn 9/22/06, Brendan Meutzner <
[EMAIL PROTECTED]> wrote:


I think I remember seeing an example of this done in 1.5... damned if I remember where though...  It wasn't a full on solution, but was a good example... I'm pretty sure it was something that Macromedia had done...

Sorry :(BrendanOn 9/22/06, Tracy Spratt <
[EMAIL PROTECTED]> wrote:













  













You can do simple mailto style links in
flex natively, but I don't think that is what you want.

 

You will need a server-side app that does
the actual mail creation and send.  Flex would make a fine front end for that. 

 

Tracy



 









From: [EMAIL PROTECTED]

ups.com [mailto:
[EMAIL PROTECTED]
ups.com] On Behalf Of P Smith
Sent: Friday, September 22, 2006
3:17 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Sample Flex
2 based email interface



 









I need to create a Flex 2
based interface for email.  Is anyone aware of any examples?





If not in Flex 2, maybe
Flex 1.5?  (or if not that, then maybe even Flash?)





My initial requirement is
for a send email interface, ideally with a limited email address book.





The closest I have seen
is LaszloMail.com but  a)
they don't provide the source, b) the syntax would be LZX and not MXML anyway.





Pete



 

 __
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com

 










  


















-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Sample Flex 2 based email interface

2006-09-22 Thread Brendan Meutzner



I think I remember seeing an example of this done in 1.5... damned if I remember where though...  It wasn't a full on solution, but was a good example... I'm pretty sure it was something that Macromedia had done...
Sorry :(BrendanOn 9/22/06, Tracy Spratt <[EMAIL PROTECTED]> wrote:













  













You can do simple mailto style links in
flex natively, but I don't think that is what you want.

 

You will need a server-side app that does
the actual mail creation and send.  Flex would make a fine front end for that. 

 

Tracy


 









From: [EMAIL PROTECTED]
ups.com [mailto:[EMAIL PROTECTED]
ups.com] On Behalf Of P Smith
Sent: Friday, September 22, 2006
3:17 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Sample Flex
2 based email interface



 









I need to create a Flex 2
based interface for email.  Is anyone aware of any examples?





If not in Flex 2, maybe
Flex 1.5?  (or if not that, then maybe even Flash?)





My initial requirement is
for a send email interface, ideally with a limited email address book.





The closest I have seen
is LaszloMail.com but  a)
they don't provide the source, b) the syntax would be LZX and not MXML anyway.





Pete



 

 __
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] Sample Flex 2 based email interface

2006-09-22 Thread Tracy Spratt












You can do simple mailto style links in
flex natively, but I don’t think that is what you want.

 

You will need a server-side app that does
the actual mail creation and send.  Flex would make a fine front end for that. 

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of P Smith
Sent: Friday, September 22, 2006
3:17 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Sample Flex
2 based email interface



 









I need to create a Flex 2
based interface for email.  Is anyone aware of any examples?





If not in Flex 2, maybe
Flex 1.5?  (or if not that, then maybe even Flash?)





My initial requirement is
for a send email interface, ideally with a limited email address book.





The closest I have seen
is LaszloMail.com but  a)
they don't provide the source, b) the syntax would be LZX and not MXML anyway.





Pete



 

 __
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] Sample Flex 2 based email interface

2006-09-22 Thread P Smith



I need to create a Flex 2 based interface for  email.  Is anyone aware of any examples?If not in Flex 2, maybe Flex 1.5?  (or if not that, then maybe even Flash?)My initial requirement is for a send email interface, ideally with a limited email address book.The closest I have seen is LaszloMail.com but  a) they don't provide the source, b) the syntax would be LZX and not MXML anyway.  Pete  __Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around http://mail.yahoo.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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: services-config.xml No Destination Found

2006-09-22 Thread Brendan Meutzner



Hi Jeff,I'm getting "No destination 'detinationName' exists in service flex.messaging.services.RemotingService"Here's a snippet of the TraceTarget output...'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer sending message 'A48825BE-FD16-7223-221D-D6D674320226'
'SFProdServer' channel endpoint set to http://

SFProdServer.xxx.com/flex2gateway/'SFProdServer' channel settings are:
SFProdServer" type="mx.messaging.channels.AMFChannel">
  
SFProdServer.xxx.com/flex2gateway/"/>      false  '
SFProdServer' pinging endpoint.'
SFProdServer' channel is connected.'SFProdServer' channel sending message:
(mx.messaging.messages::RemotingMessage)#0  body = (Array)#1    [0] ""  clientId = (null)  destination = "
CF_SFProdServer"  headers = (Object)#2  messageId = "A48825BE-FD16-7223-221D-D6D674320226"  operation = "saveXML"  source = "
reports.cf.cfc.metricXML"  timestamp = 0  timeToLive = 0'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer connected.'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer acknowledge of 'A48825BE-FD16-7223-221D-D6D674320226'.
'14A6969C-42E5-E3CA-9BA4-D6D63C8631BA' producer fault for 'A48825BE-FD16-7223-221D-D6D674320226'.Everything is in order as far as I can tell.Thanks,Brendan
On 9/21/06, Jeff Vroom <[EMAIL PROTECTED]> wrote:













  













Can you provide the exact error you are
seeing?   We have "Unknown destination 'x' and 'x'
is not a valid destination.   It also might help to turn on debug logging on
the client… you do this by adding the MXML tag:  
then look in your flashlog.txt file.

 

Jeff

 









From: [EMAIL PROTECTED]
ups.com [mailto:[EMAIL PROTECTED]
ups.com] On Behalf Of Brendan Meutzner
Sent: Thursday, September 21, 2006
2:46 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Re:
services-config.xml No Destination Found



 







Sorry... maybe some code might help elicit a
response...

My call:

 




My services-config.xml (snippet):

   
 
   

   

   

   

   
* 
   

   

   
 
   
false
   

   
remote 
   


   

   

   
false 
   

   
false
   

   
false 
   

   

   


   

    http://SFProdServer.xxx.com/flex2gateway/"
class="flex.messaging.endpoints.AMFEndpoint"/>
   
 
   
false
   

   
false
   
 
   

    


and to add to my previous list...

6) Browsing to http://SFProdServer.xxx.com/flex2gateway/
gives me the usual blank page, so I assume it's working...


Thanks,

Brendan






On 9/21/06, Brendan
Meutzner <
[EMAIL PROTECTED]> wrote:

I'm seriously at my wits end... I love CF, but I hate CF... 

I have my services-config.xml file setup with 2 destinations, one pointing to
my local dev CF server and the other to a production server.  I can get my
local dev connection to work, but continue to receive the No Destination Found
error for my production server. 

I am 100% positive on the following:

1) My test CFC file I'm trying to reach exists, and I'm referencing it in the
right location.
2) My local and production servers are configured and installed identically... 
3) The destination and chanel definitions exist in my services-config.xml file,
and the most recent file is getting compiled with my app (I've traced the
ServerConfig.xml content)
4) I had this working just fine with CF 7.01 and the B4 updated for cf_flex
connectivity (i'm moving my production environment which is why i'm re-installing).
5) I've read all the threads on this issue, and nothing has helped thus far.

I may have missed some points, but I'm 100% positive on them too (whatever they
are). 

Please God (aka the appropriate Adobe employee) help...

Brendan

Also, I haven't gotten to this point yet because of the difficulties above, but
does anybody have an example of how to use CF mapping in the destination
reference (so I can avoid figuring it out via trial and error)... thx 



 



 








  















__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Indiv

[flexcoders] Re: Managed Attribute for Actionscript class objects

2006-09-22 Thread laidezmon
Hoping to keep this from getting dropped to the bottom. 

Does anyone have any idea about this?

--- In flexcoders@yahoogroups.com, "laidezmon" <[EMAIL PROTECTED]> wrote:
>
> Question for the group here. 
> 
> I am working on an enterprise app, and I have gone through every piece
> of documentation and training I can get my hands on. 
> 
> I noticed in all the help for Flex, the training/tutorials say to use
> the [Managed] attribute on your bindable actionscript objects that
> refer to java objects. 
> 
> However I am going through the Cairngorm 2 store stuff, and none of
> thier actionscript objects have that attribute associated with them,
> even though they are actionscript objects that are translated to and
> from java objects. 
> 
> So when are you supposed to use it, and when are you now? Why is it
> different in cairngorm? What does it really do?
>






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] suppressing Status Error?

2006-09-22 Thread aaron smith



yeah I have the fault handler. it still gives me the status error.. On 9/22/06, aaron smith <
[EMAIL PROTECTED]> wrote:ok i guess that makes sence, but the error says it is an unhandled Status Event, wouldn't that be different than an Error. and I don't see anything about status events for the HTTPService.
or would it just be handling the send call on the httpservice?
try{  htservice.send( rops );}catch( e:Error ){  whatever}thanks john..On 9/21/06, 
John Grden <
[EMAIL PROTECTED]> wrote:












  



look at using try...catch...finaly in the docs, that's what you'll want to do to handle your errors
 
jpg 
On 9/20/06, aaron smith <[EMAIL PROTECTED]
> wrote:





hey all, I am wondering how exaclty I suppress this error.. Error #2044: Unhandled StatusEvent:. level=error, code=It is happening when i'm using the HTTPService class and -use-network = false; When the security popup comes up, i press settings, then I immediately get this unhandled status error.. I looked at HTTPService, not seeing any handlers for Status.. 
Any ideas???thanks,  -- [  JPG  ] 

  

















__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] suppressing Status Error?

2006-09-22 Thread aaron smith



ok i guess that makes sence, but the error says it is an unhandled Status Event, wouldn't that be different than an Error. and I don't see anything about status events for the HTTPService.or would it just be handling the send call on the httpservice?
try{  htservice.send( rops );}catch( e:Error ){  whatever}thanks john..On 9/21/06, John Grden <
[EMAIL PROTECTED]> wrote:












  



look at using try...catch...finaly in the docs, that's what you'll want to do to handle your errors
 
jpg 
On 9/20/06, aaron smith <[EMAIL PROTECTED]
> wrote:





hey all, I am wondering how exaclty I suppress this error.. Error #2044: Unhandled StatusEvent:. level=error, code=It is happening when i'm using the HTTPService class and -use-network = false; When the security popup comes up, i press settings, then I immediately get this unhandled status error.. I looked at HTTPService, not seeing any handlers for Status.. 
Any ideas???thanks,  -- [  JPG  ] 

  















__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Stack Overflow with circular managed associations.

2006-09-22 Thread thunderstumpgesatwork

Hi guys,

I think this may be a bug. I have some classes that have
bi-directional managed associations. If both sides are declared
lazy=false, I'm getting a stack overflow error in Flex when the
results are returned.

See the error output below. Any ideas? Shouldn't this work?

thanks,
Thunder

Error: Error #1023: Stack overflow occurred.
at
mx.events::PropertyChangeEvent/clone()[C:\dev\GMC\sdk\frameworks\mx\events\PropertyChangeEvent.as:223]
at
mx.collections::ArrayList/mx.collections:ArrayList::itemUpdateHandler()[C:\dev\GMC\sdk\frameworks\mx\collections\ArrayList.as:548]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
com.company.config::LevelKeyAttributesVO/dispatchEvent()[C:\Flex\src\company\com\company\config\LevelKeyAttributesVO.as:0]
at ()[C:\dev\enterprise_gmc\frameworks\mx\data\utils\Managed.as:412]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
mx.collections::ArrayList/mx.collections:ArrayList::itemUpdateHandler()[C:\dev\GMC\sdk\frameworks\mx\collections\ArrayList.as:551]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
com.company.config::LevelRelatedAttributesVO/dispatchEvent()[C:\Flex\src\company\com\company\config\LevelRelatedAttributesVO.as:0]
at ()[C:\dev\enterprise_gmc\frameworks\mx\data\utils\Managed.as:412]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
com.company.config::CubeItemVO/dispatchEvent()[C:\Flex\src\company\com\company\config\CubeItemVO.as:0]
at ()[C:\dev\enterprise_gmc\frameworks\mx\data\utils\Managed.as:412]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
com.company.config::CubeContainerVO/dispatchEvent()[C:\Flex\src\company\com\company\config\CubeContainerVO.as:0]
at ()[C:\dev\enterprise_gmc\frameworks\mx\data\utils\Managed.as:412]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
mx.collections::ArrayList/mx.collections:ArrayList::itemUpdateHandler()[C:\dev\GMC\sdk\frameworks\mx\collections\ArrayList.as:551]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
com.company.config::LevelVO/dispatchEvent()[C:\Flex\src\company\com\company\config\LevelVO.as:0]
at ()[C:\dev\enterprise_gmc\frameworks\mx\data\utils\Managed.as:412]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
mx.collections::ArrayList/mx.collections:ArrayList::itemUpdateHandler()[C:\dev\GMC\sdk\frameworks\mx\collections\ArrayList.as:551]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
com.company.config::LevelKeyAttributesVO/dispatchEvent()[C:\Flex\src\company\com\company\config\LevelKeyAttributesVO.as:0]
at ()[C:\dev\enterprise_gmc\frameworks\mx\data\utils\Managed.as:412]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
mx.collections::ArrayList/mx.collections:ArrayList::itemUpdateHandler()[C:\dev\GMC\sdk\frameworks\mx\collections\ArrayList.as:551]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
com.company.config::LevelRelatedAttributesVO/dispatchEvent()[C:\Flex\src\company\com\company\config\LevelRelatedAttributesVO.as:0]
at ()[C:\dev\enterprise_gmc\frameworks\mx\data\utils\Managed.as:412]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
com.company.config::CubeItemVO/dispatchEvent()[C:\Flex\src\company\com\company\config\CubeItemVO.as:0]
at ()[C:\dev\enterprise_gmc\frameworks\mx\data\utils\Managed.as:412]
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
com.company.config::CubeContainerVO/dispatchEvent()[C:\Flex\src\company\com\company\config\CubeContainerVO.as:0]
at ()[C:\dev\enterprise_gmc\frameworks\mx\data\utils\Managed.as:412]
at
flash.events::Eve

Re: [flexcoders] Flex jobs

2006-09-22 Thread Brendan Meutzner



I'm suprised that nobody has asked what skills you already have... are you a graphic designer, developer... what languages do you already know etc...  I think where you're coming from and where you want to go with Flex makes a big difference on where you should focus your learning...
BrendanOn 9/22/06, flex-guitar <[EMAIL PROTECTED]> wrote:













  






Hello 
Sri,
You 
should probably start by working through the 'Quick Start 
Tutorials' in Flex Builder. They are in the Tutorials and Help section of 
the Flex Start Page. What you need to learn will come clear as you see 
what Flex can do and what you want to do with it.
 
You 
can do a lot with Flex by manipulating the example code in the help files. So I 
guess my answer is to start with Flex and see where it takes 
you.
 
Hope 
this helps,
Derek
 

  -Original Message-From: [EMAIL PROTECTED]ups.com
 
  [mailto:flexcoders@yahoogroups.com]On Behalf Of 
  flexdeveloperSent: Friday, September 22, 2006 6:12 
  AMTo: [EMAIL PROTECTED]ups.comSubject: [flexcoders] 
  Flex jobs
  
  Hihow should start my career with flex, should i learn flash, xml, 
  php,asp or shall i directly learn flex, give me 
  suggessionThankssri______ NOD32 1.1768 (20060922) 
  Information __This message was checked by NOD32 antivirus 
  system.http://www.eset.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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Cairngorm diagram - new formats available for download!

2006-09-22 Thread Evan Gifford












Hey guys,

 

For those of you looking for the Cairngorm
diagram created by a collaboration of this group a while back, I have posted a
page where you can now download it in many formats:

 

  http://www.flexheads.com/cairngorm/

 

 

This diagram and any future Cairngorm
documentation efforts are now done at the cairngorm-documentation group,
located here - http://tech.groups.yahoo.com/group/cairngorm-documentation/

 

We are in the initial stages of creating eLearning,
interactive diagrams and other material to help the Flex development community
better understand Cairngorm, from the introduction to expert topics.

 

If you would like to contribute to this
effort, you can contact me directly, or simply join the cairngorm-documentation
group.

 

Thanks!

Evan




__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___








--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.405 / Virus Database: 268.12.7/454 - Release Date: 9/21/2006
 

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.405 / Virus Database: 268.12.7/454 - Release Date: 9/21/2006
 


RE: [flexcoders] Re: Compiler error 1061.... WHY?

2006-09-22 Thread Steve Kellogg @ Project SOC
OK, I'm officially an idiot.

Thanks for your help.

Steve

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Doug Lowder
Sent: Friday, September 22, 2006 10:50 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Compiler error 1061 WHY?

Probably just a case-mismatch.  Try ExternalInterface.call, with a
lowercase "c".

Doug

--- In flexcoders@yahoogroups.com, "Steve Kellogg @ Project SOC"
<[EMAIL PROTECTED]> wrote:
>
> Hello,
> 
>  
> 
>  
> 
> I hope that someone here can lend some insight.
> 
>  
> 
> I'm trying to integrate an external object from within an AS3 script.  
> 
>  
> 
> Towards the top of the  
>  
> 
> import flash.external.* ;
> 
>  
> 
> When I try to save the Flex project, I get an error on the following
line..
> 
>  
> 
> ret= ExternalInterface.Call("ffish_new", "FileStream",
> "system_config.xml","r") ;
> 
> 
> 
>  
> 
> The error reads:
> 
>  
> 
> "1061: Call to a possibly undefined method Call through a reference with
> static type Class."
> 
>  
> 
> Does this mean that it doesn't like "CALL"? Or does it mean that it
can't
> resolve "ffish_new"?
> 
>  
> 
> Thanks in Advance for any assistance?
> 
>  
> 
>  
> 
> Steve
> 
>  
> 
>  
> 
>  
> 
> Steve Kellogg
> 
> Peak8 Solutions
> 
> 1401 14th Street
> 
> Boulder, Colorado
> 
> 80302, USA
> 
> Fax: 303.415.2597
> 
> E-Mail: [EMAIL PROTECTED]
>







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

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

2006-09-22 Thread flex-guitar





Hello 
Sri,
You 
should probably start by working through the 'Quick Start 
Tutorials' in Flex Builder. They are in the Tutorials and Help section of 
the Flex Start Page. What you need to learn will come clear as you see 
what Flex can do and what you want to do with it.
 
You 
can do a lot with Flex by manipulating the example code in the help files. So I 
guess my answer is to start with Flex and see where it takes 
you.
 
Hope 
this helps,
Derek
 

  -Original Message-From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED]On Behalf Of 
  flexdeveloperSent: Friday, September 22, 2006 6:12 
  AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] 
  Flex jobs
  
  Hihow should start my career with flex, should i learn flash, xml, 
  php,asp or shall i directly learn flex, give me 
  suggessionThankssri__ NOD32 1.1768 (20060922) 
  Information __This message was checked by NOD32 antivirus 
  system.http://www.eset.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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] looping of a tree object

2006-09-22 Thread Tracy Spratt












If you are using e4x XML as the
dataProvider, the descendants() method will return an XMLList of all of the
decendents of any node.

 

If that won’t work for you then you
will need to use a recursive function to walk the tree.

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of feel8335
Sent: Thursday, September 21, 2006
11:29 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] looping of a
tree object



 







how to create a loop that can loop all the tree object
i.e. the tree 
node and their child. ?






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Flex jobs

2006-09-22 Thread Tracy Spratt












Go straight to Flex.  Flash
developers have a special advantage when using Flex, but you can be productive
in Flex without knowing Flash.

 

Since Flex requires a server-tier for any
data access, you should choose a server platform and get familiar with
it.  Any of them will work with Flex, although Flex can be specially
integrated with Cold fusion and J2EE web servers.

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of flexdeveloper
Sent: Friday, September 22, 2006
6:12 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex jobs



 







Hi
how should start my career with flex, should i learn flash, xml, php,
asp or shall i directly learn flex, give me suggession

Thanks
sri






__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] Re: Compiler error 1061.... WHY?

2006-09-22 Thread Doug Lowder
Probably just a case-mismatch.  Try ExternalInterface.call, with a
lowercase "c".

Doug

--- In flexcoders@yahoogroups.com, "Steve Kellogg @ Project SOC"
<[EMAIL PROTECTED]> wrote:
>
> Hello,
> 
>  
> 
>  
> 
> I hope that someone here can lend some insight.
> 
>  
> 
> I'm trying to integrate an external object from within an AS3 script.  
> 
>  
> 
> Towards the top of the  
>  
> 
> import flash.external.* ;
> 
>  
> 
> When I try to save the Flex project, I get an error on the following
line..
> 
>  
> 
> ret= ExternalInterface.Call("ffish_new", "FileStream",
> "system_config.xml","r") ;
> 
> 
> 
>  
> 
> The error reads:
> 
>  
> 
> "1061: Call to a possibly undefined method Call through a reference with
> static type Class."
> 
>  
> 
> Does this mean that it doesn't like "CALL"? Or does it mean that it
can't
> resolve "ffish_new"?
> 
>  
> 
> Thanks in Advance for any assistance?
> 
>  
> 
>  
> 
> Steve
> 
>  
> 
>  
> 
>  
> 
> Steve Kellogg
> 
> Peak8 Solutions
> 
> 1401 14th Street
> 
> Boulder, Colorado
> 
> 80302, USA
> 
> Fax: 303.415.2597
> 
> E-Mail: [EMAIL PROTECTED]
>







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Compiler error 1061.... WHY?

2006-09-22 Thread Steve Kellogg @ Project SOC










Hello,

 

 

I hope that someone here can lend some insight…

 

I’m trying to integrate an external object from within
an AS3 script.  

 

Towards the top of the 

 

import flash.external.* ;

 

When I try to save the Flex project, I get an error on the
following line..

 

ret= ExternalInterface.Call("ffish_new",
"FileStream", "system_config.xml","r") ;

    

 

The error reads:

 

“1061: Call to a possibly undefined method Call
through a reference with static type Class.”

 

Does this mean that it doesn’t like “CALL”?
Or does it mean that it can’t resolve “ffish_new”?

 

Thanks in Advance for any assistance?

 

 

Steve

 

 

 

Steve
Kellogg

Peak8
Solutions

1401 14th Street

Boulder, Colorado

80302, USA

Fax:
303.415.2597

E-Mail:
[EMAIL PROTECTED]

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___





[flexcoders] Re: Run ppt file in flex

2006-09-22 Thread Doug Lowder
Or for a cheaper alternative, $79 for a single-user FlashPaper2
license gets you the same manual-conversion capability.  I've used it
on several occasions to convert PowerPoint and PDF documents to SWF
and it does a great job.  The conversion is handled by a printer
driver through the File->Print dialog of the native application for
the document you want to convert, so basically any printable document
can be converted to SWF.

--- In flexcoders@yahoogroups.com, "dougmccune" <[EMAIL PROTECTED]> wrote:
>
> Someone mentioned Breeze already, but I figured I'd throw in that you
> can buy a single license of Breeze Presenter for about $1,000 (without
> buying the server or other more expensive parts), which lets you do
> the PowerPoint to SWF conversion. But you would still have to manually
> convert each PPT you wanted and then figure out how to pull that into
> Flex. 
> 
> --- In flexcoders@yahoogroups.com, Larry Larson  wrote:
> >
> > There is a useful (if expensive) application called Articulate that  
> > takes a PPT and turns into a swf that you could then, of course, use  
> > in Flex somehow.
> > 
> > Larry Larson
> > LarsonAssociates
> > NYC
> >
>







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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: Flex Data Services destination configuration documentation?!

2006-09-22 Thread Tom Chiverton
On Friday 22 September 2006 15:45, thunderstumpgesatwork wrote:
> The online docs have little bits of examples spread in many different
> pages, but no one place that documents the "schema domain" for the
> configurations.

I feel a visit to Adobe's wish list coming on...

-- 
Tom Chiverton
Helping to apprehensively synthesise advanced developments



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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 (possibly FDS) communicating with MS Exchange Server

2006-09-22 Thread Tom Chiverton
On Friday 22 September 2006 13:54, Steve Cox wrote:
> itself using the BinarySocket class. I don't know the format of exchange
> messages - whether it's even available, however I would bet it would be
> possible albeit not too simple.

It can be made to talk LDAP/IMAP.

-- 
Tom Chiverton
Helping to assertively conquer eigth-generation platforms



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: [Junk E-Mail - MED] [flexcoders] Re: Search Engine

2006-09-22 Thread Tom Chiverton
On Friday 22 September 2006 16:06, Shannon Hicks wrote:
> Using a custom collection and Verity is probably the way to go for you.

Sounds overkill for what's just a simple WHERE clause in some SQL somewhere.

-- 
Tom Chiverton
Helping to adaptively harness open-source materials



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Interlace text over FLV video

2006-09-22 Thread greg h



K,

Flex 2's default layout management is flat, just x and y coordinates. 
With layout="horizontal" when you add a child it is laid out to the
right (at a greater x coordinate).  With layout="vertical" when you add
a child it is laid out below (at a greater y coordinate).


If I understand your question correctly, you would like to layer the
text above the video.  Design environments often refer to this as
a
z-index or z-order.  Essentially a 3rd coordinate.  In Flex
this
requires you using a container specifying layout="absolute".  When
layout="absolute", the last child added to the display list is on top.

In your case I think this will mean adding both the VideoDisplay and a
Label or TextArea to a container providing layout="absolute".  You
can then set the x and y coordinates of the text control overlapping
the coordinates of the VideoDisplay.  Since the last child added
to the display list is on top, you would first add the VideoDisplay
with your text control added last.

Following are some notes from the training course:
Flex 2: Programming the Visual Experience

-- - - - - - 



Layering content using absolute layout

Three Flex layout containers allow the use of absolute positioning:

  Application container with the layout property set to absolute. 
  Panel container with the layout property set to absolute.
  Canvas container only allows absolute positioning.

You can create overlapping child components by setting your x and y properties appropriately.

If you have overlapping child components, the component MXML tag that
is lower in the code will appear on top of the components whose tags
are higher in the code.

-- - - - - - 




Please post back if this helps.

gOn 9/22/06, kristian_wright2002 <[EMAIL PROTECTED]> wrote:
I have an FLV video which I can play using the VideoDisplay component. I want to be able to interlace some text across this video whenplaying it (but not have it recorded on the video itself, so I canchange it when required).
I can't seem to see how this is done.  Adding the text as a child ofthe VideoDisplay fails, as it's trying to add a DisplayObject, and nota string.This leads me to think that I'll have to create the text as a
DisplayObject, but I'm not sure how...Any suggestions on how to achieve this?Cheers,K.


__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] test

2006-09-22 Thread Jason Sheedy
Hi,
I'm new to the list and just testing to make sure i can post.

-- 
Jason Sheedy
www.jmpj.net


If you really want to do something, you will find a way.
If you don't, you will find an excuse.



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: [Junk E-Mail - MED] [flexcoders] Re: Search Engine

2006-09-22 Thread Shannon Hicks





Using a custom collection and Verity is probably the way to 
go for you.
 
Shan


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of 
s_hernandez01Sent: Friday, September 22, 2006 8:25 
AMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - 
MED] [flexcoders] Re: Search Engine


No, I created a catalog in my app with a lot of products and I want 
tocreate a search box where if they type in a part number flex 
canretrieve that part number and display the details for that product. 
In addition, if they type in a category in the search box all theitems 
related to that category will appear.-Sal--- In [EMAIL PROTECTED]ups.com, 
Tom Chiverton ...>wrote:>> On 
Thursday 21 September 2006 15:02, s_hernandez01 wrote:> > A search 
engine for what items I have in my app. There's no database> > 
connected yet, everything is being called locally. However, in the> > 
future I do plan to be calling from a database using coldfusion.> 
> :points at google> You mean like that ?> > -- 
> Tom Chiverton> Helping to administratively evolve holistic 
infrastructures> > 
> 
> This email is sent for and on behalf of Halliwells LLP.> 
> Halliwells LLP is a limited liability partnership registered 
inEngland and Wales under registered number OC307980 whose 
registeredoffice address is at St James's Court Brown Street Manchester M2 
2JF.A list of members is available for inspection at the 
registeredoffice. Any reference to a partner in relation to Halliwells LLP 
meansa member of Halliwells LLP. Regulated by the Law Society.> 
> CONFIDENTIALITY> > This email is intended only for the 
use of the addressee named aboveand may be confidential or legally 
privileged. If you are not theaddressee you must not read it and must not 
use any informationcontained in nor copy it nor inform any person other than 
HalliwellsLLP or the addressee of its existence or contents. If you 
havereceived this email in error please delete it and notify 
HalliwellsLLP IT Department on 0870 365 8008.> > For more 
information about Halliwells LLP visit 
www.halliwells.com.>
--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.405 / Virus Database: 268.12.8/455 - Release Date: 
9/22/2006
__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.405 / Virus Database: 268.12.8/455 - Release Date: 9/22/2006
 


[flexcoders] tabnavigator broadcasting change

2006-09-22 Thread bghoward3
i am trying to use a listner that fires when a tabnavigator componnet 
is navigated.

i am using several iterations of this:

import mx.events.*;

public function createListener():void {
ProfileNavigator.addEventListener
(StateChangeEvent.selectedIndex, myClickListener, false, 0);
}

with no luck can someine point me in the right direction

i want to change another components state based on the view change in 
the tab navigator

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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Selected Tab Color

2006-09-22 Thread Bruce Denham
Is there really only one way to color a selected tab in a TabBar?:

Tab {
backgroundColor: #CC;
}

I've tried all kinds of things, but just read Peter Baird's entry on
someone else's post.

Anyone know a workaround?

Thanks,
Bruce






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: Flex Data Services destination configuration documentation?!

2006-09-22 Thread thunderstumpgesatwork
The online docs have little bits of examples spread in many different
pages, but no one place that documents the "schema domain" for the
configurations.

Thunder

--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]>
wrote:
>
> On Friday 22 September 2006 12:31, EECOLOR wrote:
> > want to know which options are available.
> 
> Have you read the (online) docs ?
> 
> -- 
> Tom Chiverton
> Helping to proactively introduce internet solutions
> 
> 
> 
> This email is sent for and on behalf of Halliwells LLP.
> 
> Halliwells LLP is a limited liability partnership registered in
England and Wales under registered number OC307980 whose registered
office address is at St James's Court Brown Street Manchester M2 2JF.
 A list of members is available for inspection at the registered
office. Any reference to a partner in relation to Halliwells LLP means
a member of Halliwells LLP. Regulated by the Law Society.
> 
> CONFIDENTIALITY
> 
> This email is intended only for the use of the addressee named above
and may be confidential or legally privileged.  If you are not the
addressee you must not read it and must not use any information
contained in nor copy it nor inform any person other than Halliwells
LLP or the addressee of its existence or contents.  If you have
received this email in error please delete it and notify Halliwells
LLP IT Department on 0870 365 8008.
> 
> For more information about Halliwells LLP visit www.halliwells.com.
>






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: Change DataGridColumn.dataField via AS

2006-09-22 Thread ben.clinkinbeard
Anyone? I figured this was pretty simple...

Thanks,
Ben

--- In flexcoders@yahoogroups.com, "ben.clinkinbeard"
<[EMAIL PROTECTED]> wrote:
>
> Hello, I am able to change the dataField property of one of my columns
> with AS, using this obvious) code.
> 
> genStatusColumn.dataField = "prelims";
> 
> Tracing the value before and after shows that it is successfully
> changed, but the DataGrid's display does not update accordingly. What
> am I missing here? How do I get the DataGrid to show the new value?
> 
> Thanks,
> Ben
>






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

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

2006-09-22 Thread Rich Tretola
I have to laugh at this question since you asked it from an email
address of '[EMAIL PROTECTED]'

Seriously, if you want to learn, there are plenty of resources out
there.  www.flex.org should get you started.

Rich

On 9/22/06, flexdeveloper <[EMAIL PROTECTED]> wrote:
> Hi
> how should start my career with flex, should i learn flash, xml, php,
> asp or shall i directly learn flex, give me suggession
>
> Thanks
> sri
>
>
>
>
>
>
> --
> 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
>
>
>
>
>
>
>
>
>
>
>


-- 
Rich Tretola

http://www.EverythingFlex.com


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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Interlace text over FLV video

2006-09-22 Thread kristian_wright2002
I have an FLV video which I can play using the VideoDisplay component.
 I want to be able to interlace some text across this video when
playing it (but not have it recorded on the video itself, so I can
change it when required).

I can't seem to see how this is done.  Adding the text as a child of
the VideoDisplay fails, as it's trying to add a DisplayObject, and not
a string.

This leads me to think that I'll have to create the text as a
DisplayObject, but I'm not sure how...

Any suggestions on how to achieve this?

Cheers,
K.






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] [Flex2][Datagrid] Bug when drag and drop rows with CTRL key -> Selection goes crazy

2006-09-22 Thread Carlos Rovira



Hi, A user of our spanish flex community (madeinflex.com) shows today a bug in Datagrid when use drag and drop. You could see it at (code example and preview available):
http://www.madeinflex.com/2006/09/18/pasando-datos-entre-dos-datagrids-con-dragn-drop/to reproduce the bug:1- Select one or more rows with CTRL2.-Without release CTRL drag the row(s) in one of the Datagrids
3.-You could see the selection goes crazyHope this help for the next flex 2 updater.Thanks.-- ::| Carlos Rovira::| http://www.carlosrovira.com::| 
http://www.madeinflex.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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: Flex (possibly FDS) communicating with MS Exchange Server

2006-09-22 Thread Mark Piller
Alternatively you could create a .NET facade for the Exchange Server
functionality you want to access from Flex and expose it as plain C#
or VB.NET objects using WebORB for .NET. Your Flex client would access
the exposed .NET destinations using RemoteObject. This approach would
save you a lot of time and alleviate from messing with XML
generation/parsing.

Cheers,
Mark

--- In flexcoders@yahoogroups.com, "Nick Collins" <[EMAIL PROTECTED]> wrote:
>
> I'm sure it would be very possible. However, you need to remember that
> Flex/Flash does not have any data connectivity in and of itself. It
needs
> that middle logic tier to handle that communication. Therefore, you
could
> pretty easily write your .Net code to do that, then use Web Services, or
> just having it generate XML and using HTTPRequest to get your data
into your
> Flex frontend.
> 
> On 9/22/06, Mike Anderson <[EMAIL PROTECTED]> wrote:
> >
> >   Greetings All,
> >
> > I am not trying to reinvent the wheel, and create another Contact
> > Manager - since Outlook combined with Exchange Server, has over 90% of
> > what everybody needs to manage their e-mail and contacts.
> >
> > However, it would be SO nice to have the ability to create custom
> > screens within a Flex Application, that contains data which resides on
> > the Exchange Server.
> >
> > Within the company I work for, there are 7 other sub-companies
that work
> > underneath the main umbrella company. All our employees have multiple
> > roles, and must manage products & services across all the other
> > companies.
> >
> > What we do, is just have multiple identities (e-mail aliases) for our
> > users, so that way we can have a single Mail Server with 1 mail store.
> >
> > For each unique Flex App that I write, it would be so wonderful to
pull
> > in e-mail & contacts into the application. I know that Microsoft has
> > some API's that software developers can hook into - and that it's a
> > piece of cake, if you wanted to use .NET or some other MS Technology.
> >
> > What about a Flex App though? Does anybody have any ideas on how to
> > communicate with an Exchange Server?
> >
> > If anybody has experience in this area, or some sample apps that
> > demonstrate this functionality firsthand, I'd be very appreciative.
> >
> > Thanks!
> >
> > Mike
> >  
> >
>






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] IDE

2006-09-22 Thread Christian Edward Gruber






Great - glad to hear it.  It's a relief

Matt Chotin wrote:


  
  
  
  
  We are
hoping that the Windows build will
support 3.1 and 3.2, Mac will only support 3.2 (which is the first
version
officially supported by Eclipse on the Mac).  
   
  
  
  
  
  
  
  




-- 








christian gruber +
process coach and architect
Israfil
Consulting Services
Corporation
email [EMAIL PROTECTED] +
bus
905.640.1119 + mob 416.998.6023



__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___




[flexcoders] Flex jobs

2006-09-22 Thread flexdeveloper
Hi
how should start my career with flex, should i learn flash, xml, php,
asp or shall i directly learn flex, give me suggession

Thanks
sri






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Newbie widget question: those cool floating images

2006-09-22 Thread jack_freud
I'm trying to find out how a couple of those samples work, that have
big thumbnail images that you can drag around, similar to Picasa...
one example is the Amazon Single Search app:
http://d-p.com/RIA/Amazon/index.html

If you can point me in the direction, I'd really appreciate it.

Jack






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: David George Presentation re Improving Performance of Flex Apps

2006-09-22 Thread dirtmediaworld
Yep, it works just great now. Thanks. Great presentation.
-Dustin

--- In flexcoders@yahoogroups.com, "greg h" <[EMAIL PROTECTED]> wrote:
>
> Aaron and Dustin,
> 
> My guess is problems you are reporting are transient.  I just used
the scrub
> bar to seek ahead and the audio was there.  Also, the audio on the
orginal
> was clean.
> 
> If need be, click refresh on your browser to reload the
presentation, and
> then use the scrub bar to move forward to where the audio had
dropped out.
> 
> hth,
> 
> g
> 






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Invalid Root problem

2006-09-22 Thread cheftimbob
I'm new to this so please bear with me.

I've installed Flex2 IDE on my desktop PC. I have installed the FDS on 
one of our test AIX servers running WAS 5.1. The samples applications 
all work. 

I'm working through some of the tutorials for using the data management 
services. When I create the new Flex Data Services project I get to the 
point where I have to specify the root folder and root url. The root 
url is easy enough. What do I put in for the root folder though? All of 
the posts I've seen for this typically are where someone is trying to 
access a server running on their desktop PC or on a mapped server. This 
is an AIX box. 






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: photo gallery

2006-09-22 Thread Bela Hajzer



--- In flexcoders@yahoogroups.com, "b0b0bb0b" <[EMAIL PROTECTED]> wrote:>> Cheers I had a look at SWFLoader, but it doesn't do anything > differently. I use a Image tag and set the source of the image at > run time. The actual source comes from an XML document which I use > for searching. I start of with a large XML document that contains > everything (this does not load any images), I then search that XML > for keywords and similiar and create a new smaller XML document. This > new XML documnet then creates the gallery, which gets loaded.> > When the app loads you get a loading bar, is there any way to get a > loading bar for each image? this might help find out whats happening.> > Thanks again.> > --- In flexcoders@yahoogroups.com, "Bela Hajzer" Bela.Hajzer@ > wrote:> > > --> > > > Hi,> > > > Looks like you've got some resource problem.> > > > My first guess is that you should load your jpeg dynamically using> > SWFLoader controll instead of loading all> > > > at once in the PhotoService as.> > > > I am going to give a try myself in a few days time.> > > > Bye Bela> >>Hi again,
May I suggest to monitor this image loading, just put the following into your ThumbnailView.mxml:

change="startTime(event)"    //put it into photoList, your HorizontalList
complete="endTime(event)"   //put it into photoImage, your currently selected  image
   //put it into e.x. your VBox, and the following into 
 private function startTime(e:Event):void {sTime = getTimer();}private function endTime(e:Event):void {var eTime:Number=getTimer();var totalTime:Number=eTime - sTime;ta1.text = "totalTime: " + totalTime;totalTime=0;}  
So whenever you click any thumbnail you gonna get the elapsed time of the currently selected image's loading.
Bottleneck can occur at different level, just try to isolate it.
For the first time you get NaN in your ta1 TextArea, just ignore it.
ps: In the Build and Deploy pdf you can find two chapters about optimization. 
Cheers Bela
 
 

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: Run ppt file in flex

2006-09-22 Thread dougmccune
Someone mentioned Breeze already, but I figured I'd throw in that you
can buy a single license of Breeze Presenter for about $1,000 (without
buying the server or other more expensive parts), which lets you do
the PowerPoint to SWF conversion. But you would still have to manually
convert each PPT you wanted and then figure out how to pull that into
Flex. 

--- In flexcoders@yahoogroups.com, Larry Larson <[EMAIL PROTECTED]> wrote:
>
> There is a useful (if expensive) application called Articulate that  
> takes a PPT and turns into a swf that you could then, of course, use  
> in Flex somehow.
> 
> Larry Larson
> LarsonAssociates
> NYC
>






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: Unable to access UserTransaction in DataService.

2006-09-22 Thread erik_jen5en
JBoss does use the java:/comp/UserTransaction JNDI name for the
UserTransaction, I have used it myself in my own apps.  

Just incase I have tried setting the UserTxJNDI system property to the
values:

UserTransaction
java:/UserTransaction
java:/comp/UserTransaction

All fail!  There must be some other configuration that is needed in
the Flex WAR to make this work.

Thanks,

Erik

--- In flexcoders@yahoogroups.com, "Jeff Vroom" <[EMAIL PROTECTED]> wrote:
>
> This error occurs because either the server failed to find the
> UserTransaction component or because the "begin" call on the
> UserTransaction is failing.  If you turn on debug logging for the
> server, I think you should get a stack trace and possibly more details
> about the exception which is occurring.  By default, FDS is looking for
> the UserTransaction in JNDI at the standard location:
> "java:comp/UserTransaction" but it might be that in some versions of
> JBoss, this is at a different location.  I found from a quick google
> search that maybe they are just using the name "UserTransaction" in at
> least some versions of Jboss.  You can get this behavior by setting the
> system property:
> 
>  
> 
> UserTxJndiName
> 
>  
> 
> To the path name where Jboss has this registered.  
> 
>  
> 
> So you'd have to set this system property someplace... for example if
> you can find where you add command line args, you could do:  "java
> -DUserTxJNDIName=UserTransaction "
> 
>  
> 
> Jeff
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of erik_jen5en
> Sent: Thursday, September 21, 2006 12:51 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Unable to access UserTransaction in DataService.
> 
>  
> 
> I am trying to use a data service on JBoss but keep getting the
> following error,
> 
> [RPC Fault faultString="Unable to access UserTransaction in
> DataService." faultCode="Server.Processing" faultDetail="null"]
> at
> mx.data::ConcreteDataService/http://www.adobe.com/2006/flex/mx/internal:
> :dispatchFaultEvent
>  ()
> at mx.data::CommitResponder/fault()
> at
> mx.rpc::AsyncRequest/fault()[C:\dev\enterprise_gmc\frameworks\mx\rpc\Asy
> ncRequest.as:107]
> at
> NetConnectionChannel.as$37::NetConnectionMessageResponder/NetConnectionC
> hannel.as$37:NetConnectionMessageResponder::statusHandler()[C:\dev\enter
> prise_gmc\frameworks\mx\messaging\channels\NetConnectionChannel.as:458]
> at
> mx.messaging::MessageResponder/status()[C:\dev\enterprise_gmc\frameworks
> \mx\messaging\MessageResponder.as:225]
> 
> Is there some additional setup for transactions needed on the JBoss
> application server?
>






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Invalid Root problem

2006-09-22 Thread cheftimbob
Sorry if this shows up a second time. I posted question yesterday but 
don't see it yet.

I'm using Flex2 IDE on my desktop PC and trying to work through the 
samples for FDS. 

I've installed FDS on WAS on AIX. The samples are work well there. 

I want to create a new FDS project. I get to the screen that requires I 
enter the root folder and URL. The URL is no issue since I give I put 
in the location to the samples applications. I don't understand what to 
put in for the root folder though. I can't map a drive to the AIX 
location. I tried using the //server/restOfPath and \\server\restOfPath 
and those don't work either. How do I accomplish this?






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: Search Engine

2006-09-22 Thread s_hernandez01
No, I created a catalog in my app with a lot of products and I want to
create a search box where if they type in a part number flex can
retrieve that part number and display the details for that product. 
In addition, if they type in a category in the search box all the
items related to that category will appear.

-Sal


--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]>
wrote:
>
> On Thursday 21 September 2006 15:02, s_hernandez01 wrote:
> > A search engine for what items I have in my app.  There's no database
> > connected yet, everything is being called locally.  However, in the
> > future I do plan to be calling from a database using coldfusion.
> 
> :points at google
> You mean like that ?
> 
> -- 
> Tom Chiverton
> Helping to administratively evolve holistic infrastructures
> 
> 
> 
> This email is sent for and on behalf of Halliwells LLP.
> 
> Halliwells LLP is a limited liability partnership registered in
England and Wales under registered number OC307980 whose registered
office address is at St James's Court Brown Street Manchester M2 2JF.
 A list of members is available for inspection at the registered
office. Any reference to a partner in relation to Halliwells LLP means
a member of Halliwells LLP. Regulated by the Law Society.
> 
> CONFIDENTIALITY
> 
> This email is intended only for the use of the addressee named above
and may be confidential or legally privileged.  If you are not the
addressee you must not read it and must not use any information
contained in nor copy it nor inform any person other than Halliwells
LLP or the addressee of its existence or contents.  If you have
received this email in error please delete it and notify Halliwells
LLP IT Department on 0870 365 8008.
> 
> For more information about Halliwells LLP visit www.halliwells.com.
>







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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Managed Attribute for Actionscript class objects

2006-09-22 Thread laidezmon
Question for the group here. 

I am working on an enterprise app, and I have gone through every piece
of documentation and training I can get my hands on. 

I noticed in all the help for Flex, the training/tutorials say to use
the [Managed] attribute on your bindable actionscript objects that
refer to java objects. 

However I am going through the Cairngorm 2 store stuff, and none of
thier actionscript objects have that attribute associated with them,
even though they are actionscript objects that are translated to and
from java objects. 

So when are you supposed to use it, and when are you now? Why is it
different in cairngorm? What does it really do? 






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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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 (possibly FDS) communicating with MS Exchange Server

2006-09-22 Thread Nick Collins



I'm sure it would be very possible. However, you need to remember that Flex/Flash does not have any data connectivity in and of itself. It needs that middle logic tier to handle that communication. Therefore, you could pretty easily write your .Net code to do that, then use Web Services, or just having it generate XML and using HTTPRequest to get your data into your Flex frontend.
On 9/22/06, Mike Anderson <[EMAIL PROTECTED]> wrote:













  



Greetings All,

I am not trying to reinvent the wheel, and create another Contact
Manager - since Outlook combined with Exchange Server, has over 90% of
what everybody needs to manage their e-mail and contacts.

However, it would be SO nice to have the ability to create custom
screens within a Flex Application, that contains data which resides on
the Exchange Server.

Within the company I work for, there are 7 other sub-companies that work
underneath the main umbrella company.  All our employees have multiple
roles, and must manage products & services across all the other
companies.

What we do, is just have multiple identities (e-mail aliases) for our
users, so that way we can have a single Mail Server with 1 mail store.

For each unique Flex App that I write, it would be so wonderful to pull
in e-mail & contacts into the application.  I know that Microsoft has
some API's that software developers can hook into - and that it's a
piece of cake, if you wanted to use .NET or some other MS Technology.

What about a Flex App though?  Does anybody have any ideas on how to
communicate with an Exchange Server?

If anybody has experience in this area, or some sample apps that
demonstrate this functionality firsthand, I'd be very appreciative.

Thanks!

Mike

  















__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Flex Data Services destination configuration documentation?!

2006-09-22 Thread EECOLOR



I have looked in all documents i can find, but can not find which settings i can use on the different tags in the flex-services.xml file. I might have missed some, so if you have a location, you're welcome to share :)

 
 
Greetz Erik

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Flex Application layout mechanism

2006-09-22 Thread EECOLOR



All problems (so far) concerning modules have faded for me :) Big thnx to mr. Gonzalez for pointing me at some undocumented classes. For reference i will tell you what i tried and which problems i encountered:

 
The first thing i tried was creating libraries (swc files). I would then extract the swf from the library and load it dynamically into my base flex application, instantiated the component and all was well. This worked fine with Text components but failed when i used a TextArea. I got a strange error regarding some resource bundle. This was solved by forcing the "
${flexlib}/locale/en_US/framework_rb.swc" file into my main application. The next problem that came up was some runtime error about a missing class definition. This was caused by missing default styles, which are automatically handled by mxmlc, but not by compc. This could be solved by getting the default styles definitions from a compiled application's generated AS files and put them into my component. This turned out to be very messy and i gave up using a library as a module.

 
The second thing i tried was using the mx.core.Application class as a base for each module. This worked really well with the styles and all that kind of shizzle. There was however one little problem: the loaded application did not handle resizes well and did not participate very well in the whole layout mechanism. I have tried detecting changes in its childen and passing it to the parent loader, setting the parent loader as parent, etc. All very messy...

 
The last and working solution (for me) is using a Canvas as base for my modules. In the module class definition i have the following metadata tag present: [Frame(factoryClass="mx.core.FlexApplicationBootstrap
")], this tag makes sure i can compile the mxml file (which extends the module / Canvas) with the mxmlc compiler. Notice that i did not use the [Frame(factoryClass="mx.core.FlexModuleFactory")] tag. The reason is as with the first set of problems: styles. Components are messed up when using this type of factory (for example a datagrid has a black rollover color).

 
In short the (simplified) code to get a module somewhere on the stage:
 
//event handler for Event.INIT on the loader
private function _moduleInitialized(e:Event):void{   var loaderInfo:LoaderInfo = e.target as LoaderInfo;   var applicationBootstrap:FlexApplicationBootstrap = loaderInfo.content as FlexApplicationBootstrap;
   //we can now delete the reference to the loader because we no longer need the loader.   delete _loaders[loaderInfo.loader];   applicationBootstrap.addEventListener("ready", _moduleReady);};

 
private function _moduleReady(e:Event):void{
   var moduleBootstrap:FlexApplicationBootstrap = e.target as FlexApplicationBootstrap;   var module:IModule = moduleBootstrap.create() as IModule;
   
   addChild(module as DisplayObject);
};
 
Hope this is of any use for some1 in the future.
 
 
Greetz Erik
 

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Flex Data Services destination configuration documentation?!

2006-09-22 Thread Tom Chiverton
On Friday 22 September 2006 12:31, EECOLOR wrote:
> want to know which options are available.

Have you read the (online) docs ?

-- 
Tom Chiverton
Helping to proactively introduce internet solutions



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] ColdFusion adapter for remoting forgets super classes.

2006-09-22 Thread EECOLOR



Hello,
 
i noticed that the ColdFusion adapter for remoting (which comes with the 7.02 update) does not encode properties of Value Objects that are super classes. The problem lies in the coldfusion.flash.messaging.io.amf.Translator.CFASSerializer
 class. This is the class that converts a ColdFusion object to a java object before its encoded in AMF.
 
This line causes the problem:
 
Object props[] = (Object[])CFCMetaData.get("PROPERTIES");
 
for(int i = 0; i < props.length; i++)
 
 
It does not cause a problem directly, the problem is that it forgets super classes that it might have. This means properties defined on superclasses are not encoded to AMF and will never reach your application.

 
 
Greetz Erik

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: Where can I find the source code of Flex2 framework?

2006-09-22 Thread Michael Schmalle



> They are (most likely) like the rpc sources not included.No, they are included. If you have a registered version of the charting components for FB2, you will find them here;C:\Program Files\Adobe\Flex Builder 2\Flex SDK 2\frameworks\source\mx\charts
At least that is where they are on my computer.Peace, MikeOn 9/22/06, EECOLOR <[EMAIL PROTECTED]
> wrote:












  



They are (most likely) like the rpc sources not included.

  













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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Flex Data Services destination configuration documentation?!

2006-09-22 Thread EECOLOR



I have to agree with you on the fact that this still doesnt help alot. I want to know which options are available. So the question remains. Any1 here who has a better awnser then i had?
 
 
Greetz Erik

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: Where can I find the source code of Flex2 framework?

2006-09-22 Thread EECOLOR



They are (most likely) like the rpc sources not included.

__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



  1   2   >