Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

flexcoders · RIA Development with Adobe Flex

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 12335
  • Category: Development
  • Founded: Mar 17, 2004
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 162093 - 162122 of 165719   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#162093 From: "Prashant" <prashantkoshta@...>
Date: Sun May 1, 2011 6:29 am
Subject: Re: AdvancedDataGrid sortable column headers
prashantkoshta
Send Email Send Email
 
Hi Scott,
  Please share code if you have received any answer related to your post. I also
want same scenario at my project.

Thanks in advanced.


--- In flexcoders@yahoogroups.com, Scott Melby <smelby@...> wrote:
>
> Can anybody tell me how to make the sortable column headers on an
> AdvancedDataGrid look like the headers on a regular DataGrid?  All I
> want is the header text and the sort direction arrow.  I'd rather not
> have the separator and sort number.
>
> Thanks
> Scott
>
> --
> Scott Melby
> Founder, Fast Lane Software LLC
> http://www.fastlanesw.com
>

#162094 From: Peeyush Tuli <peeyush81@...>
Date: Sun May 1, 2011 3:07 pm
Subject: Re: Re: A question for Flex call webservice?
peeyushtuli
Send Email Send Email
 
life is easy with SOAP services by importing them. Checkt these links -

http://livedocs.adobe.com/flex/3/html/help.html?content=data_4.html



On Sun, May 1, 2011 at 10:08 AM, markflex2007 <markflex2007@...> wrote:
 

yes. May I pass object to SOAP from flex?



--- In flexcoders@yahoogroups.com, Peeyush Tuli <peeyush81@...> wrote:
>
> is it a SOAP based service?
>
> On Thu, Apr 28, 2011 at 10:15 AM, markflex2007 <markflex2007@...>wrote:

>
> >
> >
> > Hi
> >
> > May I pass object(like vo) to web service method from Flex?
> >
> > Thanks for help
> >
> > Mark
> >
> >
> >
>



#162095 From: Gábor Csomák <csomakk@...>
Date: Mon May 2, 2011 6:20 am
Subject: Re: Re: Connect Flex app to an AIR app?
csomakgabor
Send Email Send Email
 
you can also try socket connection.. it works for sure,but you have to manage lots of sockets on the server, but its a fast way..

On Sat, Apr 30, 2011 at 5:49 PM, mark.embrey <mark.c.embrey@...> wrote:
 

Wally,

there was a recent online event at http://flashtomobile.eventbrite.com/
where Christophe Coenraets showed off some of these type capabilities -
- there should be an online video posted at
http://www.meetup.com/creativesuitelovers/ when it is ready - he was
using the beta of CS5.5 (FB 4.5, I think) to have have a "customer
service" relationship between the "customer" on his iPad (or whatever
device) and the "agent" on his iPhone (or whatever device) where both
screens are synchronized so they can discuss investments or whatever.

good luck!

Mark Embrey



#162096 From: Clark Stevenson <a.scotsman@...>
Date: Mon May 2, 2011 10:44 am
Subject: What file types to i ignore from SVN?
clarky
Send Email Send Email
 

3 times so far (over a 6 month perioid), i have opened up FB4 and got the error that my project is corrupted.

I have ignored:

.actionScriptProperties
.project

Is there any other filetypes i should ignore to stop this corruption from happening?

Thanks.

Clark.

#162097 From: Steve Roger <steveroger_flex@...>
Date: Mon May 2, 2011 11:06 am
Subject: Charts & Graphs data visualization
steveroger_flex
Send Email Send Email
 
I am working on data representation module of different charts & graphs.
which are the different open source of Flex charts, by using it I can represent my data in a very precious way and at advanced level?
Is it possible 3D chart (http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1047990) in flex 3 framework?

-Steve Roger



#162098 From: Lars Östling <lars.ostling@...>
Date: Mon May 2, 2011 2:19 pm
Subject: Re: Re: AdvancedDataGrid sortable column headers
lars.ostling
Send Email Send Email
 
Hi,

setting sortExpertMode to true on the AdvancedDataGrid should take care of the separator. To get rid of the sort number you could use a custom sortItemRenderer that hides the text field, try the following:

package com.flexceptional.components

{

    import mx.controls.advancedDataGridClasses.AdvancedDataGridSortItemRenderer;

    import mx.core.UITextField; 


    public class SimplerSortItemRenderer extends AdvancedDataGridSortItemRenderer 

    {


        public function SimplerSortItemRenderer() 

        {

        }

        

        override protected function childrenCreated():void 

        {

            super.childrenCreated(); 

            // Get reference to sort number text field 

            var sortOrderTextField:UITextField = this.getChildAt(0) as UITextField; 

            if (sortOrderTextField) 

            { 

                // Hide sort number text field 

                sortOrderTextField.includeInLayout = false;

                sortOrderTextField.visible = false

            }

        } 

    }

}


Good luck!

Thanks,
Lars

On Sun, May 1, 2011 at 8:29 AM, Prashant <prashantkoshta@...> wrote:
 

Hi Scott,
Please share code if you have received any answer related to your post. I also want same scenario at my project.

Thanks in advanced.

--- In flexcoders@yahoogroups.com, Scott Melby <smelby@...> wrote:
>
> Can anybody tell me how to make the sortable column headers on an
> AdvancedDataGrid look like the headers on a regular DataGrid? All I
> want is the header text and the sort direction arrow. I'd rather not
> have the separator and sort number.
>
> Thanks
> Scott
>
> --
> Scott Melby
> Founder, Fast Lane Software LLC
> http://www.fastlanesw.com
>



#162099 From: Gordon Smith <gosmith@...>
Date: Mon May 2, 2011 5:27 pm
Subject: RE: htmlText property issue. String not treated as html.
gsmithsf
Send Email Send Email
 

I’m pretty sure that htmlText doesn’t support <span> markup (although the Text Layout Framework does). See the ASDoc for the htmlText property of flash.text.TextField to see what markup it does support.

 

Gordon Smith

Adobe Flex SDK Team

 

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of anas naeem
Sent: Friday, April 29, 2011 4:17 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] htmlText property issue. String not treated as html.

 

 

Hi there all i am a bit stucked in a following issue sorry for my english.

  var htmlStr:String = '<a href=' + htmlString + '>' + '<span>' + spanString +
                '</span>' + '</a>';
                htmlHandler(htmlStr);

private function htmlHandler(finalHtml:String):void {
                Alert.show("" + finalHtml);
                myTA.text = finalHtml;
             //   myTA.htmlText = finalHtml;
            }

in the above mentioned code everything else is working fine but when i try to uncomment the line the function i get an empty textarea means to say that the string is not treated as htmlText when i try to use it this way where am i going wrong any help is appreciated

Thanks in advance.

Best Regards
Anas


#162100 From: anas naeem <maverick_0601@...>
Date: Mon May 2, 2011 9:54 am
Subject: Re: htmlText property issue. String not treated as html.
maverick_0601
Send Email Send Email
 
Thx i was just making a silly mistake ofcourse the span i s not suppoted i replaced it with the font tag  and every thing great  
 



 

From: Alex Harui <aharui@...>
To: "flexcoders@yahoogroups.com" <flexcoders@yahoogroups.com>
Sent: Fri, April 29, 2011 7:39:26 PM
Subject: Re: [flexcoders] htmlText property issue. String not treated as html.

 

Check the doc.  <span> may not be supported.  Flash does not have full HTML support.


On 4/29/11 4:16 AM, "anas naeem" <maverick_0601@...> wrote:


 
 
   

Hi there all i am a bit stucked in a following issue sorry for my english.

  var htmlStr:String = '<a href=' + htmlString + '>' + '<span>' + spanString +
                '</span>' + '</a>';
                htmlHandler(htmlStr);

private function htmlHandler(finalHtml:String):void {
                Alert.show("" + finalHtml);
                myTA.text = finalHtml;
             //   myTA.htmlText = finalHtml;
            }

in the above mentioned code everything else is working fine but when i try to uncomment the line the function i get an empty textarea means to say that the string is not treated as htmlText when i try to use it this way where am i going wrong any help is appreciated

Thanks in advance.

Best Regards
Anas

   



--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui


#162101 From: "Ivan" <ivansebastiansurya@...>
Date: Mon May 2, 2011 11:42 pm
Subject: Spark Data Grid
ivansebastia...
Send Email Send Email
 
Hi everyone,

I recently wrote an application that has several tabs (several containers that
are visible at different view states) and each tab has a spark DataGrid in it
(with the default renderers and skins).
The application seems to work fine, however, the headers of the datagrid are
only visible the first time it is viewed (subsequent times, they are only
visible after the mouse pointer hovers over it).  Say for example, I go to the
third tab and then return to the first tab, the headers for the data grid in the
first tab are not visible until the mouse pointer hovers over it.  Anyone has
any idea why this is and how to fix this issue?

Any help is greatly appreciated.  Many thanks for reading my post.

Ivan.

#162102 From: kris range <krisrange@...>
Date: Tue May 3, 2011 9:30 am
Subject: Re: What file types to i ignore from SVN?
krisrange
Send Email Send Email
 
can't say i've ever had any problems with SVN and project corruption but you could also ignore the .settings folder...thats the only other file I know of that eclipse generates for a project.

On Mon, May 2, 2011 at 12:44 PM, Clark Stevenson <a.scotsman@...> wrote:



3 times so far (over a 6 month perioid), i have opened up FB4 and got the error that my project is corrupted.

I have ignored:

.actionScriptProperties
.project

Is there any other filetypes i should ignore to stop this corruption from happening?

Thanks.

Clark.




#162103 From: kris range <krisrange@...>
Date: Tue May 3, 2011 9:34 am
Subject: Re: Re: Flex Builder/ Eclipse parse/ build projects are sooooo slow
krisrange
Send Email Send Email
 
you could also increase the memory allocated to eclipse if you haven't already, it might spare you a few seconds. Also, I noticed that running in 32-bit mode decreased my ANT compile times by almost half. Not sure if that affects project compile time though...


On Thu, Apr 28, 2011 at 3:14 PM, Nick Middleweek <nick@...> wrote:


I'm glad I'm not the only one then :)



On 27 April 2011 16:55, method_air <loudjazz@...> wrote:
 

Yea, it is brutally slow once the projects pile up...and unstable...necessitating cleaning and restarting Flash builder on a regular basis.



--- In flexcoders@yahoogroups.com, Nick Middleweek <nick@...> wrote:
>
> Hi,
>
> I'm working on an existing Cairngorm 2.1 project that been around for a few
> years and it's currently got 3826 files across 2105 folders. Is that big?
>
> I am finding, pretty much everything I do is taking ages to compile, reparse
> the project in Flex Builder.
>
> It's taking about 30 seconds to do a Build Project when making code changes
> so I'm having to develop with Build Automatically switched off, sometimes
> FB3 will freeze for a few minutes and some times it takes so long I need to
> bring up the task manager and kill the process and restart my machine.
>
> Does everyone generally have Flex/ Flash Builder stability/ speed issues and
> how do you speed up your development? I'm finding it's about a 2-5 minute
> round trip to compile-run and view the results when making small changes to
> UI components, such as tweaking borders or corerRadius.
>
> Does anyone know of a quicker way to work?... I'm thinking is it worth
> developing each UI component in a tiny sub-development project that only has
> the CSS, data loading and other supporting Classes...
>
> I can imagine that Eclipse running in the JVM is going to slow down with big
> projects so perhaps there are ways to re-architect the project to speed it
> all up.
>
>
> Any feedback would be great.
>
>
> Cheers,
> Nick
>







#162104 From: Gábor Csomák <csomakk@...>
Date: Tue May 3, 2011 10:59 am
Subject: Re: What file types to i ignore from SVN?
csomakgabor
Send Email Send Email
 
kris is right.
if you use same os, and same flash builder, it shouldn't be a problem

On Tue, May 3, 2011 at 11:30 AM, kris range <krisrange@...> wrote:
 

can't say i've ever had any problems with SVN and project corruption but you could also ignore the .settings folder...thats the only other file I know of that eclipse generates for a project.

On Mon, May 2, 2011 at 12:44 PM, Clark Stevenson <a.scotsman@...> wrote:



3 times so far (over a 6 month perioid), i have opened up FB4 and got the error that my project is corrupted.

I have ignored:

.actionScriptProperties
.project

Is there any other filetypes i should ignore to stop this corruption from happening?

Thanks.

Clark.





#162105 From: "mitchgrrt" <mitch_gart@...>
Date: Tue May 3, 2011 1:52 pm
Subject: Re: Flash builder 4 compiler really slow
mitchgrrt
Send Email Send Email
 
Sorry it took so long to answer your message.  The stupid Yahoo Groups don't
have a way to be notified on responses to a discussion thread.

3 projects, each one builds 1 .swf.  No modules.  Changing 1 line and rebuilding
takes about 3-5 minutes.  We're only using Macs so we don't have a comparison
against Windows.

One funny thing is that if I put 1 error into 1 source file I see the error
message 3 times in the GUI.  So it seems like somehow it's building everything 3
times instead of 1 time.  If I look at the GUI the error message appears once,
then a minute or so later it appears a second time, and s on.

Another funny thing is that if I completely start over and rebuild my workspace
and projects from scratch, for a little while it's not so slow.  Then after a
few days it slows down.

Are you sure this isn't just Adobe's revenge against Apple?  :-)


--- In flexcoders@yahoogroups.com, Gordon Smith <gosmith@...> wrote:
>
> Is the problem with a full recompilation (after cleaning the workspace) or
with a typical incremental compilation?
> What kind of compilation time are you seeing?
> How many SWFs (including modules) and SWCs are you building?
> Do you have times for compiling the same workspace on Mac and Windows?
> Would you be willing to provide your entire workspace to us if we find time to
investigate it?
>
> Gordon Smith
> Adobe Flex SDK Team
>
>
> From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf
Of fonzibruno
> Sent: Friday, April 22, 2011 8:46 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Flash builder 4 compiler really slow
>
>
>
> Have you guys tried the HellFire compiler?
>
> http://bytecode-workshop.com
>
> Bruno
>
> --- In flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>, Brendan
Meutzner <bmeutzner@<mailto:bmeutzner@>> wrote:
> >
> > Yes, on the same page. I am compiling against 3.5 still, but using FB4.
> > The application projects are ridiculously slow to compile (especially if
> > many destinations are defined in service-config.xml. The libraries seem ok
> > to compile.
> >
> > I have a quad-core processor, with 8 gigs of ram... I thought this was going
> > to get faster for me, but it's actually slowed down from my previous Mac
> > where I ran FB3 with only a core 2 duo processor, and half the RAM.
> >
> >
> > Brendan
> >
> >
> >
> > On Thu, Apr 21, 2011 at 12:27 PM, mitchgrrt mitch_gart@ wrote:
> >
> > >
> > >
> > > It's terrible. A lot slower than Flex Builder 3.
> &g! t; >
> > > I'm using a Mac as are my co-workers. It's ridiculously slow for all of
us.
> > > I'm beginning to think maybe this is Adobe's revenge on Apple for not
> > > allowing Flash on the iPhone. It seems like if it were slow like this on a
> > > PC there would be a huge outcry.
> > >
> > > Is anyone else having a lot of trouble with FB4 on the Mac?
> > >
> > >
> > >
> >
>

#162106 From: Rick Genter <rick.genter@...>
Date: Tue May 3, 2011 2:36 pm
Subject: Re: Re: Flash builder 4 compiler really slow
q0dr
Send Email Send Email
 
How many files are in your project? I have a Flex project that builds a single .swf that has about 150 AS files and one MXML file in it (maybe 70K LOC) and it builds so fast that I don't even think about it (sub-second). If I do a Project/Clean to build it from scratch it takes 2-3 seconds. This is on a year-and-a-half-old MacBook Pro with 4 GB RAM.

On Tue, May 3, 2011 at 9:52 AM, mitchgrrt <mitch_gart@...> wrote:
Sorry it took so long to answer your message.  The stupid Yahoo Groups don't have a way to be notified on responses to a discussion thread.

3 projects, each one builds 1 .swf.  No modules.  Changing 1 line and rebuilding takes about 3-5 minutes.  We're only using Macs so we don't have a comparison against Windows.

One funny thing is that if I put 1 error into 1 source file I see the error message 3 times in the GUI.  So it seems like somehow it's building everything 3 times instead of 1 time.  If I look at the GUI the error message appears once, then a minute or so later it appears a second time, and s on.

Another funny thing is that if I completely start over and rebuild my workspace and projects from scratch, for a little while it's not so slow.  Then after a few days it slows down.

Are you sure this isn't just Adobe's revenge against Apple?  :-)


--- In flexcoders@yahoogroups.com, Gordon Smith <gosmith@...> wrote:
>
> Is the problem with a full recompilation (after cleaning the workspace) or with a typical incremental compilation?
> What kind of compilation time are you seeing?
> How many SWFs (including modules) and SWCs are you building?
> Do you have times for compiling the same workspace on Mac and Windows?
> Would you be willing to provide your entire workspace to us if we find time to investigate it?
>
> Gordon Smith
> Adobe Flex SDK Team
>
>
> From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of fonzibruno
> Sent: Friday, April 22, 2011 8:46 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Flash builder 4 compiler really slow
>
>
>
> Have you guys tried the HellFire compiler?
>
> http://bytecode-workshop.com
>
> Bruno
>
> --- In flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>, Brendan Meutzner <bmeutzner@<mailto:bmeutzner@>> wrote:
> >
> > Yes, on the same page. I am compiling against 3.5 still, but using FB4.
> > The application projects are ridiculously slow to compile (especially if
> > many destinations are defined in service-config.xml. The libraries seem ok
> > to compile.
> >
> > I have a quad-core processor, with 8 gigs of ram... I thought this was going
> > to get faster for me, but it's actually slowed down from my previous Mac
> > where I ran FB3 with only a core 2 duo processor, and half the RAM.
> >
> >
> > Brendan
> >
> >
> >
> > On Thu, Apr 21, 2011 at 12:27 PM, mitchgrrt mitch_gart@ wrote:
> >
> > >
> > >
> > > It's terrible. A lot slower than Flex Builder 3.
> &g! t; >
> > > I'm using a Mac as are my co-workers. It's ridiculously slow for all of us.
> > > I'm beginning to think maybe this is Adobe's revenge on Apple for not
> > > allowing Flash on the iPhone. It seems like if it were slow like this on a
> > > PC there would be a huge outcry.
> > >
> > > Is anyone else having a lot of trouble with FB4 on the Mac?
> > >
> > >
> > >
> >
>




------------------------------------

--
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.comYahoo! Groups Links

<*> To visit your group on the web, go to:
<*> 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-digest@yahoogroups.com
   flexcoders-fullfeatured@yahoogroups.com

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

<*> Your use of Yahoo! Groups is subject to:
   http://docs.yahoo.com/info/terms/




--
Rick Genter
rick.genter@...


#162107 From: "mitchgrrt" <mitch_gart@...>
Date: Tue May 3, 2011 3:13 pm
Subject: Re: Flash builder 4 compiler really slow
mitchgrrt
Send Email Send Email
 
We have about 400 .mxml files and 600 .as.  MacBook Pro recently upgraded from
4GB to 8GB.

We also have another separate side project that's a lot smaller and building
that one is no problem.

--- In flexcoders@yahoogroups.com, Rick Genter <rick.genter@...> wrote:
>
> How many files are in your project? I have a Flex project that builds a
> single .swf that has about 150 AS files and one MXML file in it (maybe 70K
> LOC) and it builds so fast that I don't even think about it (sub-second). If
> I do a Project/Clean to build it from scratch it takes 2-3 seconds. This is
> on a year-and-a-half-old MacBook Pro with 4 GB RAM.
>
> On Tue, May 3, 2011 at 9:52 AM, mitchgrrt <mitch_gart@...> wrote:
>
> > Sorry it took so long to answer your message.  The stupid Yahoo Groups
> > don't have a way to be notified on responses to a discussion thread.
> >
> > 3 projects, each one builds 1 .swf.  No modules.  Changing 1 line and
> > rebuilding takes about 3-5 minutes.  We're only using Macs so we don't have
> > a comparison against Windows.
> >
> > One funny thing is that if I put 1 error into 1 source file I see the error
> > message 3 times in the GUI.  So it seems like somehow it's building
> > everything 3 times instead of 1 time.  If I look at the GUI the error
> > message appears once, then a minute or so later it appears a second time,
> > and s on.
> >
> > Another funny thing is that if I completely start over and rebuild my
> > workspace and projects from scratch, for a little while it's not so slow.
> >  Then after a few days it slows down.
> >
> > Are you sure this isn't just Adobe's revenge against Apple?  :-)
> >
> >
> > --- In flexcoders@yahoogroups.com, Gordon Smith <gosmith@> wrote:
> > >
> > > Is the problem with a full recompilation (after cleaning the workspace)
> > or with a typical incremental compilation?
> > > What kind of compilation time are you seeing?
> > > How many SWFs (including modules) and SWCs are you building?
> > > Do you have times for compiling the same workspace on Mac and Windows?
> > > Would you be willing to provide your entire workspace to us if we find
> > time to investigate it?
> > >
> > > Gordon Smith
> > > Adobe Flex SDK Team
> > >
> > >
> > > From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
> > Behalf Of fonzibruno
> > > Sent: Friday, April 22, 2011 8:46 AM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Re: Flash builder 4 compiler really slow
> > >
> > >
> > >
> > > Have you guys tried the HellFire compiler?
> > >
> > > http://bytecode-workshop.com
> > >
> > > Bruno
> > >
> > > --- In flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>,
> > Brendan Meutzner <bmeutzner@<mailto:bmeutzner@>> wrote:
> > > >
> > > > Yes, on the same page. I am compiling against 3.5 still, but using FB4.
> > > > The application projects are ridiculously slow to compile (especially
> > if
> > > > many destinations are defined in service-config.xml. The libraries seem
> > ok
> > > > to compile.
> > > >
> > > > I have a quad-core processor, with 8 gigs of ram... I thought this was
> > going
> > > > to get faster for me, but it's actually slowed down from my previous
> > Mac
> > > > where I ran FB3 with only a core 2 duo processor, and half the RAM.
> > > >
> > > >
> > > > Brendan
> > > >
> > > >
> > > >
> > > > On Thu, Apr 21, 2011 at 12:27 PM, mitchgrrt mitch_gart@ wrote:
> > > >
> > > > >
> > > > >
> > > > > It's terrible. A lot slower than Flex Builder 3.
> > > &g! t; >
> > > > > I'm using a Mac as are my co-workers. It's ridiculously slow for all
> > of us.
> > > > > I'm beginning to think maybe this is Adobe's revenge on Apple for not
> > > > > allowing Flash on the iPhone. It seems like if it were slow like this
> > on a
> > > > > PC there would be a huge outcry.
> > > > >
> > > > > Is anyone else having a lot of trouble with FB4 on the Mac?
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
> >
> >
> >
> > ------------------------------------
> >
> > --
> > 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-1e62079f\
6847
> > Search Archives:
> > http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
> > Links
> >
> >
> >
> >
>
>
> --
> Rick Genter
> rick.genter@...
>

#162108 From: Margo Powell <mmpowell@...>
Date: Tue May 3, 2011 3:24 pm
Subject: Re: Re: Flash builder 4 compiler really slow
powellmargo
Send Email Send Email
 
Are you using subversion in your project?

I am on windows and also have a build that takes a long time but was pointed to this bug

http://bugs.adobe.com/jira/browse/FB-27440

Perhaps this is the issue you are running into on your builds.

On 5/3/2011 11:13 AM, mitchgrrt wrote:
 

We have about 400 .mxml files and 600 .as. MacBook Pro recently upgraded from 4GB to 8GB.

We also have another separate side project that's a lot smaller and building that one is no problem.

--- In flexcoders@yahoogroups.com, Rick Genter <rick.genter@...> wrote:
>
> How many files are in your project? I have a Flex project that builds a
> single .swf that has about 150 AS files and one MXML file in it (maybe 70K
> LOC) and it builds so fast that I don't even think about it (sub-second). If
> I do a Project/Clean to build it from scratch it takes 2-3 seconds. This is
> on a year-and-a-half-old MacBook Pro with 4 GB RAM.
>
> On Tue, May 3, 2011 at 9:52 AM, mitchgrrt <mitch_gart@...> wrote:
>
> > Sorry it took so long to answer your message. The stupid Yahoo Groups
> > don't have a way to be notified on responses to a discussion thread.
> >
> > 3 projects, each one builds 1 .swf. No modules. Changing 1 line and
> > rebuilding takes about 3-5 minutes. We're only using Macs so we don't have
> > a comparison against Windows.
> >
> > One funny thing is that if I put 1 error into 1 source file I see the error
> > message 3 times in the GUI. So it seems like somehow it's building
> > everything 3 times instead of 1 time. If I look at the GUI the error
> > message appears once, then a minute or so later it appears a second time,
> > and s on.
> >
> > Another funny thing is that if I completely start over and rebuild my
> > workspace and projects from scratch, for a little while it's not so slow.
> > Then after a few days it slows down.
> >
> > Are you sure this isn't just Adobe's revenge against Apple? :-)
> >
> >
> > --- In flexcoders@yahoogroups.com, Gordon Smith <gosmith@> wrote:
> > >
> > > Is the problem with a full recompilation (after cleaning the workspace)
> > or with a typical incremental compilation?
> > > What kind of compilation time are you seeing?
> > > How many SWFs (including modules) and SWCs are you building?
> > > Do you have times for compiling the same workspace on Mac and Windows?
> > > Would you be willing to provide your entire workspace to us if we find
> > time to investigate it?
> > >
> > > Gordon Smith
> > > Adobe Flex SDK Team
> > >
> > >
> > > From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
> > Behalf Of fonzibruno
> > > Sent: Friday, April 22, 2011 8:46 AM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Re: Flash builder 4 compiler really slow
> > >
> > >
> > >
> > > Have you guys tried the HellFire compiler?
> > >
> > > http://bytecode-workshop.com
> > >
> > > Bruno
> > >
> > > --- In flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>,
> > Brendan Meutzner <bmeutzner@<mailto:bmeutzner@>> wrote:
> > > >
> > > > Yes, on the same page. I am compiling against 3.5 still, but using FB4.
> > > > The application projects are ridiculously slow to compile (especially
> > if
> > > > many destinations are defined in service-config.xml. The libraries seem
> > ok
> > > > to compile.
> > > >
> > > > I have a quad-core processor, with 8 gigs of ram... I thought this was
> > going
> > > > to get faster for me, but it's actually slowed down from my previous
> > Mac
> > > > where I ran FB3 with only a core 2 duo processor, and half the RAM.
> > > >
> > > >
> > > > Brendan
> > > >
> > > >
> > > >
> > > > On Thu, Apr 21, 2011 at 12:27 PM, mitchgrrt mitch_gart@ wrote:
> > > >
> > > > >
> > > > >
> > > > > It's terrible. A lot slower than Flex Builder 3.
> > > &g! t; >
> > > > > I'm using a Mac as are my co-workers. It's ridiculously slow for all
> > of us.
> > > > > I'm beginning to think maybe this is Adobe's revenge on Apple for not
> > > > > allowing Flash on the iPhone. It seems like if it were slow like this
> > on a
> > > > > PC there would be a huge outcry.
> > > > >
> > > > > Is anyone else having a lot of trouble with FB4 on the Mac?
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
> >
> >
> >
> > ------------------------------------
> >
> > --
> > 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.comYahoo! Groups
> > Links
> >
> >
> >
> >
>
>
> --
> Rick Genter
> rick.genter@...
>


-- Margo Powell
Applications Analyst
MS Computer Science
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_powell@...
Attachment: vcard [not shown]

#162109 From: Margo Powell <mmpowell@...>
Date: Tue May 3, 2011 3:30 pm
Subject: Re: Re: Flash builder 4 compiler really slow
powellmargo
Send Email Send Email
 
oops - sorry about that - looks like windows only bug


On 5/3/2011 11:24 AM, Margo Powell wrote:
 

Are you using subversion in your project?

I am on windows and also have a build that takes a long time but was pointed to this bug

http://bugs.adobe.com/jira/browse/FB-27440

Perhaps this is the issue you are running into on your builds.

On 5/3/2011 11:13 AM, mitchgrrt wrote:

 

We have about 400 .mxml files and 600 .as. MacBook Pro recently upgraded from 4GB to 8GB.

We also have another separate side project that's a lot smaller and building that one is no problem.

--- In flexcoders@yahoogroups.com, Rick Genter <rick.genter@...> wrote:
>
> How many files are in your project? I have a Flex project that builds a
> single .swf that has about 150 AS files and one MXML file in it (maybe 70K
> LOC) and it builds so fast that I don't even think about it (sub-second). If
> I do a Project/Clean to build it from scratch it takes 2-3 seconds. This is
> on a year-and-a-half-old MacBook Pro with 4 GB RAM.
>
> On Tue, May 3, 2011 at 9:52 AM, mitchgrrt <mitch_gart@...> wrote:
>
> > Sorry it took so long to answer your message. The stupid Yahoo Groups
> > don't have a way to be notified on responses to a discussion thread.
> >
> > 3 projects, each one builds 1 .swf. No modules. Changing 1 line and
> > rebuilding takes about 3-5 minutes. We're only using Macs so we don't have
> > a comparison against Windows.
> >
> > One funny thing is that if I put 1 error into 1 source file I see the error
> > message 3 times in the GUI. So it seems like somehow it's building
> > everything 3 times instead of 1 time. If I look at the GUI the error
> > message appears once, then a minute or so later it appears a second time,
> > and s on.
> >
> > Another funny thing is that if I completely start over and rebuild my
> > workspace and projects from scratch, for a little while it's not so slow.
> > Then after a few days it slows down.
> >
> > Are you sure this isn't just Adobe's revenge against Apple? :-)
> >
> >
> > --- In flexcoders@yahoogroups.com, Gordon Smith <gosmith@> wrote:
> > >
> > > Is the problem with a full recompilation (after cleaning the workspace)
> > or with a typical incremental compilation?
> > > What kind of compilation time are you seeing?
> > > How many SWFs (including modules) and SWCs are you building?
> > > Do you have times for compiling the same workspace on Mac and Windows?
> > > Would you be willing to provide your entire workspace to us if we find
> > time to investigate it?
> > >
> > > Gordon Smith
> > > Adobe Flex SDK Team
> > >
> > >
> > > From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
> > Behalf Of fonzibruno
> > > Sent: Friday, April 22, 2011 8:46 AM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Re: Flash builder 4 compiler really slow
> > >
> > >
> > >
> > > Have you guys tried the HellFire compiler?
> > >
> > > http://bytecode-workshop.com
> > >
> > > Bruno
> > >
> > > --- In flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>,
> > Brendan Meutzner <bmeutzner@<mailto:bmeutzner@>> wrote:
> > > >
> > > > Yes, on the same page. I am compiling against 3.5 still, but using FB4.
> > > > The application projects are ridiculously slow to compile (especially
> > if
> > > > many destinations are defined in service-config.xml. The libraries seem
> > ok
> > > > to compile.
> > > >
> > > > I have a quad-core processor, with 8 gigs of ram... I thought this was
> > going
> > > > to get faster for me, but it's actually slowed down from my previous
> > Mac
> > > > where I ran FB3 with only a core 2 duo processor, and half the RAM.
> > > >
> > > >
> > > > Brendan
> > > >
> > > >
> > > >
> > > > On Thu, Apr 21, 2011 at 12:27 PM, mitchgrrt mitch_gart@ wrote:
> > > >
> > > > >
> > > > >
> > > > > It's terrible. A lot slower than Flex Builder 3.
> > > &g! t; >
> > > > > I'm using a Mac as are my co-workers. It's ridiculously slow for all
> > of us.
> > > > > I'm beginning to think maybe this is Adobe's revenge on Apple for not
> > > > > allowing Flash on the iPhone. It seems like if it were slow like this
> > on a
> > > > > PC there would be a huge outcry.
> > > > >
> > > > > Is anyone else having a lot of trouble with FB4 on the Mac?
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
> >
> >
> >
> > ------------------------------------
> >
> > --
> > 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.comYahoo! Groups
> > Links
> >
> >
> >
> >
>
>
> --
> Rick Genter
> rick.genter@...
>


-- Margo Powell
Applications Analyst
MS Computer Science
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_powell@...

-- Margo Powell
Applications Analyst
MS Computer Science
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_powell@...
Attachment: vcard [not shown]

#162110 From: "mitchgrrt" <mitch_gart@...>
Date: Tue May 3, 2011 3:42 pm
Subject: Re: Flash builder 4 compiler really slow
mitchgrrt
Send Email Send Email
 
Yes we are using subversion.  We tried this workaround and it didn't really help:
article

Also tried increasing compiler memory size.

--- In flexcoders@yahoogroups.com, Margo Powell <mmpowell@...> wrote:
>
> oops - sorry about that - looks like windows only bug
>
>
> On 5/3/2011 11:24 AM, Margo Powell wrote:
> >
> > Are you using subversion in your project?
> >
> > I am on windows and also have a build that takes a long time but was
> > pointed to this bug
> >
> > http://bugs.adobe.com/jira/browse/FB-27440
> >
> > Perhaps this is the issue you are running into on your builds.
> >
> > On 5/3/2011 11:13 AM, mitchgrrt wrote:
> >
> >> We have about 400 .mxml files and 600 .as. MacBook Pro recently
> >> upgraded from 4GB to 8GB.
> >>
> >> We also have another separate side project that's a lot smaller and
> >> building that one is no problem.
> >>
> >> --- In flexcoders@yahoogroups.com
> >> <mailto:flexcoders%40yahoogroups.com>, Rick Genter rick.genter@
> >> wrote:
> >> >
> >> > How many files are in your project? I have a Flex project that builds a
> >> > single .swf that has about 150 AS files and one MXML file in it
> >> (maybe 70K
> >> > LOC) and it builds so fast that I don't even think about it
> >> (sub-second). If
> >> > I do a Project/Clean to build it from scratch it takes 2-3 seconds.
> >> This is
> >> > on a year-and-a-half-old MacBook Pro with 4 GB RAM.
> >> >
> >> > On Tue, May 3, 2011 at 9:52 AM, mitchgrrt mitch_gart@ wrote:
> >> >
> >> > > Sorry it took so long to answer your message. The stupid Yahoo Groups
> >> > > don't have a way to be notified on responses to a discussion thread.
> >> > >
> >> > > 3 projects, each one builds 1 .swf. No modules. Changing 1 line and
> >> > > rebuilding takes about 3-5 minutes. We're only using Macs so we
> >> don't have
> >> > > a comparison against Windows.
> >> > >
> >> > > One funny thing is that if I put 1 error into 1 source file I see
> >> the error
> >> > > message 3 times in the GUI. So it seems like somehow it's building
> >> > > everything 3 times instead of 1 time. If I look at the GUI the error
> >> > > message appears once, then a minute or so later it appears a
> >> second time,
> >> > > and s on.
> >> > >
> >> > > Another funny thing is that if I completely start over and rebuild my
> >> > > workspace and projects from scratch, for a little while it's not
> >> so slow.
> >> > > Then after a few days it slows down.
> >> > >
> >> > > Are you sure this isn't just Adobe's revenge against Apple? :-)
> >> > >
> >> > >
> >> > > --- In flexcoders@yahoogroups.com
> >> <mailto:flexcoders%40yahoogroups.com>, Gordon Smith <gosmith@> wrote:
> >> > > >
> >> > > > Is the problem with a full recompilation (after cleaning the
> >> workspace)
> >> > > or with a typical incremental compilation?
> >> > > > What kind of compilation time are you seeing?
> >> > > > How many SWFs (including modules) and SWCs are you building?
> >> > > > Do you have times for compiling the same workspace on Mac and
> >> Windows?
> >> > > > Would you be willing to provide your entire workspace to us if
> >> we find
> >> > > time to investigate it?
> >> > > >
> >> > > > Gordon Smith
> >> > > > Adobe Flex SDK Team
> >> > > >
> >> > > >
> >> > > > From: flexcoders@yahoogroups.com
> >> <mailto:flexcoders%40yahoogroups.com>
> >> [mailto:flexcoders@yahoogroups.com
> >> <mailto:flexcoders%40yahoogroups.com>] On
> >> > > Behalf Of fonzibruno
> >> > > > Sent: Friday, April 22, 2011 8:46 AM
> >> > > > To: flexcoders@yahoogroups.com
> >> <mailto:flexcoders%40yahoogroups.com>
> >> > > > Subject: [flexcoders] Re: Flash builder 4 compiler really slow
> >> > > >
> >> > > >
> >> > > >
> >> > > > Have you guys tried the HellFire compiler?
> >> > > >
> >> > > > http://bytecode-workshop.com
> >> > > >
> >> > > > Bruno
> >> > > >
> >> > > > --- In flexcoders@yahoogroups.com
> >> <mailto:flexcoders%40yahoogroups.com><mailto:flexcoders@yahoogroups.com
> >> <mailto:flexcoders%40yahoogroups.com>>,
> >> > > Brendan Meutzner <bmeutzner@<mailto:bmeutzner@>> wrote:
> >> > > > >
> >> > > > > Yes, on the same page. I am compiling against 3.5 still, but
> >> using FB4.
> >> > > > > The application projects are ridiculously slow to compile
> >> (especially
> >> > > if
> >> > > > > many destinations are defined in service-config.xml. The
> >> libraries seem
> >> > > ok
> >> > > > > to compile.
> >> > > > >
> >> > > > > I have a quad-core processor, with 8 gigs of ram... I thought
> >> this was
> >> > > going
> >> > > > > to get faster for me, but it's actually slowed down from my
> >> previous
> >> > > Mac
> >> > > > > where I ran FB3 with only a core 2 duo processor, and half
> >> the RAM.
> >> > > > >
> >> > > > >
> >> > > > > Brendan
> >> > > > >
> >> > > > >
> >> > > > >
> >> > > > > On Thu, Apr 21, 2011 at 12:27 PM, mitchgrrt mitch_gart@ wrote:
> >> > > > >
> >> > > > > >
> >> > > > > >
> >> > > > > > It's terrible. A lot slower than Flex Builder 3.
> >> > > > &g! t; >
> >> > > > > > I'm using a Mac as are my co-workers. It's ridiculously
> >> slow for all
> >> > > of us.
> >> > > > > > I'm beginning to think maybe this is Adobe's revenge on
> >> Apple for not
> >> > > > > > allowing Flash on the iPhone. It seems like if it were slow
> >> like this
> >> > > on a
> >> > > > > > PC there would be a huge outcry.
> >> > > > > >
> >> > > > > > Is anyone else having a lot of trouble with FB4 on the Mac?
> >> > > > > >
> >> > > > > >
> >> > > > > >
> >> > > > >
> >> > > >
> >> > >
> >> > >
> >> > >
> >> > >
> >> > > ------------------------------------
> >> > >
> >> > > --
> >> > > 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.comYahoo! Groups
> >> > > Links
> >> > >
> >> > >
> >> > >
> >> > >
> >> >
> >> >
> >> > --
> >> > Rick Genter
> >> > rick.genter@
> >> >
> >>
> >
> > --
> > Margo Powell
> > Applications Analyst
> > MS Computer Science
> > 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_powell@...
> >
>
> --
> Margo Powell
> Applications Analyst
> MS Computer Science
> 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_powell@...
>

#162111 From: Gordon Smith <gosmith@...>
Date: Tue May 3, 2011 3:50 pm
Subject: RE: Re: Flash builder 4 compiler really slow
gsmithsf
Send Email Send Email
 

Would you be willing to provide your entire workspace to us if we find time to investigate it?

 

Gordon Smith

Adobe Flex SDK Team

 

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of mitchgrrt
Sent: Tuesday, May 03, 2011 8:14 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flash builder 4 compiler really slow

 

 

We have about 400 .mxml files and 600 .as. MacBook Pro recently upgraded from 4GB to 8GB.

We also have another separate side project that's a lot smaller and building that one is no problem.

--- In flexcoders@yahoogroups.com, Rick Genter <rick.genter@...> wrote:
>
> How many files are in your project? I have a Flex project that builds a
> single .swf that has about 150 AS files and one MXML file in it (maybe 70K
> LOC) and it builds so fast that I don't even think about it (sub-second). If
> I do a Project/Clean to build it from scratch it takes 2-3 seconds. This is
> on a year-and-a-half-old MacBook Pro with 4 GB RAM.
>
> On Tue, May 3, 2011 at 9:52 AM, mitchgrrt <mitch_gart@...> wrote:
>
> > Sorry it took so long to answer your message. The stupid Yahoo Groups
> > don't have a way to be notified on responses to a discussion thread.
> >
> > 3 projects, each one builds 1 .swf. No modules. Changing 1 line and
> > rebuilding takes about 3-5 minutes. We're only using Macs so we don't have
> > a comparison against Windows.
> >
> > One funny thing is that if I put 1 error into 1 source file I see the error
> > message 3 times in the GUI. So it seems like somehow it's building
> > everything 3 times instead of 1 time. If I look at the GUI the error
> > message appears once, then a minute or so later it appears a second time,
> > and s on.
> >
> > Another funny thing is that if I completely start over and rebuild my
> > workspace and projects from scratch, for a little while it's not so slow.
> > Then after a few days it slows down.
> >
> > Are you sure this isn't just Adobe's revenge against Apple? :-)
> >
> >
> > --- In flexcoders@yahoogroups.com, Gordon Smith <gosmith@> wrote:
> > >
> > > Is the problem with a full recompilation (after cleaning the workspace)
> > or with a typical incremental compilation?
> > > What kind of compilation time are you seeing?
> > > How many SWFs (including modules) and SWCs are you building?
> > > Do you have times for compiling the same workspace on Mac and Windows?
> > > Would you be willing to provide your entire workspace to us if we find
> > time to investigate it?
> > >
> > > Gordon Smith
> > > Adobe Flex SDK Team
> > >
> > >
> > > From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
> > Behalf Of fonzibruno
> > > Sent: Friday, April 22, 2011 8:46 AM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Re: Flash builder 4 compiler really slow
> > >
> > >
> > >
> > > Have you guys tried the HellFire compiler?
> > >
> > > http://bytecode-workshop.com
> > >
> > > Bruno
> > >
> > > --- In flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>,
> > Brendan Meutzner <bmeutzner@<mailto:bmeutzner@>> wrote:
> > > >
> > > > Yes, on the same page. I am compiling against 3.5 still, but using FB4.
> > > > The application projects are ridiculously slow to compile (especially
> > if
> > > > many destinations are defined in service-config.xml. The libraries seem
> > ok
> > > > to compile.
> > > >
> > > > I have a quad-core processor, with 8 gigs of ram... I thought this was
> > going
> > > > to get faster for me, but it's actually slowed down from my previous
> > Mac
> > > > where I ran FB3 with only a core 2 duo processor, and half the RAM.
> > > >
> > > >
> > > > Brendan
> > > >
> > > >
> > > >
> > > > On Thu, Apr 21, 2011 at 12:27 PM, mitchgrrt mitch_gart@ wrote:
> > > >
> > > > >
> > > > >
> > > > > It's terrible. A lot slower than Flex Builder 3.
> > > &g! t; >
> > > > > I'm using a Mac as are my co-workers. It's ridiculously slow for all
> > of us.
> > > > > I'm beginning to think maybe this is Adobe's revenge on Apple for not
> > > > > allowing Flash on the iPhone. It seems like if it were slow like this
> > on a
> > > > > PC there would be a huge outcry.
> > > > >
> > > > > Is anyone else having a lot of trouble with FB4 on the Mac?
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
> >
> >
> >
> > ------------------------------------
> >
> > --
> > 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.comYahoo! Groups
> > Links
> >
> >
> >
> >
>
>
> --
> Rick Genter
> rick.genter@...
>


#162112 From: "Bill Cousert" <wrcousert@...>
Date: Tue May 3, 2011 5:51 am
Subject: Android: Roundtrip Flash Builder/Flash Catalyst
wrcousert
Send Email Send Email
 
Is there any way to round trip Android projects with Flash Builder 4.5 and Flash
Catalist CS5.5?

I've been trying to do this with FB 4.0 and FC CS5, but I don't see any way to
do so. Has this been fixed with the new release?

#162113 From: "deepa_pathuri" <deepa_pathuri@...>
Date: Tue May 3, 2011 7:15 pm
Subject: Urgent Help
deepa_pathuri
Send Email Send Email
 
Is it possible to connect Flex web app to an AIR app on the server?

#162114 From: "mitchgrrt" <mitch_gart@...>
Date: Tue May 3, 2011 8:07 pm
Subject: Re: Flash builder 4 compiler really slow
mitchgrrt
Send Email Send Email
 
It's my company's whole source code so I don't think I can do that.


--- In flexcoders@yahoogroups.com, Gordon Smith <gosmith@...> wrote:
>
> Would you be willing to provide your entire workspace to us if we find time to
investigate it?
>
> Gordon Smith
> Adobe Flex SDK Team

#162115 From: <vajralavenkat@...>
Date: Tue May 3, 2011 11:25 am
Subject: Arrest
vajralavenkat
Send Email Send Email
 

Hi ,

I just sent a fax to PM, Manmohan Singh and Maharashtra CM, Prithviraj Chavan asking them to respect public opinion on the Jaitapur issue.

Please read the mail below from Former Chief of Naval Staff of the Indian Navy, Admiral L. Ramdas, and take action. http://greenpeace.in/take-action/stop-dangerous-nuclear-power-in-jaitapur/fax-manmohan-singh.php

Regards,



Dear friends,

I am taking the unusual step of sending this direct request because I believe that the announcement by the PMO on the 25th anniversary of Chernobyl, to continue with the proposed French-built nuclear power park at Jaitapur is a serious mistake with long term implications for our people.[1]

Along with several others I participated in the “Tarapur to Jaitapur” Yatra (march) in Maharashtra, to protest against the proposed nuclear plant in Jaitapur.[2] We did not reach Jaitapur because many of us were detained/arrested for participating in this peaceful protest.[3]

It is well known that the Jaitapur nuclear plant is on an earthquake-prone zone [4] and the French EPR reactors have not yet been tested anywhere in the world.[5] Surprisingly the government has rejected the demands to cancel the project, which will result in the loss of land and livelihoods for many. Further, the government has shown disregard for the views of the many scientists, academics, military and other citizens from the rest of the country calling for a review of its earlier decisions on nuclear power plants.

Apart from announcing the creation of an independent regulatory board to ensure safety standards, the government has taken no action on the widespread demand for a complete fresh review of nuclear energy policy in the country. We need to tell Prime Minister Manmohan Singh that he cannot ignore serious concerns raised by the people of this country. You should send a fax to the PM asking him to stop the Jaitapur nuclear plant.

http://greenpeace.in/take-action/stop-dangerous-nuclear-power-in-jaitapur/fax-manmohan-singh.php

Add your signature to the message and we will fax it to the PM for you. 73,000 petition signatures opposing this plant have already been delivered to the PM.[6] Now a large number of faxes asking him to stop the plant will make it difficult for him ignore the demand.

Safe and clean renewable energy options and energy efficiency can help meet our energy demands, all of which are available and at a much lower cost than nuclear[7]. The government needs to invest in these instead of dangerous nuclear energy. Tell the PM to stop this dangerous plant now!

http://greenpeace.in/take-action/stop-dangerous-nuclear-power-in-jaitapur/fax-manmohan-singh.php

Thank you for taking action!


Admiral L. Ramdas,
Former Chief of Naval Staff,
Indian Navy.


Sources:

1. Jaitapur plant to go ahead with greater compensation, Times of India, April 27, 2011
http://timesofindia.indiatimes.com/india/Jaitapur-plant-to-go-ahead-with-greater-compensation/articleshow/8095503.cms

2. Tarapur-to-Jaitapur march against n-plant planned, DNA, April 11, 2011
http://www.dnaindia.com/mumbai/report_tarapur-to-jaitapur-march-against-n-plant-planned_1530544

3. Activists of anti-nuclear plant yatra detained, The Hindu, April 24, 2011
http://www.thehindu.com/news/national/article1761935.ece

4. 20 years, 92 quakes: Ground trembles beneath Jaitapur's feet, Times of India, March 16, 2011
http://timesofindia.indiatimes.com/india/20-years-92-quakes-Ground-trembles-beneath-Jaitapurs-feet/articleshow/7714776.cms

5. Why should Jaitapur be made a guinea pig for untested reactors, DNA, March 17, 2011
http://www.dnaindia.com/mumbai/comment_why-should-jaitapur-be-made-a-guinea-pig-for-untested-reactor_1520843-all

6. Anti-nuclear protesters march in Indian capital, news.yahoo.com, March 25, 2011
http://news.yahoo.com/s/ap/20110325/ap_on_re_as/as_india_nuclear_protest_2

7. Energy Revolution, Greenpeace, March 23, 2009
http://www.greenpeace.org/india/Global/india/report/2009/3/energy-revolution.pdf

Greenpeace provides an alternate energy vision for India, Greenpeace, March 24, 2009
http://www.greenpeace.org/india/en/news/greenpeace-provides-an-alterna/vajralavenkat@...

You are receiving this email because someone you know sent it to you from the Greenpeace site. Greenpeace retains no information about individuals contacted through its site, and will not send you further messages without your consent -- although your friends could, of course, send you another message.


#162116 From: Debasree Das <debasree.flex@...>
Date: Wed May 4, 2011 5:29 am
Subject: Drawing Polygons On Map
debasree.flex
Send Email Send Email
 
Hi All,


 I am working on a Map Application where I need to show any area on the map using polygons. Can you suggest me how to draw polygons on map

Thanks in Advance..

#162117 From: Wally Kolcz <wkolcz@...>
Date: Wed May 4, 2011 5:55 am
Subject: Re: Urgent Help
wallykolcz
Send Email Send Email
 
Looks familiar

On Tuesday, May 3, 2011, deepa_pathuri <deepa_pathuri@...> wrote:
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>       Is it possible to connect Flex web app to an AIR app on the server?
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

#162118 From: "mitchgrrt" <mitch_gart@...>
Date: Wed May 4, 2011 12:04 pm
Subject: Re: Flash builder 4 compiler really slow
mitchgrrt
Send Email Send Email
 
Are you sure this isn't Adobe's revenge on Apple?  It's working pretty well, I'm
thinking Windows would work better than a Mac for developing Flex code.


> --- In flexcoders@yahoogroups.com, Gordon Smith <gosmith@> wrote:
> >
> > Would you be willing to provide your entire workspace to us if we find time
to investigate it?
> >
> > Gordon Smith
> > Adobe Flex SDK Team
>

#162119 From: "Mike" <mslinn@...>
Date: Wed May 4, 2011 12:21 pm
Subject: Re: Arrest
mike_slinn
Send Email Send Email
 
Regardless of any merit the issues you discuss may have, this forum is not the
venue for discussing this topic.

Mike

#162120 From: John Fletcher <fletchgqc@...>
Date: Wed May 4, 2011 2:22 pm
Subject: Re: Re: Flash builder 4 compiler really slow
fletchgqc
Send Email Send Email
 
If Adobe wanted revenge on Apple I reckon they would have to start by removing the Macs from all their screencasts. Currently every screencast I see seems to use a Mac so the current tactic must rather be "Love your enemies, bless them that curse you, do good to them that hate you"
 
John
2011/5/4 mitchgrrt <mitch_gart@...>
 

Are you sure this isn't Adobe's revenge on Apple? It's working pretty well, I'm thinking Windows would work better than a Mac for developing Flex code.



> --- In flexcoders@yahoogroups.com, Gordon Smith <gosmith@> wrote:
> >
> > Would you be willing to provide your entire workspace to us if we find time to investigate it?
> >
> > Gordon Smith
> > Adobe Flex SDK Team
>



#162121 From: DannyT <danmoov2@...>
Date: Wed May 4, 2011 4:05 pm
Subject: Security Issues
dannytdan
Send Email Send Email
 
This is one of those issues which crops up often enough to be annoying but not often enough for me to be able to effectively remember the proper solution :S

I have a parent application which is loading child swfs via swfloader.

The contents of these swfs is not controlled by me in any way and I do not want them to have any control over the parent.

However, for performance reasons I do need to be able to get a bitmapdata of the loaded child swf but I'm getting the following error:

Security sandbox violation: BitmapData.draw: http://somedomain/parent.swf cannot access http://otherdomain/child.swf. This may be worked around by calling Security.allowDomain.

The parent app is setting Security.allowDomain to both somedomain and otherdomain so this hint appears to be instructing code for the child which I don't control. I also have a crossdomain.xml file setup to allow both domains at present.

Any suggestions gratefully received!

Dan

#162122 From: Alex Harui <aharui@...>
Date: Wed May 4, 2011 4:44 pm
Subject: Re: Security Issues
alex_harui
Send Email Send Email
 
SWFLoader effectively puts two locked doors between the parent and child SWF with the lock on a door facing each SWF.  AllowDomain opens a door.   Have you ever stayed in one of those hotels with doors between rooms?  You surely wouldn’t want your neighbor to be able to open the door to your room, right?  And take your photos from your room?  That’s sort of what you are trying to do, and the security model won’t allow it.


On 5/4/11 9:05 AM, "DannyT" <danmoov2@...> wrote:


 
 
   

This is one of those issues which crops up often enough to be annoying but not often enough for me to be able to effectively remember the proper solution :S

I have a parent application which is loading child swfs via swfloader.

The contents of these swfs is not controlled by me in any way and I do not want them to have any control over the parent.

However, for performance reasons I do need to be able to get a bitmapdata of the loaded child swf but I'm getting the following error:

Security sandbox violation: BitmapData.draw: http://somedomain/parent.swf cannot access http://otherdomain/child.swf. This may be worked around by calling Security.allowDomain.

The parent app is setting Security.allowDomain to both somedomain and otherdomain so this hint appears to be instructing code for the child which I don't control. I also have a crossdomain.xml file setup to allow both domains at present.

Any suggestions gratefully received!

Dan
 
   



--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui

Messages 162093 - 162122 of 165719   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help