Re: [flexcoders] Re: circular image in flex

2016-08-10 Thread Ernest Breau ernest.br...@gmail.com [flexcoders]
Try this one


http://www.adobe.com/2006/mxml;layout="vertical"
   verticalAlign="middle"backgroundColor="white"
initialize="init();">




http://www.helpexamples.com/flash/images/image1.jpg;
 resize="image_resize(event);">


 


___
Ernest E. Breau Jr.
Senior Coldfusion Developer
  cell: (508) 264-9856
   email: ernest.br...@gmail.com
resume: http://cfengineers.com
  twitter: http://twitter.com/cfengineers


On Wed, Aug 10, 2016 at 9:09 AM, stinas...@yahoo.com [flexcoders] <
flexcoders@yahoogroups.com> wrote:

>
>
> Any help guys?
> 
>


[flexcoders] Re: circular image in flex

2016-08-10 Thread stinas...@yahoo.com [flexcoders]
Any help guys?

Re: [flexcoders] Re: Flex 1.5 SSL implementation solution required

2016-07-18 Thread Nick Collins ndcoll...@gmail.com [flexcoders]
Randall is correct. I use ES6 along with Babel and Webpack happily with my
React coding. If you want to dig in and get your hands dirty, check out
Gluestick  (https://www.drivenbycode.com/getting-started-with-gluestick/) .
It is an excellent (IMHO) CLI tool for scaffolding out a React site to get
started and learn how to use the platform.

On Sat, Jul 9, 2016 at 5:09 AM, Randall Tinfow rtin...@yahoo.com
[flexcoders]  wrote:

>
>
> 
>
> 6
>
> Not a big deal for this weenie.
>
> RT
>
>
> 
>


[flexcoders] Re: Flex 1.5 SSL implementation solution required

2016-07-09 Thread Randall Tinfow rtin...@yahoo.com [flexcoders]


6

Not a big deal for this weenie.

RT




RE: [flexcoders] Re: Flow Control in Flex

2016-03-03 Thread Harris Reynolds hreynol...@yahoo.com [flexcoders]
It is probably just a matter of my being more familiar with Flash than Flex;  
that, exacerbated by the sample explorer application demoing Flow Control using 
an Accordian and a very 
--- Steven Webster <swebs...@iterationtwo.co.uk> wrote:
> 
> What can't you achieve with a viewstack and buttons
> ?
> 
> Steven 
> 
> > -Original Message-
> > From: Harris Reynolds
> [mailto:hreynol...@yahoo.com] 
> > Sent: 18 March 2005 14:59
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Re: Flow Control in Flex
> > 
> > 
> > 
> > I feel like I am trying to put a square peg in a
> round hole 
> > using Flex to create a Wizard based app (Next/Back
> flow control).  
> > Components like Accordian and ViewStack are cool,
> but not 
> > great for a series of 10 to 15 questions.
> > 
> > Has anyone actually implemented a solution where
> you have 
> > several questions where the answers dictate the
> flow of the 
> > questionaire?
> > 
> > If there isn't a good way to do this in Flex I can
> simply 
> > revert to using the Screens/Forms in Flash MX Pro;
>  maybe in 
> > this case Flash is just the right tool for the
> job.
> > 
> > Anyone have some thoughts on this?  Macromedia?
> > 
> > ~harris
> > 
> > 
> > --- In flexcoders@yahoogroups.com, Abdul Qabiz
> <aqabiz@m...> wrote:
> > > First question: You can use Accordion but it
> isn't like the
> > typical ones,
> > > but you can make one using ViewStack, Panel &
> ControlBar, I guess
> > so...
> > > 
> > > Second Question: Look into ASDocs, here is the
> link:
> > >
> http://livedocs.macromedia.com/flex/15/asdocs_en/
> > > 
> > > 
> > > -abdul
> > > 
> > > -Original Message-
> > > From: Harris Reynolds [mailto:hreynolds2@y...]
> > > Sent: Sunday, March 13, 2005 6:22 AM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Flow Control in Flex
> > > 
> > > 
> > > 
> > > Quick question:  What is the primary control one
> would use 
> > in Flex to 
> > > implement a Wizard like application?  I am
> looking for
> > something 
> > > similar to Screens in Flash.  I have looked
> through the explorer 
> > > example, but didn't see anything for
> implementing flow control.
> > > 
> > > Also, is there a "Components Dictionary"
> somewhere in the Flex 
> > > documentation similar to the one for Flash MX
> components?  I'd
> > like 
> > > to see all the properties/methods/events
> available on all the 
> > > available Flex components.
> > > 
> > > TIA,
> > > 
> > > ~mh
> > > 
> > > 
> > > 
> > > 
> > > 
> > >  
> > > Yahoo! Groups Links
> > 
> > 
> > 
> > 
> > 
> >  
> > Yahoo! Groups Links
> > 
> > 
> > 
> >  
> > 
> > 
> > --
> > No virus found in this incoming message.
> > Checked by AVG Anti-Virus.
> > Version: 7.0.308 / Virus Database: 266.7.3 -
> Release Date: 15/03/2005
> >  
> > 
> 
> -- 
> No virus found in this outgoing message.
> Checked by AVG Anti-Virus.
> Version: 7.0.308 / Virus Database: 266.7.3 - Release
> Date: 15/03/2005
>  
> 
> 
> 
>  
> Yahoo! Groups Links
> 
> 
> 
> 
> 
> 


[flexcoders] Re: flex multiple filter function using text input, combobox and date range

2015-12-04 Thread stinas...@yahoo.com [flexcoders]
i have this date range filter function i had used in one of my projects, and 
would like to include it in the overall filter function above; 

 protected function arrColl_filterFunc(item:Object):Boolean
{
var cDate:Number=Date.parse(item.hireDate);

if (!sDate || !eDate)
{
return true;
}

if (sDate.selectedDate && eDate.selectedDate)
{
return (sDate.selectedDate.time <= cDate) && 
(eDate.selectedDate.time >= cDate);
}
else if (sDate.selectedDate)
{
return sDate.selectedDate.time <= cDate;
}
else if (eDate.selectedDate)
{
return eDate.selectedDate.time >= cDate;
}
else
{
return true;
}

}

protected function initDate():void
{
sDate.selectedDate=MIN_DATE;
sDate.selectableRange={rangeStart: MIN_DATE, rangeEnd: 
MAX_DATE};

eDate.selectedDate=MAX_DATE;
eDate.selectableRange=sDate.selectableRange;
}

 

 



[flexcoders] Re: flex multiple filter function using text input, combobox and date range

2015-12-04 Thread stinas...@yahoo.com [flexcoders]
Please Some one help me

Re: [flexcoders] Re: flex multiple filter function using text input, combobox and date range

2015-12-03 Thread stinas...@yahoo.com [flexcoders]
Guidance on how to add a date range filter 

Re: [flexcoders] Re: flex multiple filter function using text input, combobox and date range

2015-12-03 Thread Dave Glasser dglas...@pobox.com [flexcoders]
Help with what?

  From: "stinas...@yahoo.com [flexcoders]" <flexcoders@yahoogroups.com>
 To: flexcoders@yahoogroups.com 
 Sent: Thursday, December 3, 2015 9:31 AM
 Subject: [flexcoders] Re: flex multiple filter function using text input, 
combobox and date range
   
 


any help?



 

[flexcoders] Re: flex multiple filter function using text input, combobox and date range

2015-12-03 Thread stinas...@yahoo.com [flexcoders]
any help?

[flexcoders] Re: Memory leaks

2015-09-25 Thread sherwoodspo...@gmail.com [flexcoders]
To be even more memory conscious, don't instantiate "myDataCalendar" until you 
have to use it.  Your suggestion indicates you're doing it whenever the 
object/class instantiates.
 

 function ChangeWeekHandler(Event){
   if(!myDataCalendar) myDataCalendar = new ArrayCollection();
   .
   .
   .
 }
 

 On top of that, make sure you free it up (in the case garbage collection 
doesn't pick it up).  You can do this by simply setting it to null when you're 
done with it.
 

 myDataCalendar = null;



[flexcoders] Re: Memory leaks

2015-09-24 Thread shravanso...@yahoo.com [flexcoders]
Combine variable declaration and object creation in single statement. See the 
below pseudo code for example: 

private var myDataCalendar :ArrayCollection=new ArrayCollection();

function ChangeWeekHandler(Event){
 myDataCalendar= HttpServiceToGetNextWeekData(); 
 myDataCalendar.refresh();
}
Note: HttpServiceToGetNextWeekData() should return anonymous objectof type 
ArrayCollection.

Hope this helps. :-)

[flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread stinas...@yahoo.com [flexcoders]
Anyone out there with a solution to this issue? i have been using that code for 
so long and it worked perfectly. But now for some reason the uploaded file name 
doesn't appear in the textinput even if the file is actually uploaded onto the 
server

RE: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]
I think you’re the only flex developer left?

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: 23 September 2015 14:05
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: uploading files in flex using coldfusion 11



Anyone out there with a solution to this issue? i have been using that code for 
so long and it worked perfectly. But now for some reason the uploaded file name 
doesn't appear in the textinput even if the file is actually uploaded onto the 
server





This message and any attachment are intended solely for the addressee
and may contain confidential information. If you have received this
message in error, please send it back to me, and immediately delete it. 

Please do not use, copy or disclose the information contained in this
message or in any attachment.  Any views or opinions expressed by the
author of this email do not necessarily reflect the views of the
University of Nottingham.

This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system, you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation.



RE: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread 'Merrill, Jason' jason.merr...@bankofamerica.com [flexcoders]
As Julian said, you may very well very well be the last flex developer left. 
And for that matter, the last ColdFusion developer.

It could be a server environment change that is incompatible now with either 
Flex or ColdFusion. Technologies change and move on, sorry if that doesn’t 
help. Good luck.

Jason Merrill
Instructional Technology Architect II
Bank of America  Global Technology and Operations
c: 703.302.9265






From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: Wednesday, September 23, 2015 9:05 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: uploading files in flex using coldfusion 11



Anyone out there with a solution to this issue? i have been using that code for 
so long and it worked perfectly. But now for some reason the uploaded file name 
doesn't appear in the textinput even if the file is actually uploaded onto the 
server


--
This message, and any attachments, is for the intended recipient(s) only, may 
contain information that is privileged, confidential and/or proprietary and 
subject to important terms and conditions available at 
http://www.bankofamerica.com/emaildisclaimer.   If you are not the intended 
recipient, please delete this message.


RE: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]
One of the most amazing things I’ve ever seen is the speed with which all the 
flash and flex developers abandoned the tools once it was clear that Apple had 
won the battle of the Flash player.

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: 23 September 2015 14:30
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11


As Julian said, you may very well very well be the last flex developer left. 
And for that matter, the last ColdFusion developer.

It could be a server environment change that is incompatible now with either 
Flex or ColdFusion. Technologies change and move on, sorry if that doesn’t 
help. Good luck.

Jason Merrill
Instructional Technology Architect II
Bank of America  Global Technology and Operations
c: 703.302.9265






From: flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com> 
[mailto:flexcoders@yahoogroups.com]
Sent: Wednesday, September 23, 2015 9:05 AM
To: flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>
Subject: [flexcoders] Re: uploading files in flex using coldfusion 11



Anyone out there with a solution to this issue? i have been using that code for 
so long and it worked perfectly. But now for some reason the uploaded file name 
doesn't appear in the textinput even if the file is actually uploaded onto the 
server


This message, and any attachments, is for the intended recipient(s) only, may 
contain information that is privileged, confidential and/or proprietary and 
subject to important terms and conditions available at 
http://www.bankofamerica.com/emaildisclaimer. If you are not the intended 
recipient, please delete this message.





This message and any attachment are intended solely for the addressee
and may contain confidential information. If you have received this
message in error, please send it back to me, and immediately delete it. 

Please do not use, copy or disclose the information contained in this
message or in any attachment.  Any views or opinions expressed by the
author of this email do not necessarily reflect the views of the
University of Nottingham.

This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system, you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation.



RE: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]
Well, there was a  time when the world held its breath for Apple putting the 
Flash Player in iOS. Is didn’t, and the flash and flex lists died. Just my 
experience.

Now we have browser automagically preventing flash, facebook asking for it to 
be removed etc etc. Most people have moved away from it.

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: 23 September 2015 15:28
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: uploading files in flex using coldfusion 11



That's news to me, that Apple "won the battle of the Flash Player." I have an 
iOS Flex app in the Apple App Store. And the Flash player is probably still 
installed in about 97% of desktop browsers.


From: "Julian Tenney 
julian.ten...@nottingham.ac.uk<mailto:julian.ten...@nottingham.ac.uk> 
[flexcoders]" <flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
To: "flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>" 
<flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
Sent: Wednesday, September 23, 2015 9:33 AM
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11


One of the most amazing things I’ve ever seen is the speed with which all the 
flash and flex developers abandoned the tools once it was clear that Apple had 
won the battle of the Flash player.







This message and any attachment are intended solely for the addressee
and may contain confidential information. If you have received this
message in error, please send it back to me, and immediately delete it. 

Please do not use, copy or disclose the information contained in this
message or in any attachment.  Any views or opinions expressed by the
author of this email do not necessarily reflect the views of the
University of Nottingham.

This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system, you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation.



RE: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Thomas Sammons tsamm...@sei.cmu.edu [flexcoders]
What does this have to do with helping the original poster with his issue?

But, just because I don’t like Trolls who bash Flash or anything else just to 
try to show their superior intellect and insufferable opinions, if “most 
people” aren’t using it, Adobe wouldn’t waste money on updates for it.  They’d 
declare it dead and be done with it.  Or isn’t that the way it’s done in the UK?

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: Wednesday, September 23, 2015 10:31 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11


Well, there was a  time when the world held its breath for Apple putting the 
Flash Player in iOS. Is didn’t, and the flash and flex lists died. Just my 
experience.

Now we have browser automagically preventing flash, facebook asking for it to 
be removed etc etc. Most people have moved away from it.

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: 23 September 2015 15:28
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: uploading files in flex using coldfusion 11



That's news to me, that Apple "won the battle of the Flash Player." I have an 
iOS Flex app in the Apple App Store. And the Flash player is probably still 
installed in about 97% of desktop browsers.


From: "Julian Tenney 
julian.ten...@nottingham.ac.uk<mailto:julian.ten...@nottingham.ac.uk> 
[flexcoders]" <flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
To: "flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>" 
<flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
Sent: Wednesday, September 23, 2015 9:33 AM
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11


One of the most amazing things I’ve ever seen is the speed with which all the 
flash and flex developers abandoned the tools once it was clear that Apple had 
won the battle of the Flash player.









This message and any attachment are intended solely for the addressee

and may contain confidential information. If you have received this

message in error, please send it back to me, and immediately delete it.



Please do not use, copy or disclose the information contained in this

message or in any attachment.  Any views or opinions expressed by the

author of this email do not necessarily reflect the views of the

University of Nottingham.



This message has been checked for viruses but the contents of an

attachment may still contain software viruses which could damage your

computer system, you are advised to perform your own checks. Email

communications with the University of Nottingham may be monitored as

permitted by UK legislation.



Re: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Dave Glasser dglas...@pobox.com [flexcoders]

You must live in a different world than I do, because my world did not "hold 
its breath for Apple putting the Flash Player in iOS."
And Flash/Flex-based apps run fine on both iOS and Android, with little or no 
changes.

  From: "Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]" 
<flexcoders@yahoogroups.com>
 To: "flexcoders@yahoogroups.com" <flexcoders@yahoogroups.com> 
 Sent: Wednesday, September 23, 2015 10:30 AM
 Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11
   
#yiv1165436180 #yiv1165436180 -- #yiv1165436180 
.yiv1165436180ygrp-photo-title{clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}#yiv1165436180
 
div.yiv1165436180ygrp-photo{background-position:center;background-repeat:no-repeat;background-color:white;border:1px
 solid black;height:62px;width:62px;}#yiv1165436180 
div.yiv1165436180photo-title a, #yiv1165436180 div.yiv1165436180photo-title 
a:active, #yiv1165436180 div.yiv1165436180photo-title a:hover, #yiv1165436180 
div.yiv1165436180photo-title a:visited {text-decoration:none;}#yiv1165436180 
div.yiv1165436180attach-table div.yiv1165436180attach-row 
{clear:both;}#yiv1165436180 div.yiv1165436180attach-table 
div.yiv1165436180attach-row div {float:left;}#yiv1165436180 p 
{clear:both;padding:15px 0 3px 0;overflow:hidden;}#yiv1165436180 
div.yiv1165436180ygrp-file {width:30px;}#yiv1165436180 
div.yiv1165436180attach-table div.yiv1165436180attach-row div div a 
{text-decoration:none;}#yiv1165436180 div.yiv1165436180attach-table 
div.yiv1165436180attach-row div div span {font-weight:normal;}#yiv1165436180 
div.yiv1165436180ygrp-file-title {font-weight:bold;}#yiv1165436180 
#yiv1165436180 #yiv1165436180 #yiv1165436180 -- _filtered #yiv1165436180 
{font-family:Helvetica;panose-1:2 11 6 4 2 2 2 2 2 4;} _filtered #yiv1165436180 
{font-family:Wingdings;panose-1:5 0 0 0 0 0 0 0 0 0;} _filtered #yiv1165436180 
{font-family:SimSun;panose-1:2 1 6 0 3 1 1 1 1 1;} _filtered #yiv1165436180 
{font-family:SimSun;panose-1:2 1 6 0 3 1 1 1 1 1;} _filtered #yiv1165436180 
{font-family:Calibri;panose-1:2 15 5 2 2 2 4 3 2 4;} _filtered #yiv1165436180 
{font-family:Tahoma;panose-1:2 11 6 4 3 5 4 4 2 4;} _filtered #yiv1165436180 
{font-family:Consolas;panose-1:2 11 6 9 2 2 4 3 2 4;} _filtered #yiv1165436180 
{panose-1:2 1 6 0 3 1 1 1 1 1;} _filtered #yiv1165436180 
{font-family:Verdana;panose-1:2 11 6 4 3 5 4 4 2 4;}#yiv1165436180 
#yiv1165436180 p.yiv1165436180MsoNormal, #yiv1165436180 
li.yiv1165436180MsoNormal, #yiv1165436180 div.yiv1165436180MsoNormal 
{margin:0cm;margin-bottom:.0001pt;font-size:12.0pt;}#yiv1165436180 a:link, 
#yiv1165436180 span.yiv1165436180MsoHyperlink 
{color:blue;text-decoration:underline;}#yiv1165436180 a:visited, #yiv1165436180 
span.yiv1165436180MsoHyperlinkFollowed 
{color:purple;text-decoration:underline;}#yiv1165436180 p 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;}#yiv1165436180 code 
{}#yiv1165436180 pre 
{margin:0cm;margin-bottom:.0001pt;font-size:10.0pt;}#yiv1165436180 tt 
{}#yiv1165436180 p.yiv1165436180MsoAcetate, #yiv1165436180 
li.yiv1165436180MsoAcetate, #yiv1165436180 div.yiv1165436180MsoAcetate 
{margin:0cm;margin-bottom:.0001pt;font-size:8.0pt;}#yiv1165436180 
span.yiv1165436180HTMLPreformattedChar {font-family:Consolas;}#yiv1165436180 
p.yiv1165436180attach, #yiv1165436180 li.yiv1165436180attach, #yiv1165436180 
div.yiv1165436180attach 
{margin-right:0cm;margin-left:0cm;font-size:9.0pt;}#yiv1165436180 
p.yiv1165436180bold, #yiv1165436180 li.yiv1165436180bold, #yiv1165436180 
div.yiv1165436180bold 
{margin-right:0cm;margin-left:0cm;font-size:10.0pt;font-weight:bold;}#yiv1165436180
 p.yiv1165436180green, #yiv1165436180 li.yiv1165436180green, #yiv1165436180 
div.yiv1165436180green 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;color:#628C2A;}#yiv1165436180
 p.yiv1165436180replbq, #yiv1165436180 li.yiv1165436180replbq, #yiv1165436180 
div.yiv1165436180replbq {margin:3.0pt;font-size:12.0pt;}#yiv1165436180 
p.yiv1165436180ad, #yiv1165436180 li.yiv1165436180ad, #yiv1165436180 
div.yiv1165436180ad 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;}#yiv1165436180 
p.yiv1165436180underline, #yiv1165436180 li.yiv1165436180underline, 
#yiv1165436180 div.yiv1165436180underline 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;}#yiv1165436180 
span.yiv1165436180yshortcuts {}#yiv1165436180 p.yiv1165436180ad1, 
#yiv1165436180 li.yiv1165436180ad1, #yiv1165436180 div.yiv1165436180ad1 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;}#yiv1165436180 
p.yiv1165436180ad2, #yiv1165436180 li.yiv1165436180ad2, #yiv1165436180 
div.yiv1165436180ad2 
{margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;font-size:12.0pt;}#yiv1165436180
 p.yiv1165436180underline1, #yiv1165436180 li.yiv1165436180underline1, 
#yiv1165436180 div.yiv1165436180underline1 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;text-decoration:underline;}#yiv1165436180
 span.

Re: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Margo Powell mmpow...@ad.unc.edu [flexcoders]
You would probably get a better response if you join the mailing list at 
flex.apache.org


There is a developer and a users mailing list.

There is a lot of activity going on there and someone would be able to 
answer your question there.

Regards
Margo




On 9/23/2015 9:04 AM, stinas...@yahoo.com [flexcoders] wrote:


Anyone out there with a solution to this issue? i have been using that 
code for so long and it worked perfectly. But now for some reason the 
uploaded file name doesn't appear in the textinput even if the file is 
actually uploaded onto the server






--
Margo Powell
Applications Analyst/MS Computer Science

Nutrition in Medicine Project
Nutrition Education for Practicing Physicians Initiative
Department of Nutrition
University of North Carolina at Chapel Hill
800 Eastowne Dr, Suite 100
Chapel Hill, NC 27514
919-408-3320 ext 30
margo_pow...@unc.edu
www.nutritioninmedicine.org

<>

RE: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]
Sure, I understand that, but in my world, elearning, I don’t have resources to 
develop more than one codebase, and I cannot have a strategy that doesn’t 
embrace the iPad, so HTML5 and JS is the answer.

It’s a great shame as I miss a proper OO language, and really liked working 
with Flex but it simply does not fly for us.

I’m also very leery about getting caught in proprietary formats as an 
ex-authorware developer, and dependent on proprietary technology (i.e. the 
flash player) is a risk I no longer want to take.

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: 23 September 2015 16:27
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: uploading files in flex using coldfusion 11



In my world of enterprise development Flex is still alive and well... Obviously 
different approaches for mobile development (gaming or non) which are better 
but as far as the desktop goes Flex is still "the solution of choice" for my 
needs.  Yeah, obviously the lists died and we are never going to see Flash 
adopted on mobile devices or tablets through the player, but there is still 
definitely a niche for Flex and native applications developed in it.
On Sep 23, 2015 9:41 AM, "Dave Glasser 
dglas...@pobox.com<mailto:dglas...@pobox.com> [flexcoders]" 
<flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>> wrote:


You must live in a different world than I do, because my world did not "hold 
its breath for Apple putting the Flash Player in iOS."

And Flash/Flex-based apps run fine on both iOS and Android, with little or no 
changes.


From: "Julian Tenney 
julian.ten...@nottingham.ac.uk<mailto:julian.ten...@nottingham.ac.uk> 
[flexcoders]" <flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
To: "flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>" 
<flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
Sent: Wednesday, September 23, 2015 10:30 AM
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11


Well, there was a  time when the world held its breath for Apple putting the 
Flash Player in iOS. Is didn’t, and the flash and flex lists died. Just my 
experience.

Now we have browser automagically preventing flash, facebook asking for it to 
be removed etc etc. Most people have moved away from it.

From: flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com> 
[mailto:flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>]
Sent: 23 September 2015 15:28
To: flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>
Subject: Re: [flexcoders] Re: uploading files in flex using coldfusion 11



That's news to me, that Apple "won the battle of the Flash Player." I have an 
iOS Flex app in the Apple App Store. And the Flash player is probably still 
installed in about 97% of desktop browsers.


From: "Julian Tenney 
julian.ten...@nottingham.ac.uk<mailto:julian.ten...@nottingham.ac.uk> 
[flexcoders]" <flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
To: "flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>" 
<flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
Sent: Wednesday, September 23, 2015 9:33 AM
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11


One of the most amazing things I’ve ever seen is the speed with which all the 
flash and flex developers abandoned the tools once it was clear that Apple had 
won the battle of the Flash player.





This message and any attachment are intended solely for the addressee

and may contain confidential information. If you have received this

message in error, please send it back to me, and immediately delete it.



Please do not use, copy or disclose the information contained in this

message or in any attachment.  Any views or opinions expressed by the

author of this email do not necessarily reflect the views of the

University of Nottingham.



This message has been checked for viruses but the contents of an

attachment may still contain software viruses which could damage your

computer system, you are advised to perform your own checks. Email

communications with the University of Nottingham may be monitored as

permitted by UK legislation.







This message and any attachment are intended solely for the addressee
and may contain confidential information. If you have received this
message in error, please send it back to me, and immediately delete it. 

Please do not use, copy or disclose the information contained in this
message or in any attachment.  Any views or opinions expressed by the
author of this email do not necessarily reflect the views of the
University of Nottingham.

This message has been checked for viruses but the contents of an
attachment may

Re: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Brendan Meutzner bmeutz...@gmail.com [flexcoders]
In my world of enterprise development Flex is still alive and well...
Obviously different approaches for mobile development (gaming or non) which
are better but as far as the desktop goes Flex is still "the solution of
choice" for my needs.  Yeah, obviously the lists died and we are never
going to see Flash adopted on mobile devices or tablets through the player,
but there is still definitely a niche for Flex and native applications
developed in it.
On Sep 23, 2015 9:41 AM, "Dave Glasser dglas...@pobox.com [flexcoders]" <
flexcoders@yahoogroups.com> wrote:

>
>
>
> You must live in a different world than I do, because my world did not
> "hold its breath for Apple putting the Flash Player in iOS."
>
> And Flash/Flex-based apps run fine on both iOS and Android, with little or
> no changes.
>
> --
> *From:* "Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]" <
> flexcoders@yahoogroups.com>
> *To:* "flexcoders@yahoogroups.com" <flexcoders@yahoogroups.com>
> *Sent:* Wednesday, September 23, 2015 10:30 AM
> *Subject:* RE: [flexcoders] Re: uploading files in flex using coldfusion
> 11
>
>
>
> Well, there was a  time when the world held its breath for Apple putting
> the Flash Player in iOS. Is didn’t, and the flash and flex lists died. Just
> my experience.
>
> Now we have browser automagically preventing flash, facebook asking for it
> to be removed etc etc. Most people have moved away from it.
>
> *From:* flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
> *Sent:* 23 September 2015 15:28
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Re: uploading files in flex using coldfusion
> 11
>
>
>
> That's news to me, that Apple "won the battle of the Flash Player." I have
> an iOS Flex app in the Apple App Store. And the Flash player is probably
> still installed in about 97% of desktop browsers.
>
> --
> *From:* "Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]" <
> flexcoders@yahoogroups.com>
> *To:* "flexcoders@yahoogroups.com" <flexcoders@yahoogroups.com>
> *Sent:* Wednesday, September 23, 2015 9:33 AM
> *Subject:* RE: [flexcoders] Re: uploading files in flex using coldfusion
> 11
>
>
> One of the most amazing things I’ve ever seen is the speed with which all
> the flash and flex developers abandoned the tools once it was clear that
> Apple had won the battle of the Flash player.
>
>
>
>
> This message and any attachment are intended solely for the addressee
> and may contain confidential information. If you have received this
> message in error, please send it back to me, and immediately delete it.
>
> Please do not use, copy or disclose the information contained in this
> message or in any attachment.  Any views or opinions expressed by the
> author of this email do not necessarily reflect the views of the
> University of Nottingham.
>
> This message has been checked for viruses but the contents of an
> attachment may still contain software viruses which could damage your
> computer system, you are advised to perform your own checks. Email
> communications with the University of Nottingham may be monitored as
> permitted by UK legislation.
>
>
>
>
>
> 
>


Re: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Dave Glasser dglas...@pobox.com [flexcoders]

That's news to me, that Apple "won the battle of the Flash Player." I have an 
iOS Flex app in the Apple App Store. And the Flash player is probably still 
installed in about 97% of desktop browsers.

  From: "Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]" 
<flexcoders@yahoogroups.com>
 To: "flexcoders@yahoogroups.com" <flexcoders@yahoogroups.com> 
 Sent: Wednesday, September 23, 2015 9:33 AM
 Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11
   
#yiv0242585020 #yiv0242585020 -- #yiv0242585020 
.yiv0242585020ygrp-photo-title{clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}#yiv0242585020
 
div.yiv0242585020ygrp-photo{background-position:center;background-repeat:no-repeat;background-color:white;border:1px
 solid black;height:62px;width:62px;}#yiv0242585020 
div.yiv0242585020photo-title a, #yiv0242585020 div.yiv0242585020photo-title 
a:active, #yiv0242585020 div.yiv0242585020photo-title a:hover, #yiv0242585020 
div.yiv0242585020photo-title a:visited {text-decoration:none;}#yiv0242585020 
div.yiv0242585020attach-table div.yiv0242585020attach-row 
{clear:both;}#yiv0242585020 div.yiv0242585020attach-table 
div.yiv0242585020attach-row div {float:left;}#yiv0242585020 p 
{clear:both;padding:15px 0 3px 0;overflow:hidden;}#yiv0242585020 
div.yiv0242585020ygrp-file {width:30px;}#yiv0242585020 
div.yiv0242585020attach-table div.yiv0242585020attach-row div div a 
{text-decoration:none;}#yiv0242585020 div.yiv0242585020attach-table 
div.yiv0242585020attach-row div div span {font-weight:normal;}#yiv0242585020 
div.yiv0242585020ygrp-file-title {font-weight:bold;}#yiv0242585020 
#yiv0242585020 #yiv0242585020 #yiv0242585020 -- _filtered #yiv0242585020 
{font-family:Wingdings;panose-1:5 0 0 0 0 0 0 0 0 0;} _filtered #yiv0242585020 
{font-family:SimSun;panose-1:2 1 6 0 3 1 1 1 1 1;} _filtered #yiv0242585020 
{font-family:SimSun;panose-1:2 1 6 0 3 1 1 1 1 1;} _filtered #yiv0242585020 
{font-family:Calibri;panose-1:2 15 5 2 2 2 4 3 2 4;} _filtered #yiv0242585020 
{font-family:Tahoma;panose-1:2 11 6 4 3 5 4 4 2 4;} _filtered #yiv0242585020 
{font-family:Consolas;panose-1:2 11 6 9 2 2 4 3 2 4;} _filtered #yiv0242585020 
{panose-1:2 1 6 0 3 1 1 1 1 1;} _filtered #yiv0242585020 
{font-family:Verdana;panose-1:2 11 6 4 3 5 4 4 2 4;} _filtered #yiv0242585020 
{font-family:Connections;panose-1:0 0 0 0 0 0 0 0 0 0;}#yiv0242585020 
#yiv0242585020 p.yiv0242585020MsoNormal, #yiv0242585020 
li.yiv0242585020MsoNormal, #yiv0242585020 div.yiv0242585020MsoNormal 
{margin:0cm;margin-bottom:.0001pt;font-size:12.0pt;}#yiv0242585020 a:link, 
#yiv0242585020 span.yiv0242585020MsoHyperlink 
{color:blue;text-decoration:underline;}#yiv0242585020 a:visited, #yiv0242585020 
span.yiv0242585020MsoHyperlinkFollowed 
{color:purple;text-decoration:underline;}#yiv0242585020 p 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;}#yiv0242585020 code 
{}#yiv0242585020 pre 
{margin:0cm;margin-bottom:.0001pt;font-size:10.0pt;}#yiv0242585020 tt 
{}#yiv0242585020 p.yiv0242585020MsoAcetate, #yiv0242585020 
li.yiv0242585020MsoAcetate, #yiv0242585020 div.yiv0242585020MsoAcetate 
{margin:0cm;margin-bottom:.0001pt;font-size:8.0pt;}#yiv0242585020 
span.yiv0242585020HTMLPreformattedChar {font-family:Consolas;}#yiv0242585020 
p.yiv0242585020attach, #yiv0242585020 li.yiv0242585020attach, #yiv0242585020 
div.yiv0242585020attach 
{margin-right:0cm;margin-left:0cm;font-size:9.0pt;}#yiv0242585020 
p.yiv0242585020bold, #yiv0242585020 li.yiv0242585020bold, #yiv0242585020 
div.yiv0242585020bold 
{margin-right:0cm;margin-left:0cm;font-size:10.0pt;font-weight:bold;}#yiv0242585020
 p.yiv0242585020green, #yiv0242585020 li.yiv0242585020green, #yiv0242585020 
div.yiv0242585020green 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;color:#628C2A;}#yiv0242585020
 p.yiv0242585020replbq, #yiv0242585020 li.yiv0242585020replbq, #yiv0242585020 
div.yiv0242585020replbq {margin:3.0pt;font-size:12.0pt;}#yiv0242585020 
p.yiv0242585020ad, #yiv0242585020 li.yiv0242585020ad, #yiv0242585020 
div.yiv0242585020ad 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;}#yiv0242585020 
p.yiv0242585020underline, #yiv0242585020 li.yiv0242585020underline, 
#yiv0242585020 div.yiv0242585020underline 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;}#yiv0242585020 
span.yiv0242585020yshortcuts {}#yiv0242585020 p.yiv0242585020ad1, 
#yiv0242585020 li.yiv0242585020ad1, #yiv0242585020 div.yiv0242585020ad1 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;}#yiv0242585020 
p.yiv0242585020ad2, #yiv0242585020 li.yiv0242585020ad2, #yiv0242585020 
div.yiv0242585020ad2 
{margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;font-size:12.0pt;}#yiv0242585020
 p.yiv0242585020underline1, #yiv0242585020 li.yiv0242585020underline1, 
#yiv0242585020 div.yiv0242585020underline1 
{margin-right:0cm;margin-left:0cm;font-size:12.0pt;text-decoration:underline;}#yiv0242585020
 span.yiv0242585020ysh

RE: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Thomas Sammons tsamm...@sei.cmu.edu [flexcoders]
This wouldn’t have anything to do with Flex…I’m assuming the XML being returned 
just doesn’t have the message element populated, correct?  Or is nothing being 
returned?

I’d try a few things before getting all worked up…


1)  If you call the picUpload.cfm from another .cfm module is the XML 
output what you expected?

2)  I’d also probably not use the variable name “status”…it’s a pretty 
common reserved word in all languages, and since you weren’t scoping the 
variable, you might have an issue there anyway…

3)  If not, try hardcoding the XML string with the values to see what you 
get back…and be sure not to put line breaks in…

OK#file.serverFile#’>
#variables.status#


4)  As an aside, if you *must* use CFXML, try setting the returned content 
to the text/xml mime type using CFContent right after your cfprocessing 
directive:





5)  You might want to try to convert it to a string, and automatically have 
CF prepend the  XML declaration:

 #myvar#

On a different note…
Why don’t you use CF Remoting and have Flex call a CFC method to do the upload 
and return the file name?   We don’t do URLRequests ourselves for security 
reasons, and we don’t have issues with CF11 and file uploads.


From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: Wednesday, September 23, 2015 9:05 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11


I think you’re the only flex developer left?

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: 23 September 2015 14:05
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: uploading files in flex using coldfusion 11



Anyone out there with a solution to this issue? i have been using that code for 
so long and it worked perfectly. But now for some reason the uploaded file name 
doesn't appear in the textinput even if the file is actually uploaded onto the 
server







This message and any attachment are intended solely for the addressee

and may contain confidential information. If you have received this

message in error, please send it back to me, and immediately delete it.



Please do not use, copy or disclose the information contained in this

message or in any attachment.  Any views or opinions expressed by the

author of this email do not necessarily reflect the views of the

University of Nottingham.



This message has been checked for viruses but the contents of an

attachment may still contain software viruses which could damage your

computer system, you are advised to perform your own checks. Email

communications with the University of Nottingham may be monitored as

permitted by UK legislation.



RE: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]
To each their own.

Sigh.


From: flexcoders@yahoogroups.com [flexcoders@yahoogroups.com]
Sent: 23 September 2015 16:36
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11

What does this have to do with helping the original poster with his issue?

But, just because I don’t like Trolls who bash Flash or anything else just to 
try to show their superior intellect and insufferable opinions, if “most 
people” aren’t using it, Adobe wouldn’t waste money on updates for it.  They’d 
declare it dead and be done with it.  Or isn’t that the way it’s done in the UK?

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: Wednesday, September 23, 2015 10:31 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11


Well, there was a  time when the world held its breath for Apple putting the 
Flash Player in iOS. Is didn’t, and the flash and flex lists died. Just my 
experience.

Now we have browser automagically preventing flash, facebook asking for it to 
be removed etc etc. Most people have moved away from it.

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: 23 September 2015 15:28
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: uploading files in flex using coldfusion 11



That's news to me, that Apple "won the battle of the Flash Player." I have an 
iOS Flex app in the Apple App Store. And the Flash player is probably still 
installed in about 97% of desktop browsers.


From: "Julian Tenney 
julian.ten...@nottingham.ac.uk<mailto:julian.ten...@nottingham.ac.uk> 
[flexcoders]" <flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
To: "flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>" 
<flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
Sent: Wednesday, September 23, 2015 9:33 AM
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11


One of the most amazing things I’ve ever seen is the speed with which all the 
flash and flex developers abandoned the tools once it was clear that Apple had 
won the battle of the Flash player.









This message and any attachment are intended solely for the addressee

and may contain confidential information. If you have received this

message in error, please send it back to me, and immediately delete it.



Please do not use, copy or disclose the information contained in this

message or in any attachment.  Any views or opinions expressed by the

author of this email do not necessarily reflect the views of the

University of Nottingham.



This message has been checked for viruses but the contents of an

attachment may still contain software viruses which could damage your

computer system, you are advised to perform your own checks. Email

communications with the University of Nottingham may be monitored as

permitted by UK legislation.






This message and any attachment are intended solely for the addressee
and may contain confidential information. If you have received this
message in error, please send it back to me, and immediately delete it. 

Please do not use, copy or disclose the information contained in this
message or in any attachment.  Any views or opinions expressed by the
author of this email do not necessarily reflect the views of the
University of Nottingham.

This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system, you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation.







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
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:
flexcoders-dig...@yahoogroups.com 
flexcoders-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
flexcoders-unsubscr...@yahoogroups.com

<*> Your use of Yahoo Groups is subject to:
https://info.yahoo.com/legal/us/yahoo/utos/terms/



Re: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Paul Hastings paul.hasti...@gmail.com [flexcoders]
On 9/24/2015 12:15 AM, Tom McNeer tmcn...@gmail.com [flexcoders] wrote:
>
>
> ignoring the snotty emails about Flex and ColdFusion, what does the actual

and that this list is mostly a ghost town. better off on the apache one though 
this seems like a cf issue so maybe SO or the adobe forums.

cf's alive & kicking and so is apache flex.

run it from an html form pointing at the same cf page & see what the cf11 
server 
is actually spitting out. and as suggested DEBUG the flex side of things, what 
exactly is the error (though if you're running a debug player you should have 
seen any errors by now).






Re: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Tom McNeer tmcn...@gmail.com [flexcoders]
ignoring the snotty emails about Flex and ColdFusion, what does the actual
response look like coming back from your ColdFusion page, when you view it
in Charles or a similar proxy?

And what do you see when you set a breakpoint in uploadDataComplete()?

It would seem the XML response is not what it once was, so you need to
examine it.

On Wed, Sep 23, 2015 at 9:04 AM, stinas...@yahoo.com [flexcoders] <
flexcoders@yahoogroups.com> wrote:

>
>
> Anyone out there with a solution to this issue? i have been using that
> code for so long and it worked perfectly. But now for some reason the
> uploaded file name doesn't appear in the textinput even if the file is
> actually uploaded onto the server
> 
>



-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560


Re: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Dave Glasser dglas...@pobox.com [flexcoders]

And further to your point, I think it's naive for someone to assume that 
activity on an email list is a reliable indicator of how widely used, or how 
"dead" a particular technology is.
I think lists like this will have the highest activity when a technology is a.) 
relatively new, and b.) growing rapidly in adoption. Under those circumstances, 
a good portion of the developers/users are unseasoned and unfamiliar, so they 
turn to email lists for help. Kind of like it was with Java and J2EE (Servlets, 
EJB's EARs, etc.) between, say, 1997 and 2001. All of the Java lists I once 
subscribed to (and probably still do) are now dead. But Java, and JEE, are 
obviously far from dead. It's just that anyone who is now new to Java 
development probably has ready access to seasoned experts on their own team. Or 
they can find answers through google because the lists are indexed or the 
questions have already been answered on stackoverflow.

  From: "Brendan Meutzner bmeutz...@gmail.com [flexcoders]" 
<flexcoders@yahoogroups.com>
 To: flexcoders@yahoogroups.com 
 Sent: Wednesday, September 23, 2015 11:26 AM
 Subject: Re: [flexcoders] Re: uploading files in flex using coldfusion 11
   
#yiv4142265442 #yiv4142265442 -- #yiv4142265442 
.yiv4142265442ygrp-photo-title{clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}#yiv4142265442
 
div.yiv4142265442ygrp-photo{background-position:center;background-repeat:no-repeat;background-color:white;border:1px
 solid black;height:62px;width:62px;}#yiv4142265442 
div.yiv4142265442photo-title a, #yiv4142265442 div.yiv4142265442photo-title 
a:active, #yiv4142265442 div.yiv4142265442photo-title a:hover, #yiv4142265442 
div.yiv4142265442photo-title a:visited {text-decoration:none;}#yiv4142265442 
div.yiv4142265442attach-table div.yiv4142265442attach-row 
{clear:both;}#yiv4142265442 div.yiv4142265442attach-table 
div.yiv4142265442attach-row div {float:left;}#yiv4142265442 p 
{clear:both;padding:15px 0 3px 0;overflow:hidden;}#yiv4142265442 
div.yiv4142265442ygrp-file {width:30px;}#yiv4142265442 
div.yiv4142265442attach-table div.yiv4142265442attach-row div div a 
{text-decoration:none;}#yiv4142265442 div.yiv4142265442attach-table 
div.yiv4142265442attach-row div div span {font-weight:normal;}#yiv4142265442 
div.yiv4142265442ygrp-file-title {font-weight:bold;}#yiv4142265442 
#yiv4142265442 #yiv4142265442 #yiv4142265442 --#yiv4142265442ygrp-mkp 
{border:1px solid #d8d8d8;font-family:Arial;margin:10px 0;padding:0 
10px;}#yiv4142265442 #yiv4142265442ygrp-mkp hr {border:1px solid 
#d8d8d8;}#yiv4142265442 #yiv4142265442ygrp-mkp #yiv4142265442hd 
{color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 
0;}#yiv4142265442 #yiv4142265442ygrp-mkp #yiv4142265442ads 
{margin-bottom:10px;}#yiv4142265442 #yiv4142265442ygrp-mkp .yiv4142265442ad 
{padding:0 0;}#yiv4142265442 #yiv4142265442ygrp-mkp .yiv4142265442ad p 
{margin:0;}#yiv4142265442 #yiv4142265442ygrp-mkp .yiv4142265442ad a 
{color:#ff;text-decoration:none;}#yiv4142265442 

In my world of enterprise development Flex is still alive and well... Obviously 
different approaches for mobile development (gaming or non) which are better 
but as far as the desktop goes Flex is still "the solution of choice" for my 
needs.  Yeah, obviously the lists died and we are never going to see Flash 
adopted on mobile devices or tablets through the player, but there is still 
definitely a niche for Flex and native applications developed in it.
On Sep 23, 2015 9:41 AM, "Dave Glasser dglas...@pobox.com [flexcoders]" 
<flexcoders@yahoogroups.com> wrote:

     
You must live in a different world than I do, because my world did not "hold 
its breath for Apple putting the Flash Player in iOS."
And Flash/Flex-based apps run fine on both iOS and Android, with little or no 
changes.

  From: "Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]" 
<flexcoders@yahoogroups.com>
 To: "flexcoders@yahoogroups.com" <flexcoders@yahoogroups.com> 
 Sent: Wednesday, September 23, 2015 10:30 AM
 Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11
   


Well, there was a  time when the world held its breath for Apple putting the 
Flash Player in iOS. Is didn’t, and the flash and flex lists died. Just my 
experience.    Now we have browser automagically preventing flash, facebook 
asking for it to be removed etc etc. Most people have moved away from it.    
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
Sent: 23 September 2015 15:28
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: uploading files in flex using coldfusion 11       
   That's news to me, that Apple "won the battle of the Flash Player." I have 
an iOS Flex app in the Apple App Store. And the Flash player is probably still 
installed in about 97% of desktop browsers.    From: "Julian 
te

RE: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread Julian Tenney julian.ten...@nottingham.ac.uk [flexcoders]
yeah, that is my experience too. I think perhaps we misunderstood each other 
earlier.

From: flexcoders@yahoogroups.com [flexcoders@yahoogroups.com]
Sent: 23 September 2015 20:09
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: uploading files in flex using coldfusion 11

And further to your point, I think it's naive for someone to assume that 
activity on an email list is a reliable indicator of how widely used, or how 
"dead" a particular technology is.

I think lists like this will have the highest activity when a technology is a.) 
relatively new, and b.) growing rapidly in adoption. Under those circumstances, 
a good portion of the developers/users are unseasoned and unfamiliar, so they 
turn to email lists for help. Kind of like it was with Java and J2EE (Servlets, 
EJB's EARs, etc.) between, say, 1997 and 2001. All of the Java lists I once 
subscribed to (and probably still do) are now dead. But Java, and JEE, are 
obviously far from dead. It's just that anyone who is now new to Java 
development probably has ready access to seasoned experts on their own team. Or 
they can find answers through google because the lists are indexed or the 
questions have already been answered on stackoverflow.


From: "Brendan Meutzner bmeutz...@gmail.com [flexcoders]" 
<flexcoders@yahoogroups.com>
To: flexcoders@yahoogroups.com
Sent: Wednesday, September 23, 2015 11:26 AM
Subject: Re: [flexcoders] Re: uploading files in flex using coldfusion 11



In my world of enterprise development Flex is still alive and well... Obviously 
different approaches for mobile development (gaming or non) which are better 
but as far as the desktop goes Flex is still "the solution of choice" for my 
needs.  Yeah, obviously the lists died and we are never going to see Flash 
adopted on mobile devices or tablets through the player, but there is still 
definitely a niche for Flex and native applications developed in it.
On Sep 23, 2015 9:41 AM, "Dave Glasser 
dglas...@pobox.com<mailto:dglas...@pobox.com> [flexcoders]" 
<flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>> wrote:


You must live in a different world than I do, because my world did not "hold 
its breath for Apple putting the Flash Player in iOS."

And Flash/Flex-based apps run fine on both iOS and Android, with little or no 
changes.


From: "Julian Tenney 
julian.ten...@nottingham.ac.uk<mailto:julian.ten...@nottingham.ac.uk> 
[flexcoders]" <flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
To: "flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>" 
<flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
Sent: Wednesday, September 23, 2015 10:30 AM
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11



Well, there was a  time when the world held its breath for Apple putting the 
Flash Player in iOS. Is didn’t, and the flash and flex lists died. Just my 
experience.

Now we have browser automagically preventing flash, facebook asking for it to 
be removed etc etc. Most people have moved away from it.

From: flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com> 
[mailto:flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>]
Sent: 23 September 2015 15:28
To: flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>
Subject: Re: [flexcoders] Re: uploading files in flex using coldfusion 11



That's news to me, that Apple "won the battle of the Flash Player." I have an 
iOS Flex app in the Apple App Store. And the Flash player is probably still 
installed in about 97% of desktop browsers.


From: "Julian Tenney 
julian.ten...@nottingham.ac.uk<mailto:julian.ten...@nottingham.ac.uk> 
[flexcoders]" <flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
To: "flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>" 
<flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>>
Sent: Wednesday, September 23, 2015 9:33 AM
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11


One of the most amazing things I’ve ever seen is the speed with which all the 
flash and flex developers abandoned the tools once it was clear that Apple had 
won the battle of the Flash player.



This message and any attachment are intended solely for the addressee
and may contain confidential information. If you have received this
message in error, please send it back to me, and immediately delete it.

Please do not use, copy or disclose the information contained in this
message or in any attachment.  Any views or opinions expressed by the
author of this email do not necessarily reflect the views of the
University of Nottingham.

Th

RE: [flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-23 Thread 'Doug Pierce' sherwoodspo...@gmail.com [flexcoders]
“Abandoned” is a pretty extreme word.  There are a lot of people still using it 
and it’s still getting updated… what, 3 years after Adobe donated it to Apache? 
 New mobile, desktop and web projects are still created in Flex every day… just 
not at the fury of what once was.

 

Now… if we could only get FlexJS going (ahem, Alex).

 

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
Sent: Wednesday, September 23, 2015 6:33 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11

 

  

One of the most amazing things I’ve ever seen is the speed with which all the 
flash and flex developers abandoned the tools once it was clear that Apple had 
won the battle of the Flash player.

 

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
Sent: 23 September 2015 14:30
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: uploading files in flex using coldfusion 11

 

  

As Julian said, you may very well very well be the last flex developer left. 
And for that matter, the last ColdFusion developer. 

 

It could be a server environment change that is incompatible now with either 
Flex or ColdFusion. Technologies change and move on, sorry if that doesn’t 
help. Good luck. 

 

Jason Merrill
Instructional Technology Architect II

Bank of America  Global Technology and Operations

c: 703.302.9265

 

 

 

 

 

 

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
Sent: Wednesday, September 23, 2015 9:05 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: uploading files in flex using coldfusion 11

 

  

Anyone out there with a solution to this issue? i have been using that code for 
so long and it worked perfectly. But now for some reason the uploaded file name 
doesn't appear in the textinput even if the file is actually uploaded onto the 
server

  _  

This message, and any attachments, is for the intended recipient(s) only, may 
contain information that is privileged, confidential and/or proprietary and 
subject to important terms and conditions available at 
http://www.bankofamerica.com/emaildisclaimer. If you are not the intended 
recipient, please delete this message.

 
 
 
This message and any attachment are intended solely for the addressee
and may contain confidential information. If you have received this
message in error, please send it back to me, and immediately delete it. 
 
Please do not use, copy or disclose the information contained in this
message or in any attachment.  Any views or opinions expressed by the
author of this email do not necessarily reflect the views of the
University of Nottingham.
 
This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system, you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation.





[flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-22 Thread stinas...@yahoo.com [flexcoders]
Hello Guys, any help on this issue?

[flexcoders] Re: uploading files in flex using coldfusion 11

2015-09-22 Thread stinas...@yahoo.com [flexcoders]
any help guys? am stuck and can't figure out where the problem is

[flexcoders] Re: Print Functionality in flex

2015-05-08 Thread stinas...@yahoo.com [flexcoders]
Any help guys? 



[flexcoders] Re: flex calculation problem

2015-04-15 Thread stinas...@yahoo.com [flexcoders]
Actually this is the entire code with 2 scenarios. but needs a liltle tweaking 
to make it better. by better i mean, the balance starts off getting computed 
the moment either the amountPaid textinput or manFees textinput is being fed in 
a figure. thanks 

 ?xml version=1.0 encoding=utf-8?
 mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
 layout=vertical
 horizontalAlign=center
 verticalAlign=top
 
 mx:Script
 ![CDATA[
 
 private function calBalance(event:Event):void
 {
 var amt:Number=new Number;
 
 if (Number(amountPaid.text)  Number(currentPaid.text)  Number(manFees.text) 
 Number(currentFees.text)){
 amt = Number(currentBal.text) - ((Number(amountPaid.text) - 
Number(currentPaid.text)) + (Number(manFees.text) - Number(currentFees.text)))
 } 
 
 if (Number(amountPaid.text)  Number(currentPaid.text)  Number(manFees.text) 
 Number(currentFees.text)){
 //amt = Number(currentBal.text) + ((Number(currentPaid.text) - 
Number(amountPaid.text)) + (Number(manFees.text) - Number(currentFees.text)))
 
 amt = (Number(currentBal.text) + (Number(currentPaid.text) - 
Number(amountPaid.text))) - (Number(manFees.text) - Number(currentFees.text))
 } 
 
 balance.text=amt.toFixed(0);
 }
 
 ]]
 /mx:Script
 
 mx:Panel height=400
  layout=vertical
 

 mx:HBox
 mx:Label text=Payment:
  width=113/
 mx:TextInput id=amountPaid change=calBalance(event)/
 mx:Label text=Management Fees:/
 mx:TextInput id=manFees change=calBalance(event)/
 /mx:HBox
 

 mx:HRule width=100%/
 mx:HBox
 mx:Label text=Current Balance:
  width=126/
 mx:Text text=515000
 id=currentBal/
 /mx:HBox
 mx:HBox
 mx:Label text=Amount Already Paid:
  width=126/
 mx:Text text=50
 id=currentPaid/
 /mx:HBox
 mx:HBox
 mx:Label text=Fees Paid:
  width=126/
 mx:Text text=0
 id=currentFees/
 /mx:HBox
 mx:HBox
 mx:Label text=updated Balance:
  width=126/
 mx:Text id=balance/
 /mx:HBox
 /mx:Panel
 

 /mx:Application
   
  


[flexcoders] Re: flex calculation problem

2015-04-15 Thread stinas...@yahoo.com [flexcoders]
Any help guys? 



[flexcoders] Re: smooth image component fade effects

2014-11-11 Thread abhinay.dronamr...@yahoo.com [flexcoders]
why not use a parallel effect instead of a timer.

[flexcoders] Re: smooth image component fade effects

2014-11-11 Thread abhinay.dronamr...@yahoo.com [flexcoders]
?xml version=1.0 encoding=utf-8?
 s:WindowedApplication xmlns:fx=http://ns.adobe.com/mxml/2009; 
   xmlns:s=library://ns.adobe.com/flex/spark 
   xmlns:mx=library://ns.adobe.com/flex/mx creationComplete=imgProcess()
 fx:Declarations
 !-- Place non-visual elements (e.g., services, value objects) here --
 /fx:Declarations
 fx:Script
 ![CDATA[
 import mx.events.EffectEvent;
 private var previousIndex:int=0;
 var timer:Timer=new Timer(6000);
 
 
 /** Image Slide Show **/
 
 private var pictures:Array=[IMG_0066.JPG, IMG_0068.JPG, IMG_0072.JPG];
 
 
 
 private function imgProcess():void
 {
 
 
 
 var length:int = pictures.length;
 
 if(length  1){
 previousIndex = 1;
 img.source = assets/ + pictures[0];
 img1.source = assets/ + pictures[1];
 }
 
 
 
 timer.repeatCount = 0;
 timer.addEventListener(TimerEvent.TIMER, changeImage);
 timer.start();
 
 
 }
 
 
 
 protected function onFadeOut(event:EffectEvent):void
 {
 if(this.previousIndex == pictures.length - 1){
 previousIndex = 0;
 }else if(previousIndex = 0){
 previousIndex = previousIndex +1;
 
 }
 var ig:Image = ((event.currentTarget as Fade).target as Image)
 ig.source= assets/ + pictures[previousIndex];
 
 fadeIn.target = ig;
 if(img1 == ig){
 fadeOut.target = img;
 fadeIn.target = img1;
 }else{
 fadeOut.target = img1;
 fadeIn.target = img;
 }
 
 
 
 }
 
 private function changeImage(e:TimerEvent):void
 {
 fades.play();
 }
 
 protected function fadeIn_effectEndHandler(event:EffectEvent):void
 {
 timer.stop();
 timer.start();
 }
 
 ]]
 /fx:Script
 fx:Declarations
 s:Parallel id=fades duration=5000  repeatCount=1   
 mx:Fade id=fadeIn duration=5000 target={img1}
 alphaFrom=0 effectEnd=fadeIn_effectEndHandler(event)
 alphaTo=1/
 mx:Fade id=fadeOut duration=5000 target={img} 
effectEnd=onFadeOut(event) 
 alphaFrom=1
 alphaTo=0/
 /s:Parallel
 
 /fx:Declarations
 
 
 mx:Canvas 
 mx:Image left=0 alpha=1 height=200 width=200
  top=0
  id=img/
 mx:Image left=0 alpha=0 height=200 width=200
  top=0
  id=img1/
 /mx:Canvas
 /s:WindowedApplication
 



[flexcoders] Re: smooth image component fade effects

2014-11-11 Thread abhinay.dronamr...@yahoo.com [flexcoders]
Try something like this. 

 ?xml version=1.0 encoding=utf-8?
 s:WindowedApplication xmlns:fx=http://ns.adobe.com/mxml/2009; 
   xmlns:s=library://ns.adobe.com/flex/spark 
   xmlns:mx=library://ns.adobe.com/flex/mx creationComplete=imgProcess()
 fx:Declarations
 !-- Place non-visual elements (e.g., services, value objects) here --
 /fx:Declarations
 fx:Script
 ![CDATA[
 import mx.events.EffectEvent;
 private var previousIndex:int=0;
 var timer:Timer=new Timer(6000);
 
 
 /** Image Slide Show **/
 
 private var pictures:Array=[IMG_0066.JPG, IMG_0068.JPG, IMG_0072.JPG];
 
 
 
 private function imgProcess():void
 {
 
 
 
 var length:int = pictures.length;
 
 if(length  1){
 previousIndex = 1;
 img.source = assets/ + pictures[0];
 img1.source = assets/ + pictures[1];
 }
 
 
 
 timer.repeatCount = 0;
 timer.addEventListener(TimerEvent.TIMER, changeImage);
 timer.start();
 
 
 }
 
 
 
 protected function onFadeOut(event:EffectEvent):void
 {
 if(this.previousIndex == pictures.length - 1){
 previousIndex = 0;
 }else if(previousIndex = 0){
 previousIndex = previousIndex +1;
 
 }
 var ig:Image = ((event.currentTarget as Fade).target as Image)
 ig.source= assets/ + pictures[previousIndex];
 
 fadeIn.target = ig;
 if(img1 == ig){
 fadeOut.target = img;
 fadeIn.target = img1;
 }else{
 fadeOut.target = img1;
 fadeIn.target = img;
 }
 
 
 
 }
 
 private function changeImage(e:TimerEvent):void
 {
 fades.play();
 }
 
 protected function fadeIn_effectEndHandler(event:EffectEvent):void
 {
 timer.stop();
 timer.start();
 }
 
 ]]
 /fx:Script
 fx:Declarations
 s:Parallel id=fades duration=5000  repeatCount=1   
 mx:Fade id=fadeIn duration=5000 target={img1}
 alphaFrom=0 effectEnd=fadeIn_effectEndHandler(event)
 alphaTo=1/
 mx:Fade id=fadeOut duration=5000 target={img} 
effectEnd=onFadeOut(event) 
 alphaFrom=1
 alphaTo=0/
 /s:Parallel
 
 /fx:Declarations
 
 
 mx:Canvas 
 mx:Image left=0 alpha=1 height=200 width=200
  top=0
  id=img/
 mx:Image left=0 alpha=0 height=200 width=200
  top=0
  id=img1/
 /mx:Canvas
 /s:WindowedApplication
 


 



[flexcoders] Re: smooth image component fade effects

2014-11-11 Thread stinas...@yahoo.com [flexcoders]
Thanks Guys worked like a charm. very smooth i must say

[flexcoders] Re: smooth image component fade effects

2014-11-10 Thread stinas...@yahoo.com [flexcoders]
any help guys?

[flexcoders] Re: downlaoding a file in flex.

2014-11-07 Thread stinas...@yahoo.com [flexcoders]
Thanks Guys. it worked like charm. Am very grateful for the help coming from 
this forum. 

[flexcoders] Re: downlaoding a file in flex.

2014-11-06 Thread stinas...@yahoo.com [flexcoders]
Any help guys?

Re: [flexcoders] Re: downlaoding a file in flex.

2014-11-06 Thread Dave Glasser dglas...@pobox.com [flexcoders]
What do do you mean by not working?
 

 On Thursday, November 6, 2014 4:20 AM, stinas...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.com wrote:
   

 !--#yiv9808785342 #yiv9808785342 
.yiv9808785342ygrp-photo-title{clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}#yiv9808785342
 
div.yiv9808785342ygrp-photo{background-position:center;background-repeat:no-repeat;background-color:white;border:1px
 solid black;height:62px;width:62px;}#yiv9808785342 
div.yiv9808785342photo-title a, #yiv9808785342 div.yiv9808785342photo-title 
a:active, #yiv9808785342 div.yiv9808785342photo-title a:hover, #yiv9808785342 
div.yiv9808785342photo-title a:visited {text-decoration:none;}#yiv9808785342 
div.yiv9808785342attach-table div.yiv9808785342attach-row 
{clear:both;}#yiv9808785342 div.yiv9808785342attach-table 
div.yiv9808785342attach-row div {float:left;}#yiv9808785342 p 
{clear:both;padding:15px 0 3px 0;overflow:hidden;}#yiv9808785342 
div.yiv9808785342ygrp-file {width:30px;}#yiv9808785342 
div.yiv9808785342attach-table div.yiv9808785342attach-row div div a 
{text-decoration:none;}#yiv9808785342 div.yiv9808785342attach-table 
div.yiv9808785342attach-row div div span {font-weight:normal;}#yiv9808785342 
div.yiv9808785342ygrp-file-title {font-weight:bold;}#yiv9808785342 -- 
!--#yiv9808785342 #yiv9808785342ygrp-mkp {border:1px solid 
#d8d8d8;font-family:Arial;margin:10px 0;padding:0 10px;}#yiv9808785342 
#yiv9808785342ygrp-mkp hr {border:1px solid #d8d8d8;}#yiv9808785342 
#yiv9808785342ygrp-mkp #yiv9808785342hd 
{color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 
0;}#yiv9808785342 #yiv9808785342ygrp-mkp #yiv9808785342ads 
{margin-bottom:10px;}#yiv9808785342 #yiv9808785342ygrp-mkp .yiv9808785342ad 
{padding:0 0;}#yiv9808785342 #yiv9808785342ygrp-mkp .yiv9808785342ad p 
{margin:0;}#yiv9808785342 #yiv9808785342ygrp-mkp .yiv9808785342ad a 
{color:#ff;text-decoration:none;}--

Any help guys?



   

[flexcoders] Re: downlaoding a file in flex.

2014-11-06 Thread stinas...@yahoo.com [flexcoders]
when i click the download button, i get an error, concerning the path. 

Re: [flexcoders] Re: downlaoding a file in flex.

2014-11-06 Thread Brendan Meutzner bmeutz...@gmail.com [flexcoders]
And what does the error message say exactly?  You need to be more
descriptive in order to help you.
 On Nov 6, 2014 7:38 AM, stinas...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.com wrote:



 when i click the download button, i get an error, concerning the path.
  



Re: [flexcoders] Re: downlaoding a file in flex.

2014-11-06 Thread Dave Glasser dglas...@pobox.com [flexcoders]
I don't mean to be rude, but does it not occur to you that the actual text of 
the error message might be important in diagnosing your problem?
In your initial request for help, you didn't even bother to mention the problem 
was concerning the path.
Stinasius, I'd like to help you, but if it requires dragging the needed 
information out of you, I'm afraid I don't have time, or the inclination.
Good luck.


 On Thursday, November 6, 2014 8:38 AM, stinas...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.com wrote:
   

 #yiv5947529375 #yiv5947529375 -- #yiv5947529375 
.yiv5947529375ygrp-photo-title{clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}#yiv5947529375
 
div.yiv5947529375ygrp-photo{background-position:center;background-repeat:no-repeat;background-color:white;border:1px
 solid black;height:62px;width:62px;}#yiv5947529375 
div.yiv5947529375photo-title a, #yiv5947529375 div.yiv5947529375photo-title 
a:active, #yiv5947529375 div.yiv5947529375photo-title a:hover, #yiv5947529375 
div.yiv5947529375photo-title a:visited {text-decoration:none;}#yiv5947529375 
div.yiv5947529375attach-table div.yiv5947529375attach-row 
{clear:both;}#yiv5947529375 div.yiv5947529375attach-table 
div.yiv5947529375attach-row div {float:left;}#yiv5947529375 p 
{clear:both;padding:15px 0 3px 0;overflow:hidden;}#yiv5947529375 
div.yiv5947529375ygrp-file {width:30px;}#yiv5947529375 
div.yiv5947529375attach-table div.yiv5947529375attach-row div div a 
{text-decoration:none;}#yiv5947529375 div.yiv5947529375attach-table 
div.yiv5947529375attach-row div div span {font-weight:normal;}#yiv5947529375 
div.yiv5947529375ygrp-file-title {font-weight:bold;}#yiv5947529375 
#yiv5947529375 #yiv5947529375 #yiv5947529375 --#yiv5947529375ygrp-mkp 
{border:1px solid #d8d8d8;font-family:Arial;margin:10px 0;padding:0 
10px;}#yiv5947529375 #yiv5947529375ygrp-mkp hr {border:1px solid 
#d8d8d8;}#yiv5947529375 #yiv5947529375ygrp-mkp #yiv5947529375hd 
{color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 
0;}#yiv5947529375 #yiv5947529375ygrp-mkp #yiv5947529375ads 
{margin-bottom:10px;}#yiv5947529375 #yiv5947529375ygrp-mkp .yiv5947529375ad 
{padding:0 0;}#yiv5947529375 #yiv5947529375ygrp-mkp .yiv5947529375ad p 
{margin:0;}#yiv5947529375 #yiv5947529375ygrp-mkp .yiv5947529375ad a 
{color:#ff;text-decoration:none;}#yiv5947529375 

when i click the download button, i get an error, concerning the path. 



   

[flexcoders] Re: downlaoding a file in flex.

2014-11-06 Thread stinas...@yahoo.com [flexcoders]
Sorry guys, am really sorry. this is the error it shows  HTTP Status 404 - 
/campuscholar/bin-debug/documents/%7Bdocs.selectedItem.documentName%7D

RE: [flexcoders] Re: downlaoding a file in flex.

2014-11-06 Thread Jim Hayes j...@primalpictures.com [flexcoders]
this line is at least one of your problems :

var url:String=documents/{docs.selectedItem.documentName};

try something like :

var url:String=documents/ + docs.selectedItem.documentName;

That should get you closer at least.

From: flexcoders@yahoogroups.com [flexcoders@yahoogroups.com]
Sent: 06 November 2014 14:02
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: downlaoding a file in flex.



Sorry guys, am really sorry. this is the error it shows 

HTTP Status 404 - 
/campuscholar/bin-debug/documents/%7Bdocs.selectedItem.documentName%7D





Re: [flexcoders] Re: downlaoding a file in flex.

2014-11-06 Thread Dave Glasser dglas...@pobox.com [flexcoders]

Doing this:var url:String=documents/ + 
encodeURIComponent(docs.selectedItem.documentName); 
will handle cases where the document name contains special characters that 
would break the URL.

 On Thursday, November 6, 2014 9:14 AM, Jim Hayes j...@primalpictures.com 
[flexcoders] flexcoders@yahoogroups.com wrote:
   

 #yiv1014466686 #yiv1014466686 -- #yiv1014466686 
.yiv1014466686ygrp-photo-title{clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}#yiv1014466686
 
div.yiv1014466686ygrp-photo{background-position:center;background-repeat:no-repeat;background-color:white;border:1px
 solid black;height:62px;width:62px;}#yiv1014466686 
div.yiv1014466686photo-title a, #yiv1014466686 div.yiv1014466686photo-title 
a:active, #yiv1014466686 div.yiv1014466686photo-title a:hover, #yiv1014466686 
div.yiv1014466686photo-title a:visited {text-decoration:none;}#yiv1014466686 
div.yiv1014466686attach-table div.yiv1014466686attach-row 
{clear:both;}#yiv1014466686 div.yiv1014466686attach-table 
div.yiv1014466686attach-row div {float:left;}#yiv1014466686 p 
{clear:both;padding:15px 0 3px 0;overflow:hidden;}#yiv1014466686 
div.yiv1014466686ygrp-file {width:30px;}#yiv1014466686 
div.yiv1014466686attach-table div.yiv1014466686attach-row div div a 
{text-decoration:none;}#yiv1014466686 div.yiv1014466686attach-table 
div.yiv1014466686attach-row div div span {font-weight:normal;}#yiv1014466686 
div.yiv1014466686ygrp-file-title {font-weight:bold;}#yiv1014466686 
#yiv1014466686 this line is at least one of your problems :
var url:String=documents/{docs.selectedItem.documentName};
try something like :
var url:String=documents/ + docs.selectedItem.documentName;
That should get you closer at least.
From: flexcoders@yahoogroups.com [flexcoders@yahoogroups.com]Sent: 06 November 
2014 14:02
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: downlaoding a file in flex.

 Sorry guys, am really sorry. this is the error it shows 
HTTP Status 404 - 
/campuscholar/bin-debug/documents/%7Bdocs.selectedItem.documentName%7D
#yiv1014466686 #yiv1014466686 --#yiv1014466686ygrp-mkp {border:1px solid 
#d8d8d8;font-family:Arial;margin:10px 0;padding:0 10px;}#yiv1014466686 
#yiv1014466686ygrp-mkp hr {border:1px solid #d8d8d8;}#yiv1014466686 
#yiv1014466686ygrp-mkp #yiv1014466686hd 
{color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 
0;}#yiv1014466686 #yiv1014466686ygrp-mkp #yiv1014466686ads 
{margin-bottom:10px;}#yiv1014466686 #yiv1014466686ygrp-mkp .yiv1014466686ad 
{padding:0 0;}#yiv1014466686 #yiv1014466686ygrp-mkp .yiv1014466686ad p 
{margin:0;}#yiv1014466686 #yiv1014466686ygrp-mkp .yiv1014466686ad a 
{color:#ff;text-decoration:none;}#yiv1014466686 #yiv1014466686ygrp-sponsor 
#yiv1014466686ygrp-lc {font-family:Arial;}#yiv1014466686 
#yiv1014466686ygrp-sponsor #yiv1014466686ygrp-lc #yiv1014466686hd {margin:10px 
0px;font-weight:700;font-size:78%;line-height:122%;}#yiv1014466686 
#yiv1014466686ygrp-sponsor #yiv1014466686ygrp-lc .yiv1014466686ad 
{margin-bottom:10px;padding:0 0;}#yiv1014466686 #yiv1014466686actions 
{font-family:Verdana;font-size:11px;padding:10px 0;}#yiv1014466686 
#yiv1014466686activity 
{background-color:#e0ecee;float:left;font-family:Verdana;font-size:10px;padding:10px;}#yiv1014466686
 #yiv1014466686activity span {font-weight:700;}#yiv1014466686 
#yiv1014466686activity span:first-child 
{text-transform:uppercase;}#yiv1014466686 #yiv1014466686activity span a 
{color:#5085b6;text-decoration:none;}#yiv1014466686 #yiv1014466686activity span 
span {color:#ff7900;}#yiv1014466686 #yiv1014466686activity span 
.yiv1014466686underline {text-decoration:underline;}#yiv1014466686 
.yiv1014466686attach 
{clear:both;display:table;font-family:Arial;font-size:12px;padding:10px 
0;width:400px;}#yiv1014466686 .yiv1014466686attach div a 
{text-decoration:none;}#yiv1014466686 .yiv1014466686attach img 
{border:none;padding-right:5px;}#yiv1014466686 .yiv1014466686attach label 
{display:block;margin-bottom:5px;}#yiv1014466686 .yiv1014466686attach label a 
{text-decoration:none;}#yiv1014466686 blockquote {margin:0 0 0 
4px;}#yiv1014466686 .yiv1014466686bold 
{font-family:Arial;font-size:13px;font-weight:700;}#yiv1014466686 
.yiv1014466686bold a {text-decoration:none;}#yiv1014466686 dd.yiv1014466686last 
p a {font-family:Verdana;font-weight:700;}#yiv1014466686 dd.yiv1014466686last p 
span {margin-right:10px;font-family:Verdana;font-weight:700;}#yiv1014466686 
dd.yiv1014466686last p span.yiv1014466686yshortcuts 
{margin-right:0;}#yiv1014466686 div.yiv1014466686attach-table div div a 
{text-decoration:none;}#yiv1014466686 div.yiv1014466686attach-table 
{width:400px;}#yiv1014466686 div.yiv1014466686file-title a, #yiv1014466686 
div.yiv1014466686file-title a:active, #yiv1014466686 
div.yiv1014466686file-title a:hover, #yiv1014466686 div.yiv1014466686file-title 
a:visited {text-decoration:none;}#yiv1014466686 div.yiv1014466686photo-title a, 
#yiv1014466686 div.yiv1014466686photo-title a:active

Re: [flexcoders] Re: getting the sum of values in list datafield.

2014-09-02 Thread stinas...@yahoo.com [flexcoders]
Hey Guys, i still haven't got it to work, plus more bigger problems, i have 
decide to split my application into modules, i each module i have an array 
collection that populates a list in each of the modules, but when i run the 
application, only data in the first module is retrieved and when i load the 
second module, the data is not retrieved (doesn't show up in the list). below 
is the code.

main.mxml
==

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
layout=vertical
width=100%
height=100%
verticalAlign=top
verticalGap=0
paddingTop=0
paddingBottom=0
paddingLeft=0
paddingRight=0
xmlns:ns2=components.*

mx:Style source=css/styleSheet.css/

mx:HBox styleName=header
 width=100%
 height=50
 verticalAlign=middle
 verticalGap=0
mx:Image source=assets/logo.png/
mx:Spacer width=100%/
mx:Label text=Logged in as: Aaliyah Ntulo/
mx:Image source=assets/power.png/

/mx:HBox
mx:HBox width=100%
 height=100%
 horizontalGap=0
mx:VBox width=200
 height=100%
 verticalGap=0
 backgroundColor=#818284
 horizontalAlign=center

ns2:menuButton click=navStack.selectedChild=dashBoard
mx:Image source=assets/dashboard.png/
mx:Label text=Dashboard/
/ns2:menuButton
ns2:menuButton click=navStack.selectedChild=operator
mx:Image source=assets/drivers.png/
mx:Spacer/
mx:Label text=Drivers/
/ns2:menuButton
ns2:menuButton
mx:Image source=assets/car.png/
mx:Spacer/
mx:Label text=Vehicles/
/ns2:menuButton
/mx:VBox

mx:ViewStack id=navStack width=100% height=100%
mx:ModuleLoader id=dashBoard
 url=dashBoardModule.swf/
 
mx:ModuleLoader id=operator
 url=driversModule.swf/
/mx:ViewStack

/mx:HBox

/mx:Application

dashBoardModule.mxml
==

?xml version=1.0 encoding=utf-8?
mx:Module xmlns:mx=http://www.adobe.com/2006/mxml;
   layout=horizontal
   width=100%
   height=100%
   xmlns:ns1=ascript.*
   horizontalGap=0
   creationComplete=init();
   initialize=initDate();

mx:Script
![CDATA[
import components.newEntryForm;
import mx.collections.ArrayCollection;
import mx.controls.Alert;
import mx.events.CollectionEvent;
import mx.managers.CursorManager;
import mx.managers.PopUpManager;
import mx.rpc.events.ResultEvent;

protected const MAX_DATE:Date=new Date(2020, 11, 31);

/*** code to Filter based on Date Range 
*/

protected const MIN_DATE:Date=new Date(2014, 0, 1);

/*** Start Pop Ups */
private var add_win:newEntryForm;


/*** code to get Expense Details 
*/
[Bindable]
private var expenseAr:ArrayCollection;

public function calculateSum(event:CollectionEvent):void
{
var amt:Number=0;
var n:int=expenseAr.length;
for (var i:int=0; i  n; i++)
{
var expenseEntry:Object=expenseAr.getItemAt(i);
amt+=Number(expenseEntry.subTotal);
}
sum.text=ugxftr.format(amt.toString());
}

protected function arrColl_filterFunc(item:Object):Boolean
{
var cDate:Number=Date.parse(item.hireDate);

if (!sDate || !eDate)
{
return true;
}

if (sDate.selectedDate  eDate.selectedDate)
{
return (sDate.selectedDate.time = cDate)  
(eDate.selectedDate.time = cDate);
}
else if (sDate.selectedDate)
{
return sDate.selectedDate.time = cDate;
}
else if (eDate.selectedDate)
{
return eDate.selectedDate.time = cDate;
}
else
{
return true;
}

}

protected function initDate():void
{
sDate.selectedDate=MIN_DATE;

Re: [flexcoders] Re: getting the sum of values in list datafield.

2014-09-02 Thread stinas...@yahoo.com [flexcoders]
Hey guys, please i need help on this

Re: [flexcoders] Re: getting the sum of values in list datafield.

2014-09-02 Thread Alex Harui aha...@adobe.com [flexcoders]
Way more people are probably watching the us...@flex.apache.org list.  You 
might try asking for help there, and if budget permits, offering to pay someone 
to help you.

-Alex

From: stinas...@yahoo.commailto:stinas...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Date: Tuesday, September 2, 2014 9:48 PM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: getting the sum of values in list datafield.



Hey guys, please i need help on this




Re: [flexcoders] Re: getting the sum of values in list datafield.

2014-09-01 Thread stinas...@yahoo.com [flexcoders]
still doesn't do the trick.

Re: [flexcoders] Re: getting the sum of values in list datafield.

2014-09-01 Thread stinas...@yahoo.com [flexcoders]
Any help guys?

Re: [flexcoders] Re: getting the sum of values in list datafield.

2014-09-01 Thread Alex Harui aha...@adobe.com [flexcoders]
Try debugging the logic.  Basically the principle is to call the same code that 
would be called by manipulating the UI whenever the data is first ready.

From: stinas...@yahoo.commailto:stinas...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Date: Sunday, August 31, 2014 11:35 PM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: getting the sum of values in list datafield.



still doesn't do the trick.




Re: [flexcoders] Re: getting the sum of values in list datafield.

2014-08-31 Thread Alex Harui aha...@adobe.com [flexcoders]
Try calling filterList and maybe calculateSum in expenseResult.

From: stinas...@yahoo.commailto:stinas...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Date: Saturday, August 30, 2014 10:19 AM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: [flexcoders] Re: getting the sum of values in list datafield.



Hello Guys i managed to get it to calculate the total based on range of dates 
thanks to your help. One thing though, when the application my List Component 
is not populated with data until i select a date from the date field. Is there 
a way to fix the problem? Below is the updated code

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
layout=vertical
width=100%
height=100%
verticalAlign=top
verticalGap=0
paddingTop=0
paddingBottom=0
paddingLeft=0
paddingRight=0
xmlns:ns1=ascript.*
creationComplete=init();
initialize=initDate();
xmlns:ns2=components.*

mx:Style source=css/styleSheet.css/

mx:Script
![CDATA[
import components.newEntryForm;
import mx.collections.ArrayCollection;
import mx.controls.Alert;
import mx.managers.CursorManager;
import mx.managers.PopUpManager;
import mx.rpc.events.ResultEvent;
import mx.events.CollectionEvent;

protected const MAX_DATE:Date=new Da! te(2020, 11, 31);

/*** code to Filter based on Date Range 
*/

protected const MIN_DATE:Date=new Date(2014, 0, 1);

/*** Start Pop Ups */
private var add_win:newEntryForm;

/*** code to get Expense Details */
private var expenseAr:ArrayCollection = new ArrayCollection! ;
 div
[Bindable]
private var filteredAr:ArrayCollection=new ArrayCollection();

protected function arrColl_filterFunc(item:Object):Boolean
{
var cDate:Number=Date.parse(item.hireDate);

if (!sDate || !eDate)
{
return true;
}

if (sDate.selectedDate  eDate.selectedDate)
{
return (sDate.selectedDate.time = cDate)  (eDate.selectedDate.time = cDate);
}
else if (sDate.selectedDate)
{
return sDate.selectedDate.time = cDate;
}
else if (eDate.selectedDate)
{
return eDate.selectedDate.time = cDate;
}
else
{
return true;
}
}

protected function initDate():void
{
sDate.se! lectedDate=MIN_DATE;
sDate.selectableRange={rangeStart: MIN_DATE, rangeEnd: MAX_DATE};

eDate.selectedDate=MAX_DATE;
eDate.selectableRange=sDate.selectableRange;
}

private function createdaddPopup():void
{
add_win=newEntryForm(PopUpManager.createPopUp(this, newEntryForm, true));
}

! private function expenseResult(event:ResultEvent):void!
{
expenseAr=event.result as ArrayCollection;
expenseAr.addEventListener(CollectionEvent.COLLECTION_CHANGE, calculateSum);
}
private function filterList():void
{
expenseAr.filterFunction=arrColl_filterFunc;
expenseAr.refresh();
for (var i:int=expenseAr.length - 1; i = 0; i--)
{
if (!filteredAr.contains(expenseAr[i]))
{
filteredAr.addItem(expenseAr[i]);
}
}
for (i=filteredAr.length - 1; i = 0; i--)
{
if (!e! xpenseAr.contains(filteredAr[i]))
{
filteredAr.removeItemAt(i);
}
}
}
private function init():void
{
moRentalsSvc.getExpense();
}

public function calcula! teSum(event:CollectionEvent):void
{
var amt:Number=0;
var n:int=expenseAr.length;
for (var i:int=0; i  n; i++)
{
var expenseEntry:Object=expenseAr.getItemAt(i);
amt+=Number(expenseEntry.subTotal);
}
sum.text=ugxftr.format(amt.toString());
}
]]
/mx:Script

mx:RemoteObject id=moRentalsSvc
destination=ColdFusion
source=moRentals.src.CFCs.crud
showBusyCursor=true
fault=CursorManager.removeBusyCursor();Alert.show(event.fault.message)

mx:method name=getExpense
  result=expenseResult(event)/

/mx:RemoteObject
mx:DefaultTileListEffect id=dtle0
 fadeOutDuration=500
 fadeInDuration=500
 moveDuration=500
 color=0xe7e7e8/

mx:CurrencyFormatter id=ugxftrquo! t;
 precision=0
 thousandsSeparatorTo=,
 useThousandsSeparator=true
 rounding=up
 currencySymbol=UGX /

mx:DateFormatter id=dateFormat
 formatString= DD, /

mx:HBox styleName=header
width=1! 00%
height=50
verticalAlign=middle
verticalGap=0
mx:Image source=assets/logo.png/
mx:Spacer width=100%/
mx:Label text=Logged in as: Aaliyah Ntulo/
mx:Image source=assets/power.png/

/mx:HBox
mx:HBox width=100%
height=100%
horizontalGap=0
mx:VBox width=200
height=100%
verticalGap=0
backgroundColor=#818284
horizontalAlign=center

ns2:menuButton
mx:Image source=assets/dashboard.png/
mx:Label text=Dashboard/
/ns2:menuButton
ns2:menuButton
mx:Image source=assets/drivers.png/
mx:Spacer/
mx:Label text=Drivers/
/ns2:menuButton
ns2:menuButton
mx:Image source=assets/car.png/
mx:Spacer/
mx:Label text=Vehicles/
/ns2:menuButton
ns2:customBtn/
/mx:VBox
mx:VBox height=100%
backgroundColor=#FF
verticalGap=0


mx:HBox width=100%
! paddingLeft=40
paddingRight=45
verticalAlign

[flexcoders] Re: getting the sum of values in list datafield.

2014-08-30 Thread stinas...@yahoo.com [flexcoders]
Hello Guys i managed to get it to calculate the total based on range of dates 
thanks to your help. One thing though, when the application my List Component 
is not populated with data until i select a date from the date field. Is there 
a way to fix the problem? Below is the updated code
 

 ?xml version=1.0 encoding=utf-8?
 mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
 layout=vertical
 width=100%
 height=100%
 verticalAlign=top
 verticalGap=0
 paddingTop=0
 paddingBottom=0
 paddingLeft=0
 paddingRight=0
 xmlns:ns1=ascript.*
 creationComplete=init();
 initialize=initDate();
 xmlns:ns2=components.*
 

 mx:Style source=css/styleSheet.css/
 

 mx:Script
 ![CDATA[
 import components.newEntryForm;
 import mx.collections.ArrayCollection;
 import mx.controls.Alert;
 import mx.managers.CursorManager;
 import mx.managers.PopUpManager;
 import mx.rpc.events.ResultEvent;
 import mx.events.CollectionEvent;
 

 protected const MAX_DATE:Date=new Date(2020, 11, 31);
 

 /*** code to Filter based on Date Range 
*/
 

 protected const MIN_DATE:Date=new Date(2014, 0, 1);
 

 /*** Start Pop Ups */
 private var add_win:newEntryForm;
 
 

 /*** code to get Expense Details */
 
 private var expenseAr:ArrayCollection = new ArrayCollection;
 
 [Bindable]
 private var filteredAr:ArrayCollection=new ArrayCollection();
 

 protected function arrColl_filterFunc(item:Object):Boolean
 {
 var cDate:Number=Date.parse(item.hireDate);
 

 if (!sDate || !eDate)
 {
 return true;
 }
 

 if (sDate.selectedDate  eDate.selectedDate)
 {
 return (sDate.selectedDate.time = cDate)  (eDate.selectedDate.time = 
cDate);
 }
 else if (sDate.selectedDate)
 {
 return sDate.selectedDate.time = cDate;
 }
 else if (eDate.selectedDate)
 {
 return eDate.selectedDate.time = cDate;
 }
 else
 {
 return true;
 } 
 
 }
 

 protected function initDate():void
 {
 sDate.selectedDate=MIN_DATE;
 sDate.selectableRange={rangeStart: MIN_DATE, rangeEnd: MAX_DATE};
 

 eDate.selectedDate=MAX_DATE;
 eDate.selectableRange=sDate.selectableRange;
 }
 

 private function createdaddPopup():void
 {
 add_win=newEntryForm(PopUpManager.createPopUp(this, newEntryForm, true));
 }
 

 private function expenseResult(event:ResultEvent):void
 {
 expenseAr=event.result as ArrayCollection;
 expenseAr.addEventListener(CollectionEvent.COLLECTION_CHANGE, calculateSum); 
 }
 
 private function filterList():void
 {
 expenseAr.filterFunction=arrColl_filterFunc;
 expenseAr.refresh();
 
 for (var i:int=expenseAr.length - 1; i = 0; i--)
 {
 if (!filteredAr.contains(expenseAr[i]))
 {
 filteredAr.addItem(expenseAr[i]);
 }
 }
 for (i=filteredAr.length - 1; i = 0; i--)
 {
 if (!expenseAr.contains(filteredAr[i]))
 {
 filteredAr.removeItemAt(i);
 }
 }
 }
 
 private function init():void
 {
 moRentalsSvc.getExpense(); 
 }
 

 public function calculateSum(event:CollectionEvent):void
 {
 var amt:Number=0;
 var n:int=expenseAr.length;
 for (var i:int=0; i  n; i++)
 {
 var expenseEntry:Object=expenseAr.getItemAt(i);
 amt+=Number(expenseEntry.subTotal);
 }
 sum.text=ugxftr.format(amt.toString()); 
 }
 ]]
 /mx:Script
 

 mx:RemoteObject id=moRentalsSvc
 destination=ColdFusion
 source=moRentals.src.CFCs.crud
 showBusyCursor=true
 fault=CursorManager.removeBusyCursor();Alert.show(event.fault.message)
 

 mx:method name=getExpense
   result=expenseResult(event)/
 

 /mx:RemoteObject
 
 mx:DefaultTileListEffect id=dtle0
  fadeOutDuration=500
  fadeInDuration=500
  moveDuration=500
  color=0xe7e7e8/
 

 mx:CurrencyFormatter id=ugxftr
  precision=0
  thousandsSeparatorTo=,
  useThousandsSeparator=true
  rounding=up
  currencySymbol=UGX /
 

 mx:DateFormatter id=dateFormat
  formatString= DD, /
 

 mx:HBox styleName=header
 width=100%
 height=50
 verticalAlign=middle
 verticalGap=0
 mx:Image source=assets/logo.png/
 mx:Spacer width=100%/
 mx:Label text=Logged in as: Aaliyah Ntulo/
 mx:Image source=assets/power.png/
 

 /mx:HBox
 mx:HBox width=100%
 height=100%
 horizontalGap=0
 mx:VBox width=200
 height=100%
 verticalGap=0
 backgroundColor=#818284
 horizontalAlign=center
 

 ns2:menuButton
 mx:Image source=assets/dashboard.png/
 mx:Label text=Dashboard/
 /ns2:menuButton
 ns2:menuButton
 mx:Image source=assets/drivers.png/
 mx:Spacer/
 mx:Label text=Drivers/
 /ns2:menuButton
 ns2:menuButton
 mx:Image source=assets/car.png/
 mx:Spacer/
 mx:Label text=Vehicles/
 /ns2:menuButton 
 ns2:customBtn/
 /mx:VBox
 mx:VBox height=100%
 backgroundColor=#FF
 verticalGap=0
 

 

 mx:HBox width=100%
 paddingLeft=40
 paddingRight=45
 verticalAlign=middle
 height=66
 

 mx:Label text=Filter From:
  styleName=listLabel/
 mx:DateField id=sDate
  change=filterList();/
 mx:Label text=To:
  styleName=listLabel/
 mx:DateField id=eDate
  change=filterList();/
 mx:Spacer width=100%/
 mx:Button label=New Entry
   click=createdaddPopup()/
 

 

 /mx:HBox
 

 mx:HRule width=100%/
 

 mx:HBox 

[flexcoders] Re: getting the sum of values in list datafield.

2014-08-29 Thread stinas...@yahoo.com [flexcoders]
Any Help Guys?

[flexcoders] Re: getting the sum of values in list datafield.

2014-08-29 Thread stinas...@yahoo.com [flexcoders]
hmm seriously i have hit a wall. could use an example

[flexcoders] Re: Runtime error 'Bookmark is not valid' when an item is added to advanced data grid's hierarchical data.

2014-08-27 Thread guanom...@yahoo.com [flexcoders]
This bug has now been solved in the Apache Flex SDK, and will be available in 
the next version (probably 4.14). For details see [FLEX-34119] 
https://issues.apache.org/jira/browse/FLEX-34119 
 
 [FLEX-34119] mx.collections.HierarchicalCollectionViewCursor...  
https://issues.apache.org/jira/browse/FLEX-34119  Steps to reproduce A: Run the 
HierarchicalCollectionViewCursor_FLEX_34119_Test unit test. You should see lots 
of Bookmark no longer valid errors. Steps to reproduce B: Run the attached 
AIR project.


 
 View on issues.apache.org https://issues.apache.org/jira/browse/FLEX-34119
 Preview by Yahoo
 

  


[flexcoders] Re: Action Script Error ( Please Help- urgent)

2014-08-27 Thread guanom...@yahoo.com [flexcoders]
This bug has now been solved in the SDK, and will be available in the next 
version (probably 4.14). For details see [FLEX-34119] 
https://issues.apache.org/jira/browse/FLEX-34119 
 
 [FLEX-34119] mx.collections.HierarchicalCollectionViewCursor... 
https://issues.apache.org/jira/browse/FLEX-34119 Steps to reproduce A: Run the 
HierarchicalCollectionViewCursor_FLEX_34119_Test unit test. You should see lots 
of Bookmark no longer valid errors. Steps to reproduce B: Run the attached 
AIR project. 
 
 
 
 View on issues.apache.org https://issues.apache.org/jira/browse/FLEX-34119 
 Preview by Yahoo 
 
 
  


[flexcoders] Re: Bookmark no longer valid when moving items in AdvancedDataGrid

2014-08-27 Thread guanom...@yahoo.com [flexcoders]
This bug has now been resolved in the SDK - see this link and all its linked 
tickets [FLEX-34119] mx.collections.HierarchicalCollectionViewCursor causes 
CursorError RTE from ListCollectionView when the underlying collections change 
https://issues.apache.org/jira/browse/FLEX-34119 
 
 [FLEX-34119] mx.collections.HierarchicalCollectionViewCursor... 
https://issues.apache.org/jira/browse/FLEX-34119 Steps to reproduce A: Run the 
HierarchicalCollectionViewCursor_FLEX_34119_Test unit test. You should see lots 
of Bookmark no longer valid errors. Steps to reproduce B: Run the attached 
AIR project. 
 
 
 
 View on issues.apache.org https://issues.apache.org/jira/browse/FLEX-34119 
 Preview by Yahoo 
 
 
  
 It will be available in the next version of the SDK (probably 4.14), but until 
then you can use a nightly build to benefit from the fix.


Re: [flexcoders] Re: Future Scope of Flex

2014-08-20 Thread Dan Pride danielpr...@yahoo.com [flexcoders]
Good Idea, it would be piling one hysteria on top of another so to speak ;)

 I urge you to consider I wrote this just before IE 8.
Still runs pretty good.
My first, a little embarrassing internally to me now but still.
Compare way back then to the future you are asking for now.
Try clicking a few lists or pictures etc
 
http://archaeolibrary.com/



Dan Pride
1-303-800-0900
1-206-313-4607 Mobile
http://danielpride.com
www.linkedin.com/in/danielpride/
http://archaeolibrary.com/
http://RideshareGPS.com




On Tuesday, August 19, 2014 3:40 PM, Alex Harui aha...@adobe.com [flexcoders] 
flexcoders@yahoogroups.com wrote:
 


  
I'm going to ignore your brush fire topic, but I will address two other points:

juice under the hood.  That is a concern for trying to emulate Flash or the 
current Flex SDK in JS since that is quite a bit of code.  But for FlexJS, if 
you look at the prototype of the JQuery wrapping, it is a thin layer written to 
implement whatever was needed to implement an AS emulation of JQuery.  So, in 
theory, if FlexJS using JQuery isn't fast enough, it probably wasn't going to 
be fast enough use JQuery either.  And that's not a problem for the Apache Flex 
project.  The browser companies know they need to get their JS implementations 
to work faster and computers and devices are getting faster.  It might be a 
problem now, but may not be in the future.

Also note that in many cases JS runs faster than AS.  In the JS code we do 
write for FlexJS we are trying to re-use code as much as possible, which is 
supposed to take advantage of the JS optimizers.  That's why FlexJS is using 
more composition instead of inheritance since AS doesn't support multiple 
inheritance.

pixel-by-pixel control.  If the industry demands it, the browser 
manufacturers will deliver.  It doesn't matter for FlexJS, although it would 
probably make some things easier or faster.  Already, we've seen significant 
convergence towards standards in the main browsers (IE, FF, Chrome, Android, 
IOS).  Compare what we have today vs back in IE6 or even IE8.
 
-Alex

From: danielpr...@yahoo.com [flexcoders] flexcoders@yahoogroups.com
Reply-To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Date: Tuesday, August 19, 2014 12:05 PM
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Future Scope of Flex


  
I certainly wish you the best with the javascript implementation. But have to 
admit to strong doubts about it. No matter how many hoops you put yourself 
through you are still working without many fundamentals of advanced 
programming. There just isn't the juice under the hood, maybe with parallel 
processing, but then we are getting close to a million monkeys banging on 
typewriters til they eventually produce a novel aren't we? 
I think the latest ie browser brought flash into the browser as a native 
element not a plug in. Like it or not you got it. I was stunned to hear it 
being done by MS, but its a brilliant way to bring about a correction to the 
market hysteria which dominated after Job's death, and Adobe's stupid response. 
Eventually the industry will demand pixel by pixel interface control, there 
just is no substitute equal to it by definition. After all the burning at the 
stake stuff, it will probably be called shadow o! r something, not flash, but 
a rose by any other name.

At the risk of creating a never ending brush fire (oh what the hey its fun 
sometimes), I wonder if some of the jump on flash and pummel it hysteria had an 
unacknowledged element of gay bashing.  Adobe, deserve it or not, like it or 
not, had quite a reputation. There was one advocate, I think it was in RTMP 
networking videos, that would insert short clips of himself getting back ended 
after about 45 minutes of mind numbing, real high end, discussion. I thought it 
was funny as hell, removed the glaze from your eyes, and dropped your jaw the 
first time you saw it, but i think others were not so amused. (Hey, Kiddies 
certainly aren't going to get that far into one of these unless they are 
enrolling at Harvard at 12 or something, and I survived the experience, and 
found the fast forward button). I think the bent over man statue in front of 
the offices also h! elped with the rep issue. BUT WHO CARES ! Credit where 
credit ! is due. There were some of the most
 brilliant programmers with some of the greatest contributions by software 
developers ever. We have witnessed a modern equivalent of the Salem Witch 
trials on this one for whatever reasons, and the amusing part is that we 
actually think we are advanced beyond that.

Dan Pride

P.S. Why can't women advocates get away with this once in a while :)



Re: [flexcoders] Re: Future Scope of Flex

2014-08-20 Thread Alex Harui aha...@adobe.com [flexcoders]
Are you saying you've tried to port this to JS and it did not run as well?

I'll try to remember this site as we work on FlexJS.

Thanks,
-Alex

From: Dan Pride danielpr...@yahoo.commailto:danielpr...@yahoo.com 
[flexcoders] flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Date: Wednesday, August 20, 2014 4:34 AM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Future Scope of Flex



Good Idea, it would be piling one hysteria on top of another so to speak ;)

 I urge you to consider I wrote this just before IE 8.
Still runs pretty good.
My first, a little embarrassing internally to me now but still.
Compare way back then to the future you are asking for now.
Try clicking a few lists or pictures etc

http://archaeolibrary.com/


Dan Pride
1-303-800-0900
1-206-313-4607 Mobile
http://danielpride.comhttp://danielpride.com/
www.linkedin.com/in/danielpride/http://www.linkedin.com/in/danielpride/
http://archaeolibrary.com/
http://RideshareGPS.comhttp://gpsrideshare.com/




On Tuesday, August 19, 2014 3:40 PM, Alex Harui 
aha...@adobe.commailto:aha...@adobe.com [flexcoders] 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com wrote:



I'm going to ignore your brush fire topic, but I will address two other points:

juice under the hood.  That is a concern for trying to emulate Flash or the 
current Flex SDK in JS since that is quite a bit of code.  But for FlexJS, if 
you look at the prototype of the JQuery wrapping, it is a thin layer written to 
implement whatever was needed to implement an AS emulation of JQuery.  So, in 
theory, if FlexJS using JQuery isn't fast enough, it probably wasn't going to 
be fast enough use JQuery either.  And that's not a problem for the Apache Flex 
project.  The browser companies know they need to get their JS implementations 
to work faster and computers and devices are getting faster.  It might be a 
problem now, but may not be in the future.

Also note that in many cases JS runs faster than AS.  In the JS code we do 
write for FlexJS we are trying to re-use code as much as possible, which is 
supposed to take advantage of the JS optimizers.  That's why FlexJS is using 
more composition instead of inheritance since AS doesn't support multiple 
inheritance.

pixel-by-pixel control.  If the industry demands it, the browser 
manufacturers will deliver.  It doesn't matter for FlexJS, although it would 
probably make some things easier or faster.  Already, we've seen significant 
convergence towards standards in the main browsers (IE, FF, Chrome, Android, 
IOS).  Compare what we have today vs back in IE6 or even IE8.

-Alex

From: danielpr...@yahoo.commailto:danielpr...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Date: Tuesday, August 19, 2014 12:05 PM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Future Scope of Flex


I certainly wish you the best with the javascript implementation. But have to 
admit to strong doubts about it. No matter how many hoops you put yourself 
through you are still working without many fundamentals of advanced 
programming. There just isn't the juice under the hood, maybe with parallel 
processing, but then we are getting close to a million monkeys banging on 
typewriters til they eventually produce a novel aren't we?
I think the latest ie browser brought flash into the browser as a native 
element not a plug in. Like it or not you got it. I was stunned to hear it 
being done by MS, but its a brilliant way to bring about a correction to the 
market hysteria which dominated after Job's death, and Adobe's stupid response. 
Eventually the industry will demand pixel by pixel interface control, there 
just is no substitute equal to it by definition. After all the burning at the 
stake stuff, it will probably be called shadow o! r something, not flash, but 
a rose by any other name.

At the risk of creating a never ending brush fire (oh what the hey its fun 
sometimes), I wonder if some of the jump on flash and pummel it hysteria had an 
unacknowledged element of gay bashing.  Adobe, deserve it or not, like it or 
not, had quite a reputation. There was one advocate, I think it was in RTMP 
networking videos, that would insert short clips of himself getting back ended 
after about 45 minutes of mind numbing, real high end, discussion. I thought it 
was funny as hell, removed the glaze from your eyes, and dropped your jaw the 
first time you saw it, but i think others were not so amused. (Hey, Kiddies 
certainly aren't going to get

Re: [flexcoders] Re: Future Scope of Flex

2014-08-19 Thread Alex Harui aha...@adobe.com [flexcoders]
Not sure  what you mean by Flash to browser native.

I've come across 3 approaches so far:

  1.  emulate Flash in the browser.  Jangaroo and Shumway are examples.  Not 
sure how it is going for them.
  2.  Emulate the current Flex SDK in JS.  One Apache Flex committer is taking 
this approach.  The big question here is that I expect the end result to have 
lots more JS source code involved than a framework designed for cross-compiling 
like FlexJS.  But maybe the browser and minifiers can make that negligible.
  3.  FlexJS.  This is less about Flash than it is about using MXML and AS to 
cross compile to JS.  FlexJS isn't going to have the same pixel-level control 
that you got in Flash.  Only the Flash emulator folks have a true shot at it.  
But again, I offered in a previous post that many folks don't need that and 
just want to catch their bugs earlier by using a more structured language and 
tool chain.

From: Dan Pride danielpr...@yahoo.commailto:danielpr...@yahoo.com 
[flexcoders] flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Date: Monday, August 18, 2014 4:56 PM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Future Scope of Flex



Being its my 12th language I don't find JS that difficult.
I object to the design tho.
Its a completely inferior and unpredictable design approach.
My primary interests are relational database, complex relationships.
having classes etc that enable you to deal with the entire screen as a unit is 
invaluable
Look there is a good reason that google is on its third try to replace 
javascript with something better.
If the movement of flash native to the browser succeeds then its eventually 
going to be game over.
Its basics. Can you relate every pixel on the screen in one unified equation 
and morph it at will mathematically.
By the way, I haven't looked lately, been knee deep in other stuff, how is the 
flash to the browser native going anyway?

Dan Pride
1-303-800-0900
1-206-313-4607 Mobile
http://danielpride.comhttp://danielpride.com/
www.linkedin.com/in/danielpride/http://www.linkedin.com/in/danielpride/
http://archaeolibrary.com/
http://RideshareGPS.comhttp://gpsrideshare.com/




On Monday,! August 18, 2014 4:07 PM, Scott Fanetti 
scott.fanetti@gmail.cmailto:scott.fanetti@gmail.c! om [flex coders] 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com wrote:



Wow - I really don't think this is the forum for character assassination. I've 
been a polyglot developer and architect for 20 years.  One thing in technology 
is constant - that is change.

Adapt.  It is childish to cling to a technology like a fanboy.

Dynamic languages use different paradigms than strongly typed languages.  In 
these contexts functional styles and extension through composition are favored 
over extension through inheritance.  But these are all just tools for 
communication between the dev and the user.

The users have chosen a route that no longer needs flex/flash. That is neither 
good nor bad - it just is.

You may dislike parts of technology A and think it's inferior to technology B - 
but have you considered the notion that possibly you may be trying I hammer 
nails with a saw? You may dislike that JS does not have the type safety of AS. 
But if you are relying on type checking you are missing the boat. The compiler 
can't check if your logic is bad. It can only check that something like tab a 
is in slot b.

You still have to unit test. All the skills you bring to solve a problem are 
only marginally helped by the compiler bitching that a class does not have a 
method to support an interface.  There is nothing inherently bad about 
prototypical inheritance as opposed to class based inheritance. As a matter of 
fact you typically don't need to use inheritance in JS.

Tell me - is it cleaner to devolve functionality into representations that can 
be decorated onto any object - and you test the functionality itself? Or to 
HAVE to inherit from class A in order to get the features if class A? You can't 
do multiple inheritance in AS - so you have to hack around with interfaces and 
utils or you must repeat yourself.

In JS - just decorate what you need with what you need it to do.

It's all good bro. I'm just saying that as a seasoned flex dev that feared 
moving to JS - in my experience - it was an easy transition.  But whatever. 
Have a great day!

And I accept the apology you certainly forgot to add by calling me a manager 
:). I realize it's hard to be civil when someone is wrong on the internet.

Sent from my iPhone

On Aug 18, 2014, at 9:50 AM, 
danielpr...@yahoo.commailto:danielpr...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com wrote:


 js is almost exactly like Actionscript.
Typical

Re: [flexcoders] Re: Future Scope of Flex

2014-08-19 Thread danielpr...@yahoo.com [flexcoders]
I certainly wish you the best with the javascript implementation. But have to 
admit to strong doubts about it. No matter how many hoops you put yourself 
through you are still working without many fundamentals of advanced 
programming. There just isn't the juice under the hood, maybe with parallel 
processing, but then we are getting close to a million monkeys banging on 
typewriters til they eventually produce a novel aren't we?  I think the latest 
ie browser brought flash into the browser as a native element not a plug in. 
Like it or not you got it. I was stunned to hear it being done by MS, but its a 
brilliant way to bring about a correction to the market hysteria which 
dominated after Job's death, and Adobe's stupid response. Eventually the 
industry will demand pixel by pixel interface control, there just is no 
substitute equal to it by definition. After all the burning at the stake stuff, 
it will probably be called shadow or something, not flash, but a rose by any 
other name.
 

 At the risk of creating a never ending brush fire (oh what the hey its fun 
sometimes), I wonder if some of the jump on flash and pummel it hysteria had an 
unacknowledged element of gay bashing.  Adobe, deserve it or not, like it or 
not, had quite a reputation. There was one advocate, I think it was in RTMP 
networking videos, that would insert short clips of himself getting back ended 
after about 45 minutes of mind numbing, real high end, discussion. I thought it 
was funny as hell, removed the glaze from your eyes, and dropped your jaw the 
first time you saw it, but i think others were not so amused. (Hey, Kiddies 
certainly aren't going to get that far into one of these unless they are 
enrolling at Harvard at 12 or something, and I survived the experience, and 
found the fast forward button). I think the bent over man statue in front of 
the offices also helped with the rep issue. BUT WHO CARES ! Credit where credit 
is due. There were some of the most brilliant programmers with some of the 
greatest contributions by software developers ever. We have witnessed a modern 
equivalent of the Salem Witch trials on this one for whatever reasons, and the 
amusing part is that we actually think we are advanced beyond that.
 

 Dan Pride
 

 P.S. Why can't women advocates get away with this once in a while :)
 




Re: [flexcoders] Re: Future Scope of Flex

2014-08-19 Thread Alex Harui aha...@adobe.com [flexcoders]
I'm going to ignore your brush fire topic, but I will address two other points:

juice under the hood.  That is a concern for trying to emulate Flash or the 
current Flex SDK in JS since that is quite a bit of code.  But for FlexJS, if 
you look at the prototype of the JQuery wrapping, it is a thin layer written to 
implement whatever was needed to implement an AS emulation of JQuery.  So, in 
theory, if FlexJS using JQuery isn't fast enough, it probably wasn't going to 
be fast enough use JQuery either.  And that's not a problem for the Apache Flex 
project.  The browser companies know they need to get their JS implementations 
to work faster and computers and devices are getting faster.  It might be a 
problem now, but may not be in the future.

Also note that in many cases JS runs faster than AS.  In the JS code we do 
write for FlexJS we are trying to re-use code as much as possible, which is 
supposed to take advantage of the JS optimizers.  That's why FlexJS is using 
more composition instead of inheritance since AS doesn't support multiple 
inheritance.

pixel-by-pixel control.  If the industry demands it, the browser 
manufacturers will deliver.  It doesn't matter for FlexJS, although it would 
probably make some things easier or faster.  Already, we've seen significant 
convergence towards standards in the main browsers (IE, FF, Chrome, Android, 
IOS).  Compare what we have today vs back in IE6 or even IE8.

-Alex

From: danielpr...@yahoo.commailto:danielpr...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Date: Tuesday, August 19, 2014 12:05 PM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Future Scope of Flex



I certainly wish you the best with the javascript implementation. But have to 
admit to strong doubts about it. No matter how many hoops you put yourself 
through you are still working without many fundamentals of advanced 
programming. There just isn't the juice under the hood, maybe with parallel 
processing, but then we are getting close to a million monkeys banging on 
typewriters til they eventually produce a novel aren't we?

I think the latest ie browser brought flash into the browser as a native 
element not a plug in. Like it or not you got it. I was stunned to hear it 
being done by MS, but its a brilliant way to bring about a correction to the 
market hysteria which dominated after Job's death, and Adobe's stupid response. 
Eventually the industry will demand pixel by pixel interface control, there 
just is no substitute equal to it by definition. After all the burning at the 
stake stuff, it will probably be called shadow o! r something, not flash, but 
a rose by any other name.

At the risk of creating a never ending brush fire (oh what the hey its fun 
sometimes), I wonder if some of the jump on flash and pummel it hysteria had an 
unacknowledged element of gay bashing.  Adobe, deserve it or not, like it or 
not, had quite a reputation. There was one advocate, I think it was in RTMP 
networking videos, that would insert short clips of himself getting back ended 
after about 45 minutes of mind numbing, real high end, discussion. I thought it 
was funny as hell, removed the glaze from your eyes, and dropped your jaw the 
first time you saw it, but i think others were not so amused. (Hey, Kiddies 
certainly aren't going to get that far into one of these unless they are 
enrolling at Harvard at 12 or something, and I survived the experience, and 
found the fast forward button). I think the bent over man statue in front of 
the offices also h! elped with the rep issue. BUT WHO CARES ! Credit where 
credit ! is due. There were some of the most brilliant programmers with some of 
the greatest contributions by software developers ever. We have witnessed a 
modern equivalent of the Salem Witch trials on this one for whatever reasons, 
and the amusing part is that we actually think we are advanced beyond that.

Dan Pride

P.S. Why can't women advocates get away with this once in a while :)





Re: [flexcoders] Re: Future Scope of Flex

2014-08-18 Thread danielpr...@yahoo.com [flexcoders]
 js is almost exactly like Actionscript. Typical of a JS advocate, no real 
 knowledge of object oriented structures and concepts. Bet this is by another 
 manager type that doesn't know an array from a variable (actually that WOULD 
 be the same level of knowledge in this case wouldn't it.)


Re: [flexcoders] Re: Future Scope of Flex

2014-08-18 Thread Juan Carlos Pérez synkop...@gmail.com [flexcoders]
Excelent idea Alex, thanks for sharing.


Juan Carlos Perez

 On Aug 17, 2014, at 2:00, Alex Harui aha...@adobe.com [flexcoders] 
 flexcoders@yahoogroups.com wrote:
 
 Well, I don't know if Flash will return to being the solution for UI design.  
 With all of the various mobile browsers, I don't know if Flash will be able 
 to run in all of them.
 
 But Flex, on the other hand, could.  That's what I'm trying to make happen 
 with FlexJS.  FlexJS won't control every pixel like you could in Flash (at 
 least, certainly not early versions), but it should provide the other 
 benefits that folks have found missing, mainly in terms of developer 
 productivity.
 
 Yes, Flex isn't as popular as it was before Adobe donated it to Apache.  
 Adobe was spending serious money on getting folks to use Flex.  But every 
 day, some other product or idea goes viral without million-dollar marketing 
 schemes.  So, if you like Flex, take a look at FlexJS and tell us on the 
 Apache Flex dev list (d...@flex.apache.org) what it needs before you'll start 
 recommending it to others such that it can go viral.  IOW, you have to do 
 your own marketing if you want to see more Flex jobs, and you have to help 
 shape Flex and/or FlexJS into something worth marketing.  No big company is 
 going to do that for you.
 
 FlexJS isn't out to compete against HTML5.  In fact, it is simply out to 
 leverage it.  As I've been working on FlexJS and talking to Flex folks who 
 are now developing in some JS framework, it is becoming clear to me that any 
 application developer using any framework is really just attaching components 
 together.   There is a longer version of what I'm about to write on the 
 Apache Flex LinkedIn discussion group,  but basically, the problem with JS is 
 that you can attach anything to anything.  Newer languages (TypeScript, DART) 
 have constructs to try to catch those mistakes.  ActionScript can do an even 
 better job, especially for really big apps.  And MXML gives you a schematic 
 of your components.
 
 These days, I'm hoping to find folks who can help those of us working on 
 FlexJS prove that AS and MXML can make you more proficient at attaching 
 nearly any JS framework's components together.  Then someday,  it won't 
 matter what JS framework your client wants to use, you'll use MXML and 
 ActionScript to assemble that JS framework's components into an application 
 and make fewer mistakes along the way.  But that someday will come sooner if 
 folks can contribute their time and energy to the project.
 
 If you can help out, send an email to d...@flex.apache.org.
 
 -Alex
 
 From: danielpr...@yahoo.com [flexcoders] flexcoders@yahoogroups.com
 Reply-To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
 Date: Saturday, August 16, 2014 8:39 AM
 To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Future Scope of Flex
 
  
 The original authors must be going nuts, in deep depression at least.
 
 They climbed mount everest to the pinnacle of human interface design and did 
 it in a universally accessible way. At the bottom line if you can't 
 mathematically relate every single pixel on the screen to every other one, 
 over time, you are by definition  inferior to flash.
 While I am currently working in Php/Mysql/ with Ajax on top due to the nature 
 of the project (absolute universal access), I think there is still hope. More 
 are taking flash to the browser native. Very smart move. If the standards are 
 there it will in time  inevitably dominate. To save face it will probably be 
 called some great new tech called bonzoshow or something :) 
 Everybody literally freaked out at jobs' dying statement, jumped on the it 
 won't run mobile and like a herd of lemmings everybody dove for the exits. 
 Well mobile was si! ngle core then its quad and more now. Flash was and will 
 be again I think a universal solution to absolutely superior user interface 
 design. Pixel by Pixel over time. A growing morphing button is a single 
 mathematics equation, not an unpredictable herd of objects clattering around 
 in an approximation.
 


[flexcoders] Re: Future Scope of Flex

2014-08-18 Thread Jacob Schatz playpianolikew...@gmail.com [flexcoders]
The only thing that AS3 and Javascript have in common is ECMAScript. It's
quite tricky to create OOP javascript that is well organized by yourself.
That's why we have all these external libraries (backbone, angular, etc...)
that try and help. That's also why Flash is a plugin... Even though being a
plugin is it's downfall... By being a plugin it doesn't have to play by the
rules of the DOM which are different on every browser. It can release new
versions that will apply to every browser. It's just unfortunate that the
web was built in such a way that there is no better way.  Unless you want
to create an As3 tool that compiles down to Javascript. Unless you can get
all the browser makers to agree on one new language that would make the
javascript situation better.
If you want to build something in Javascript you are mainly relying on the
community aka Github. Which isn't bad, but it doesn't guarantee you a bug
free situation (not that Flex does, but at least you know that it's a
production release). Most of your projects will import tons of libraries
just to get the initial functionality you need. Some may import double
functionality. For example.. You might import bootstrap's javascript...
Which has a crappy autocomplete built in to version 2 but not version 3.
But you shouldn't use it because it's poorly written. Which you wouldn't
know unless you tried it out.. then might have found this article.
http://lucumr.pocoo.org/2013/12/9/stop-being-clever/ ...
Anywho... Of course you can now do mostly everything in Javascript that you
used to do in Flash (except copy to the clipboard). The big difference is
that you'll wind up doing a lot more research to find out how to do X.
Doing the research is overwhelming and you'll often have to try out a lot
of untested stuff. Making things work often comes with caveats.
There are full fledged flex-like solutions for Javascript but they cost
ridiculous amounts of money (per month!)... That's just depressing.


[flexcoders] Re: Future Scope of Flex

2014-08-18 Thread sk.jameel2...@gmail.com [flexcoders]
Hi Guyz, 
 Thanks for your reply.
 
 Your suggestions are indeed vital.
 At least all the flex developers should know where they stand in the current 
competitive market.
 
 I think it's time that flex can take advantage of the frustration growing 
around Html5/JS.
 
 Flex is a really cool tool to develop RIAs and apps.
 
 Hope FlexJS will bring good news for Flex developers.
 
 Thanks a lot guyz.
 
 Regards,
 Jameel 


Re: [flexcoders] Re: Future Scope of Flex

2014-08-18 Thread Scott Fanetti scott.fane...@gmail.com [flexcoders]
Wow - I really don't think this is the forum for character assassination. I've 
been a polyglot developer and architect for 20 years.  One thing in technology 
is constant - that is change.  

Adapt.  It is childish to cling to a technology like a fanboy.  

Dynamic languages use different paradigms than strongly typed languages.  In 
these contexts functional styles and extension through composition are favored 
over extension through inheritance.  But these are all just tools for 
communication between the dev and the user.  

The users have chosen a route that no longer needs flex/flash. That is neither 
good nor bad - it just is.  

You may dislike parts of technology A and think it's inferior to technology B - 
but have you considered the notion that possibly you may be trying I hammer 
nails with a saw? You may dislike that JS does not have the type safety of AS. 
But if you are relying on type checking you are missing the boat. The compiler 
can't check if your logic is bad. It can only check that something like tab a 
is in slot b. 

You still have to unit test. All the skills you bring to solve a problem are 
only marginally helped by the compiler bitching that a class does not have a 
method to support an interface.  There is nothing inherently bad about 
prototypical inheritance as opposed to class based inheritance. As a matter of 
fact you typically don't need to use inheritance in JS.  

Tell me - is it cleaner to devolve functionality into representations that can 
be decorated onto any object - and you test the functionality itself? Or to 
HAVE to inherit from class A in order to get the features if class A? You can't 
do multiple inheritance in AS - so you have to hack around with interfaces and 
utils or you must repeat yourself.  

In JS - just decorate what you need with what you need it to do.  

It's all good bro. I'm just saying that as a seasoned flex dev that feared 
moving to JS - in my experience - it was an easy transition.  But whatever. 
Have a great day!

And I accept the apology you certainly forgot to add by calling me a manager 
:). I realize it's hard to be civil when someone is wrong on the internet.  

Sent from my iPhone

 On Aug 18, 2014, at 9:50 AM, danielpr...@yahoo.com [flexcoders] 
 flexcoders@yahoogroups.com wrote:
 
  js is almost exactly like Actionscript.
 
 Typical of a JS advocate, no real knowledge of object oriented structures and 
 concepts. Bet this is by another manager type that doesn't know an array from 
 a variable (actually that WOULD be the same level of knowledge in this case 
 wouldn't it.)
 


Re: [flexcoders] Re: Future Scope of Flex

2014-08-18 Thread Wemerson Couto Guimarães wemerso...@gmail.com [flexcoders]
Hi all.

Try Wakanda JS and be happy  forgot flash/flex and etc. It's Ann
All-on-one solution: http server, NoSql database, JS framawork for frontend
and backend and have an amazing RAD tool for HTML5 UI design an much
more... And it's extremely well documented anos have lotes of videos 4 free

Ser in: http://www.wakanda.org
Em 18/08/2014 10:50, danielpr...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.com escreveu:



  js is almost exactly like Actionscript.
 Typical of a JS advocate, no real knowledge of object oriented structures
 and concepts. Bet this is by another manager type that doesn't know an
 array from a variable (actually that WOULD be the same level of knowledge
 in this case wouldn't it.)
  



Re: [flexcoders] Re: Future Scope of Flex

2014-08-18 Thread John Hall jh...@cactusware.com [flexcoders]
Think the person was simply referring to the vocabulary and syntax, since
they're both based on the ECMA standards. Not sure it deserved an ad
hominem attack. It's a pretty accurate statement that someone who knows
ActionScript won't be baffled by JS.


On Mon, Aug 18, 2014 at 6:50 AM, danielpr...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.com wrote:



  js is almost exactly like Actionscript.
 Typical of a JS advocate, no real knowledge of object oriented structures
 and concepts. Bet this is by another manager type that doesn't know an
 array from a variable (actually that WOULD be the same level of knowledge
 in this case wouldn't it.)

  




-- 
John Hall
jh...@cactusware.com
http://www.cactusware.com


[flexcoders] Re: Future Scope of Flex

2014-08-18 Thread danielpr...@yahoo.com [flexcoders]
Of course you can now do mostly everything in Javascript that you used to do 
in Flash  Really ?
 Hows the RTMP networking going?
 Ever see the Fedex app?


[flexcoders] Re: Future Scope of Flex

2014-08-18 Thread danielpr...@yahoo.com [flexcoders]
Oh My god, Jacob from the NCR project? I am humbled.
 But are you serious about the Javascript?
 Maybe if like you got a staff of 300,...
 Yea I am working in it, but its like stone implements after flash...
 are you serious?
 Heard from the Genius lately? Whats he up to?
 Did he get his three masted schooner yet ?


Re: [flexcoders] Re: Future Scope of Flex

2014-08-18 Thread Dan Pride danielpr...@yahoo.com [flexcoders]
Being its my 12th language I don't find JS that difficult.
I object to the design tho.
Its a completely inferior and unpredictable design approach.
My primary interests are relational database, complex relationships.
having classes etc that enable you to deal with the entire screen as a unit is 
invaluable
Look there is a good reason that google is on its third try to replace 
javascript with something better.
If the movement of flash native to the browser succeeds then its eventually 
going to be game over.
Its basics. Can you relate every pixel on the screen in one unified equation 
and morph it at will mathematically.
By the way, I haven't looked lately, been knee deep in other stuff, how is the 
flash to the browser native going anyway?
 
Dan Pride
1-303-800-0900
1-206-313-4607 Mobile
http://danielpride.com
www.linkedin.com/in/danielpride/
http://archaeolibrary.com/
http://RideshareGPS.com





On Monday, August 18, 2014 4:07 PM, Scott Fanetti scott.fane...@gmail.com 
[flexcoders] flexcoders@yahoogroups.com wrote:
 


  
Wow - I really don't think this is the forum for character assassination. I've 
been a polyglot developer and architect for 20 years.  One thing in technology 
is constant - that is change.  

Adapt.  It is childish to cling to a technology like a fanboy.  

Dynamic languages use different paradigms than strongly typed languages.  In 
these contexts functional styles and extension through composition are favored 
over extension through inheritance.  But these are all just tools for 
communication between the dev and the user.  

The users have chosen a route that no longer needs flex/flash. That is neither 
good nor bad - it just is.  

You may dislike parts of technology A and think it's inferior to technology B - 
but have you considered the notion that possibly you may be trying I hammer 
nails with a saw? You may dislike that JS does not have the type safety of AS. 
But if you are relying on type checking you are missing the boat. The compiler 
can't check if your logic is bad. It can only check that something like tab a 
is in slot b. 

You still have to unit test. All the skills you bring to solve a problem are 
only marginally helped by the compiler bitching that a class does not have a 
method to support an interface.  There is nothing inherently bad about 
prototypical inheritance as opposed to class based inheritance. As a matter of 
fact you typically don't need to use inheritance in JS.  

Tell me - is it cleaner to devolve functionality into representations that can 
be decorated onto any object - and you test the functionality itself? Or to 
HAVE to inherit from class A in order to get the features if class A? You can't 
do multiple inheritance in AS - so you have to hack around with interfaces and 
utils or you must repeat yourself.  

In JS - just decorate what you need with what you need it to do.  

It's all good bro. I'm just saying that as a seasoned flex dev that feared 
moving to JS - in my experience - it was an easy transition.  But whatever. 
Have a great day!

And I accept the apology you certainly forgot to add by calling me a manager 
:). I realize it's hard to be civil when someone is wrong on the internet.  

Sent from my iPhone

On Aug 18, 2014, at 9:50 AM, danielpr...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.com wrote:


  
 js is almost exactly like Actionscript.
Typical of a JS advocate, no real knowledge of object oriented structures and 
concepts. Bet this is by another manager type that doesn't know an array from 
a variable (actually that WOULD be the same level of knowledge in this case 
wouldn't it.)


Re: [flexcoders] Re: Future Scope of Flex

2014-08-17 Thread Alex Harui aha...@adobe.com [flexcoders]
Well, I don't know if Flash will return to being the solution for UI design.  
With all of the various mobile browsers, I don't know if Flash will be able to 
run in all of them.

But Flex, on the other hand, could.  That's what I'm trying to make happen with 
FlexJS.  FlexJS won't control every pixel like you could in Flash (at least, 
certainly not early versions), but it should provide the other benefits that 
folks have found missing, mainly in terms of developer productivity.

Yes, Flex isn't as popular as it was before Adobe donated it to Apache.  Adobe 
was spending serious money on getting folks to use Flex.  But every day, some 
other product or idea goes viral without million-dollar marketing schemes.  So, 
if you like Flex, take a look at FlexJS and tell us on the Apache Flex dev list 
(d...@flex.apache.org) what it needs before you'll start recommending it to 
others such that it can go viral.  IOW, you have to do your own marketing if 
you want to see more Flex jobs, and you have to help shape Flex and/or FlexJS 
into something worth marketing.  No big company is going to do that for you.

FlexJS isn't out to compete against HTML5.  In fact, it is simply out to 
leverage it.  As I've been working on FlexJS and talking to Flex folks who are 
now developing in some JS framework, it is becoming clear to me that any 
application developer using any framework is really just attaching components 
together.   There is a longer version of what I'm about to write on the Apache 
Flex LinkedIn discussion group,  but basically, the problem with JS is that you 
can attach anything to anything.  Newer languages (TypeScript, DART) have 
constructs to try to catch those mistakes.  ActionScript can do an even better 
job, especially for really big apps.  And MXML gives you a schematic of your 
components.

These days, I'm hoping to find folks who can help those of us working on FlexJS 
prove that AS and MXML can make you more proficient at attaching nearly any JS 
framework's components together.  Then someday,  it won't matter what JS 
framework your client wants to use, you'll use MXML and ActionScript to 
assemble that JS framework's components into an application and make fewer 
mistakes along the way.  But that someday will come sooner if folks can 
contribute their time and energy to the project.

If you can help out, send an email to d...@flex.apache.org.

-Alex

From: danielpr...@yahoo.commailto:danielpr...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Date: Saturday, August 16, 2014 8:39 AM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Future Scope of Flex



The original authors must be going nuts, in deep depression at least.

They climbed mount everest to the pinnacle of human interface design and did it 
in a universally accessible way. At the bottom line if you can't mathematically 
relate every single pixel on the screen to every other one, over time, you are 
by definition inferior to flash.
While I am currently working in Php/Mysql/ with Ajax on top due to the nature 
of the project (absolute universal access), I think there is still hope. More 
are taking flash to the browser native. Very smart move. If the standards are 
there it will in time inevitably dominate. To save face it will probably be 
called some great new tech called bonzoshow or something :)
Everybody literally freaked out at jobs' dying statement, jumped on the it 
won't run mobile and like a herd of lemmings everybody dove for the exits. 
Well mobile was si! ngle core then its quad and more now. Flash was and will be 
again I think a universal solution to absolutely superior user interface 
design. Pixel by Pixel over time. A growing morphing button is a single 
mathematics equation, not an unpredictable herd of objects clattering around in 
an approximation.




Re: [flexcoders] Re: Future Scope of Flex

2014-08-17 Thread Barry Gold barrydg...@ca.rr.com [flexcoders]
On 8/16/2014 6:35 PM, Scott Fanetti scott.fane...@gmail.com [flexcoders] 
wrote:
 Luckily - js is almost exactly like Actionscript. Anybody that is good 
 at AS can write JS in no time. 
If you don't mind working in a language that:

a) Doesn't have type declarations for variables, arguments, and function 
return values

b) Has no built-in syntax for classes and objects.  You have to build a 
template object and assign all the functions as attributes of the 
template.

c) Doesn't have the enormous library of built-in classes that comes with 
AS2 or AS3.



[flexcoders] Re: Future Scope of Flex

2014-08-16 Thread Mathew Easow Jacob eas...@gmail.com [flexcoders]
Adobe have dumped Flex , don’t think even Apache’s evolvement will give
some hope . So better move out , I have not seen any new project
development using Adobe Flex. However most of the Flex projects are in
migrating  to HTML5 J .

Not for Flex , even Adobe’s quality of technical support have decreased
drastically. So I am very selective in using Adobe products now .


-- 
Mathew Easow Jacob
+91-9886979038
Bangalore


[flexcoders] Re: Future Scope of Flex

2014-08-16 Thread danielpr...@yahoo.com [flexcoders]
The original authors must be going nuts, in deep depression at least. They 
climbed mount everest to the pinnacle of human interface design and did it in a 
universally accessible way. At the bottom line if you can't mathematically 
relate every single pixel on the screen to every other one, over time, you are 
by definition inferior to flash.
 
 While I am currently working in Php/Mysql/ with Ajax on top due to the nature 
of the project (absolute universal access), I think there is still hope. More 
are taking flash to the browser native. Very smart move. If the standards are 
there it will in time inevitably dominate. To save face it will probably be 
called some great new tech called bonzoshow or something :) 
 
 Everybody literally freaked out at jobs' dying statement, jumped on the it 
won't run mobile and like a herd of lemmings everybody dove for the exits. 
Well mobile was single core then its quad and more now. Flash was and will be 
again I think a universal solution to absolutely superior user interface 
design. Pixel by Pixel over time. A growing morphing button is a single 
mathematics equation, not an unpredictable herd of objects clattering around in 
an approximation.


[flexcoders] Re: Future Scope of Flex

2014-08-16 Thread Scott Fanetti scott.fane...@gmail.com [flexcoders]
Technologies come and go. When I was a kid - the coolest thing in the world was 
the NextStep computer. It died but eventually reemerged as the Mac OS. 
Languages come and go as well. Flex and AS were great for a time - but the 
proprietary nature of the language killed it a few years ago.  The web in 
general has moved away from plugin based interfaces.  As standards have come 
together - the browser makes have adopted js as the language of choice with 
CSS/HTML for templates and styles. 

That's not something to fear - that's just the way technology works. It's a 
tool.  

JS is easy to learn - so learn it.  The tools available today in various 
platforms are easy to pick up as well. JS has some truly great parts - like 
promises - that were never really implemented in Flex/flash.  

I think it's a good idea as a dev to always keep learning.  It doesn't matter 
that tech A is killed by tech B --- if you keep learning you will always have a 
job. 

Sent from my iPhone

[flexcoders] Re: Future Scope of Flex

2014-08-16 Thread danielpr...@yahoo.com [flexcoders]
I notice you don't compare it to your prior experience developing user 
interfaces in flash?

[flexcoders] Re: Future Scope of Flex

2014-08-16 Thread danielpr...@yahoo.com [flexcoders]
like promises - that were never really implemented in Flex/flash.  Like what 
specifically?


Re: [flexcoders] Re: Future Scope of Flex

2014-08-16 Thread David Adams dpad...@gmail.com [flexcoders]

 like promises - that were never really implemented in Flex/flash.
 Like what specifically?


Try this:

http://www.html5rocks.com/en/tutorials/es6/promises/


Re: [flexcoders] Re: Future Scope of Flex

2014-08-16 Thread Scott Fanetti scott.fane...@gmail.com [flexcoders]
I built the Rosetta Stone user interface in flex and the EA Pogo flex games 
interface and online store were also built by me. I was using flash when it was 
the Futuresplash player. I was a very early adopter. 

Adobe F'd it in the A  by mismanaging the technology that WAS really great.  
But - time goes on and you change technologies.  I wrote a ton of Lingo in 
director too - along with vbscript for IE only interfaces. I've had my share of 
dead end technologies.  Technologies rise and fall - a good dev realizes it's 
all pretty much the same from tech to tech - the syntax changes but the 
patterns are transferable. 

Now though - there is no justifiable reason to do any development in flex.  
Adobe has given up on it. It is not going to be a viable platform for the 
future.

Luckily - js is almost exactly like Actionscript. Anybody that is good at AS 
can write JS in no time. 

Sent from my iPhone

 On Aug 16, 2014, at 8:22 PM, danielpr...@yahoo.com [flexcoders] 
 flexcoders@yahoogroups.com wrote:
 
 I notice you don't compare it to your prior experience developing user 
 interfaces in flash?
 
 


[flexcoders] Re: Future Scope of Flex

2014-08-15 Thread danielpr...@yahoo.com [flexcoders]
I moved over to android then to php mysql ajax on my latest project. (Mobile 
phone mapping) Android OS is GREAT, Javascript is for fools, naves, and 
managers.
 Can't come close to what I could do in Flex, and its a lot harder to get it 
just right.
 It is a great employment tool for tech tho, I really have to give it that.
 Please, Please, SOMEBODY come up with something to get rid of javascript.
 The basic idea of an after creation bolt on solution is a bad idea.
 It could work if html was 100 percent uniform, but even then its a bad idea.
 Given the incompatibilities and absurd trivia you have to deal with,... yech.


[flexcoders] Re: Memory leak in Spring BlazeDS Integration 1.0.3.RELEASE due to AsyncMessage

2014-06-18 Thread a_legend_innova...@yahoo.com [flexcoders]
I have the same problem now, 

Memory leak due to a large amount of the memory heap space is allocated by the 
AsyncMessage Objects. 

I'm using the BlazeDS 4, Spring 3.0.5, WebSphere 7, ActiveMQ 5.2, JDK 1.6. 

Kindly advise. 

Thanks, 

Sherif 

[flexcoders] Re: Memory leak in Spring BlazeDS Integration 1.0.3.RELEASE due to AsyncMessage

2014-06-18 Thread a_legend_innova...@yahoo.com [flexcoders]
I have the same problem now,

Memory leak due to a large amount of the memory heap space is allocated by
the AsyncMessage Objects.

I'm using the BlazeDS 4, Spring 3.0.5, WebSphere 7, ActiveMQ 5.2, JDK 1.6.

Kindly advise.

Thanks,

Sherif 
---In flexcoders@yahoogroups.com, vascoAce@... wrote :

 I'm getting an AsyncMessage memory leak. This leak fills the Tomcat JVM 
tenured space after a few hours of heavy load operation and it crashes with an 
out of memory (OOM) error. I'm using the Spring BlazeDS Integration 
1.0.3.RELEASE., Spring 3.0.1, Tomcat 6.0.26, ActiveMQ 5.3.1, SUN JDK 1.6.0_20. 
I first supected a slow JVM garbage collector (GC) so I tried many conbination 
of JVM settings with no luck. I'm setting the AsyncMessage to null, set the 
message time to live to 5000 (5 seconds) , set the message timestamp, and the 
AsyncMessage keep having some weak references that is preventing the GC from 
collecting the objects. I also tried by not setting the message time to live. 
Have anybody found a workaround to this issue? I'm going to try with a nightly 
build of blazeds or the Spring BlazeDS Integration to see if this issue is 
solved. Any ideas please let me know. This bug is delaying the release of our 
Flex application. There is a Adobe Blazeds Jira issue already submitted about 
the same issue with Jprofiler snapshots:
 
 http://bugs.adobe.com/jira/browse/BLZ-502 
http://bugs.adobe.com/jira/browse/BLZ-502
 
 Thanks,
 
 Alberto Acevedo

  


Re: [flexcoders] Re: Problem with Flash 13

2014-05-17 Thread edgardo edmore...@gmail.com [flexcoders]
hola:
en  AS3 / Flex

var urlExcelExport:String =  
http://midominio.ar/php/create.php?name=mypdf.pdfmethod=inline;;
var variables:URLVariables = new URLVariables();
var bytes:ByteArray = myPDF.savePDF(Method.LOCAL);
var u:URLRequest = new URLRequest(urlExcelExport);
u.contentType = application/octet-stream;
u.method = URLRequestMethod.POST;
u.data = bytes;
  navigateToURL(u,_blank);

en PHP el create.php
?php
$method = $_GET['method']; $name = $_GET['name']; $RAW_POST_DATA =
file_get_contents(php://input); if ( isset ( $RAW_POST_DATA )) {
$pdf = $RAW_POST_DATA;
//$pdf = $GLOBALS[HTTP_RAW_POST_DATA];

if ( strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') )
{
if ( strpos($_SERVER['HTTP_USER_AGENT'], 'Windows 98') )
{
header(Pragma: public);
header(Expires: 0); // set expiration time
header(Cache-Control: must-revalidate, post-check=0, pre-check=0);
header('Content-Type: application/pdf');
header('Content-Length: '.strlen($pdf));
header('Content-disposition: attachment; filename='.$name.'');
 }
else {
header('ETag: etagforie7download'); //IE7 requires this header
header('Content-Type: application/pdf');
header('Content-Length: '.strlen($pdf));
header('Content-Disposition: inline; filename='.$name.'');
header(Content-Transfer-Encoding: binary);
}
} else  {
header('Content-Type: application/pdf');
header('Content-Length: '.strlen($pdf));
header('Content-disposition:'.$method.'; filename='.$name.'');
}

echo $pdf;
}  else echo 'An error occured.'.$name;


?

funciona ok



2014-05-16 19:27 GMT-03:00 diamondschedu...@yahoo.com [flexcoders] 
flexcoders@yahoogroups.com:



 Also this thread:

 https://forums.adobe.com/thread/1474415



  




-- 
saludos
edgardo


[flexcoders] Re: Problem with Flash 13

2014-05-16 Thread diamondschedu...@yahoo.com [flexcoders]
Also this thread: 

 https://forums.adobe.com/thread/1474415 https://forums.adobe.com/thread/1474415

 

 

 



Re: [flexcoders] RE: Mate dispatchEvent() - Call to possibly undefined method dispatchEvent

2014-02-12 Thread Nolan Erck
Looks like this was actually an issue with how one of the MainEventMap
config settings was wired up. It's fixed now.

Thanks,
Nolan



On Fri, Feb 7, 2014 at 7:22 AM, diamondschedu...@yahoo.com wrote:



 Which SDK are you using. I've used Mate for a long time without problems.
 I assume this is within a UIComponent and it's not an issue of not using
 dispatcher.dispatchEvent(

  



[flexcoders] RE: Mate dispatchEvent() - Call to possibly undefined method dispatchEvent

2014-02-08 Thread diamondscheduler
Which SDK are you using. I've used Mate for a long time without problems. I 
assume this is within a UIComponent and it's not an issue of not using 
dispatcher.dispatchEvent(


[flexcoders] Re: Android/mobile question

2013-11-08 Thread Jerry Quintana
In android, positions are sometes based on other objects on your screen.  You 
have to be carefull though because if you have a view, and remove an object 
from that view, the position of things become unpredictable.  Grouping objects 
is a good idea.


Sent from my Verizon Wireless 4G LTE smartphone

[flexcoders] RE: In-house Online Training Solution

2013-10-02 Thread pzanetti631













[flexcoders] RE: Clearcase FB

2013-08-09 Thread Davidson, Jerry
To be more specific, ClearCase doesn't appear in the menus.  If you go to 
Window | Perspective |Custom Perspective and select the Command Groups 
Availability you see ClearCase and ClearCaseActivitiy (both unchecked).  Check 
them and go to the first tab, Tool Bar Visibility and ClearCase appears 
checked.  Click the OK button and nothing happens.  Click the Cancel and the 
dialog goes away.

Window 7, Flash Builder 4.0, ClearCase 8

I run Flex as Administrator in case that made a difference.

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf 
Of Davidson, Jerry
Sent: Wednesday, August 07, 2013 10:54 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Clearcase  FB


I don't see clearcase under flexbuilder.  Any pointers?



[flexcoders] Re: Digest Number 12393

2013-06-26 Thread rob.love1977
nothing is flowing in this case. It is something to do with the generated code. 
If I create a remote call manually it fires if I use the generated code and 
call the services nothing ever happens.by placing breakpoints on the generated 
code I do see that the item references created and everything should fire but 
it does not. The problem is entirely on the client end.

--- In flexcoders@yahoogroups.com, owner@... wrote:

 You can use a tool like ServiceCapture or Charles to see the data flowing (or 
 if it's not) back and forth. You can also use the ObjectUtil class in Flex to 
 display an alert of any data (or error - you can use cfthrow like this in 
 your CFC:  cfthrow message=#cfcatch.message# #cfcatch.detail# returned) - 
 something like this:
 
 import mx.utils.ObjectUtil;
 import mx.controls.Alert;
 import mx.rpc.events.ResultEvent; 
 import mx.rpc.events.FaultEvent;
 
 private function getAllAsQuery_Handler(event:ResultEvent):void { //
 Alert.show(ObjectUtil.toString(event.result)); 
 }
 
 private function ro_fault(event:FaultEvent):void { // dump error message 
 Alert.show(ObjectUtil.toString(event.fault)); 
 }
 
 
  Original Message br/Subject: [flexcoders] Digest Number 
 12393br/From: flexcoders@yahoogroups.combr/Date: Jun 26, 2013 5:08 
 PMbr/To: flexcoders@yahoogroups.combr/CC: br/br/RIA Development with 
 Adobe Flex   br/  RIA Development with Adobe Flex   Group   
 br/br/br/br/ 2 New Messages   Digest #12393 
 br/br/br/br/br/br/1a br/ data service not executing any 
 ideas please   by rob.love1977 rob.love1977  br/br/br/1b br/ Re: 
 data service not executing any ideas please   by Alex Harui alex_harui  
 br/br/br/br/br/br/ br/Messages 1a data service not 
 executing any ideas please br/br/ Tue Jun 25, 2013 5:52 pm (PDT) . 
 Posted by: rob.love1977 rob.love1977br/I have something peculiar 
 that I have never run into. I recently began a new flex project with a 
 ColdFusion 9 backend. In the past I would use the CFC generator packaged with 
 ColdFusion builder to create my base classes/services that I would further 
 customize.br/ Then in flash builder 4.6 I would simply generate the data 
 services based on the corresponding CFC. All should work properly and fine I 
 would think.however any service call generated that passes the custom object 
 never executes and there are no errors ever thrown. If someone could please 
 tell me where I should look to track down this strange issue I would be very 
 grateful.br/ br/ Thank you in advance,br/ Robbr/ br/ br/   Reply 
 to sender . Reply to group . Reply via Web Post . All 
 Messages (2) .Top ^br/br/br/br/ 1b Re: data service 
 not executing any ideas please br/br/ Tue Jun 25, 2013 8:43 pm (PDT) 
 . Posted by: Alex Harui alex_haruibr/I think you can turn on 
 logging and see more details of what is going on in the client.br/ br/ 
 From: rob.love1977 rob.love1977@...mailto:rob.love1977@...br/ 
 Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
 flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.combr/ Date: 
 Tuesday, June 25, 2013 3:52 PMbr/ To: 
 flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
 flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.combr/ 
 Subject: [flexcoders] data service not executing any ideas pleasebr/ br/ 
 I have something peculiar that I have never run into. I recently began a new 
 flex project with a ColdFusion 9 backend. In the past I would use the CFC 
 generator packaged with ColdFusion builder to create my base classes/services 
 that I would further customize.br/ Then in flash builder 4.6 I would simply 
 generate the data services based on the corresponding CFC. All should work 
 properly and fine I would think.however any service call generated that 
 passes the custom object never executes and there are no errors ever thrown. 
 If someone could please tell me where I should look to track down this 
 strange issue I would be very grateful.br/ br/ Thank you in advance,br/ 
 Robbr/ br/ br/   Reply to sender . Reply to group . 
 Reply via Web Post . All Messages (2) .Top ^
 br/br/br/br/br/   Visit Your Group   br/ br/br/br/ 
  View All Topics   br/ br/br/br/  Create New Topic   br/ 
 br/br/br/ 2 New Members  br/ br/br/br/br/br/We are 
 making changes based on your feedback, Thank you ! br/  Submit Feedback   
 br/ br/br/br/The Yahoo! Groups Product Blog br/  Check it out! 
   br/ br/br/br/br/  br/br/br/br/GROUP FOOTER MESSAGE 
 br/--br/ Flexcoders Mailing Listbr/ FAQ: 
 http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtbr/ 
 Alternative FAQ location: 
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847br/
  Search Archives: http://www.mail-archive.com/flexcoders@yahoogroups.com 
 br/br/   br/ CHANGE SETTINGS  br/ br/br/  TERMS OF USE   
 br/ 

[flexcoders] Re: data service not executing any ideas please

2013-06-26 Thread rob.love1977
Nothing happens, I see nothing in the console window. 

A service call thats passes no custom objects and is a simple getall works 
fine, but when I try a create and pass a custom object it never makes the 
call.

I have no idea where to be looking.

Rob

--- In flexcoders@yahoogroups.com, Alex Harui aharui@... wrote:

 I think you can turn on logging and see more details of what is going on in 
 the client.
 
 From: rob.love1977 rob.love1977@...mailto:rob.love1977@...
 Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
 flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
 Date: Tuesday, June 25, 2013 3:52 PM
 To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
 flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
 Subject: [flexcoders] data service not executing any ideas please
 
 
 
 I have something peculiar that I have never run into. I recently began a new 
 flex project with a ColdFusion 9 backend. In the past I would use the CFC 
 generator packaged with ColdFusion builder to create my base classes/services 
 that I would further customize.
 Then in flash builder 4.6 I would simply generate the data services based on 
 the corresponding CFC. All should work properly and fine I would 
 think.however any service call generated that passes the custom object never 
 executes and there are no errors ever thrown. If someone could please tell me 
 where I should look to track down this strange issue I would be very grateful.
 
 Thank you in advance,
 Rob





Re: [flexcoders] Re: data service not executing any ideas please

2013-06-26 Thread Alex Harui
How small a test case can you make?

From: rob.love1977 rob.love1...@yahoo.commailto:rob.love1...@yahoo.com
Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Date: Wednesday, June 26, 2013 5:47 AM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: [flexcoders] Re: data service not executing any ideas please



Nothing happens, I see nothing in the console window.

A service call thats passes no custom objects and is a simple getall works 
fine, but when I try a create and pass a custom object it never makes the 
call.

I have no idea where to be looking.

Rob

--- In flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com, Alex 
Harui aharui@... wrote:

 I think you can turn on logging and see more details of what is going on in 
 the client.

 From: rob.love1977 rob.love1977@...mailto:rob.love1977@...
 Reply-To: 
 flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.commailto:flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com
  
 flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.commailto:flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com
 Date: Tuesday, June 25, 2013 3:52 PM
 To: 
 flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.commailto:flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com
  
 flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.commailto:flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com
 Subject: [flexcoders] data service not executing any ideas please



 I have something peculiar that I have never run into. I recently began a new 
 flex project with a ColdFusion 9 backend. In the past I would use the CFC 
 generator packaged with ColdFusion builder to create my base classes/services 
 that I would further customize.
 Then in flash builder 4.6 I would simply generate the data services based on 
 the corresponding CFC. All should work properly and fine I would 
 think.however any service call generated that passes the custom object never 
 executes and there are no errors ever thrown. If someone could please tell me 
 where I should look to track down this strange issue I would be very grateful.

 Thank you in advance,
 Rob






[flexcoders] Re: Flex Mobile Apple Submission Issue

2013-06-22 Thread GarethA
I'm not positive, but I'm pretty sure all I did was rename the file and drop it 
in.

--- In flexcoders@yahoogroups.com, Jake Churchill reynacho@... wrote:

 Gareth,
 
 Thanks for the tip.  I'll update my environment.  Does the image I drop in
 have to be a certain dimension or does it just look for the file name?
 
 -Jake
 
 - Sent from my Galaxy S4
 On Jun 21, 2013 7:29 AM, GarethA lampei@... wrote:
 
  **
 
 
 
 
  I came across this same issue myself recently. You will have to upgrade to
  at least AIR 3.7 SDK when compiling and drop an image directly in the root
  of your directory structure named Default-568h@... Mine is at the same
  level as my appname.xml file. Everything else should just work. I had
  been having issues with getting FB to look at the new AIR compiler (it
  points to my old SDK directory), so I had to move some stuff around when
  compiling, but that should be it.
 
  --- In flexcoders@yahoogroups.com, Jake Churchill reynacho@ wrote:
  
   Guys,
  
   I have a flex mobile app that has been on the appstore for a while and I
   was just trying to submit a revision to it when I got this automated
   response from apple:
  
   *iPhone 5 Optimization Requirement* - Your binary is not optimized for
   iPhone 5. As of May 1, all new iPhone apps and app updates submitted must
   support the 4-inch display on iPhone 5. All apps must include a launch
   image with the -568h size modifier immediately following the basename
   portion of the launch image's filename. Launch images must be PNG files
  and
   located at the top-level of your bundle, or provided within each .lproj
   folder if you localize your launch images. Learn more about iPhone 5
   support and app launch images by reviewing the iOS Human Interface
   Guidelines
  https://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/MobileHIG/TranslateApp/TranslateApp.html%23//apple_ref/doc/uid/TP40006556-CH10-SW8
  
   and iOS App Programming
   Guide
  https://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/App-RelatedResources/App-RelatedResources.html%23//apple_ref/doc/uid/TP40007072-CH6-SW12
  
   .
  
   The only iconds I have specified are the different icon sizes in the
   -app.xml file. Does anyone know how to fulfill this requirement using
   Flashbuilder?
  
   Thanks!
  
   -Jake
  
 
   
 





  1   2   3   4   5   6   7   8   9   10   >