[flexcoders] Debugging in Flex Builder and using ant build scripts

2010-03-04 Thread wdb
Hello, I am curious if it's possible to easily combine the use of ant build scripts and debugging (breakpoints etc.) in Flex Builder. I have written a nice build script and now I wouldlike to be able to hit F9 (Run > Debug) to start debugging my application with the swf generated in the build scri

Re: [flexcoders] help - code assist stopped working

2010-03-04 Thread claudiu ursica
Did you by any chance upgraded to a newer release than beta 2? C From: Chris Sheffield To: flexcoders@yahoogroups.com Sent: Thu, March 4, 2010 7:55:03 PM Subject: [flexcoders] help - code assist stopped working I apologize. This is probably more of an Adob

RE: [flexcoders] Need effect for ViewStack w/o changing the view

2010-03-04 Thread Christopher McArthur
when the content changes you can call fadeIn.play([view1]); if you want to make it fade out, then fade back in, make a new sequence effect that contains two fade effects. then call it like above. -Original Message- From: flexcoders@yahoogroups.com on behalf of joyh2002 Sent: Thu 3/4/2

[flexcoders] Have you checked out FDT 3.5, now supporting MXML ?

2010-03-04 Thread fonzibruno
It's not over... if you buy FDT 3.5 now you will get FDT4 upgrade for free ! http://www.fdt.powerflasher.com/developer-tools/fdt-3/whats-new/

[flexcoders] Need effect for ViewStack w/o changing the view

2010-03-04 Thread joyh2002
Hi all, I have a viewstack like this: The hideEffect and showEffect is triggered when I switch the views. How do I make the same effect when I change the contect of view1 (without changing the view from view2 to view1)? I'm already on view1, I change the content of view1, and need the

[flexcoders] Simple search for AdvancedDataGrid

2010-03-04 Thread andrelockhart
Hi, This is my first post to the group...looking forward to learning and helping!!! I need to have a very simple single row match search for my datagrid, which was very easy to implement by looping through the datagrid's Array until I found a match, then setting the datagrid's index and scroll

Re: [flexcoders] help - code assist stopped working

2010-03-04 Thread Brian Thompson
Are you using FB as an Eclipse plugin? If so, you should be able to get the error log by going to Window->Show View->Other, then picking Error Log from the list. -Brian On Thu, Mar 4, 2010 at 11:55 AM, Chris Sheffield wrote: > > > I apologize. This is probably more of an Adobe Support issue,

Re: [flexcoders] VideoDisplay - video is playing, but without audio

2010-03-04 Thread Brian Thompson
One of our projects has suffered from a similar issue. We're streaming audio from Flash Media Server, and sometimes the audio will cut out - we still get cue points embedded in the audio, the NetStream object doesn't register any errors, and the rest of the app acts like the audio ends at the righ

Re: [flexcoders] Re: Updating renderer properties

2010-03-04 Thread Aaron Hardy
I know this is an old thread, but for those who come across this in the future, this is a great article that sums up the problem and solutions quite well: http://www.adobe.com/devnet/flex/articles/itemrenderers_pt3_02.html Aaron On Fri, Jan 8, 2010 at 10:47 PM, Aaron Hardy wrote: > Thanks for

[flexcoders] Re: Changing channel endpoint url

2010-03-04 Thread gtb104
Nevermind. It magically started to work. --- In flexcoders@yahoogroups.com, "gtb104" wrote: > > Can you change the the endpoint url to point somewhere besides > ".../messagebroker/amf"? > > I'd like to have two amf destination, one pointing to server X(a local > server), and the other to serv

[flexcoders] Changing channel endpoint url

2010-03-04 Thread gtb104
Can you change the the endpoint url to point somewhere besides ".../messagebroker/amf"? I'd like to have two amf destination, one pointing to server X(a local server), and the other to server Y(a remote server). It seems like I should be able to create two channel-definitions pointing to diffe

[flexcoders] Re: Flex Module System ( Different programmers working on a single Project)

2010-03-04 Thread valdhor
Interfaces are pure ActionScript Classes. --- In flexcoders@yahoogroups.com, Fahim Akhter wrote: > > Isn't that mxml? I have a pure as3 project without MXML > > *Fahim Akhter* |* Software Design Engineer | White Rabbit Inc* | > +92.321.5307672 | akhter.fa...@... | > http://apps.facebook.com/feli

Re: [flexcoders] Re: Flex Module System ( Different programmers working on a single Project)

2010-03-04 Thread Fahim Akhter
Isn't that mxml? I have a pure as3 project without MXML *Fahim Akhter* |* Software Design Engineer | White Rabbit Inc* | +92.321.5307672 | akhter.fa...@gmail.com | http://apps.facebook.com/feline-frenzy/ Signature powered by WiseStamp On Thu, Mar 4, 2010

[flexcoders] help - code assist stopped working

2010-03-04 Thread Chris Sheffield
I apologize. This is probably more of an Adobe Support issue, but since I'm using beta 2 of FB4, I wasn't sure what kind of support is currently available. Anyway, I was working on a project yesterday and all of a sudden my code assist stopped working in .as files. Still seems to work fine in .m

[flexcoders] advice on making secure calls with BLAZEDS

2010-03-04 Thread Matt Muller
Hi, I'm looking for a more secure way to send data than using a POST. So, I've been looking into BLAZEDS which seems to be a good option. The issue I have is the client site is HTTP and not HTTPS/SSL. So, I cant really retrieve a user name & password from the server to then authenticate with. S

[flexcoders] Re: Question about currentTarget and Event:Listener

2010-03-04 Thread jamesfin
It would appear as if you never call createHandlers. Try this version... http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="createHandlers(event)"> --- In flexcoders@yahoogroups.com, "fred44455" wrote: >

RE: [flexcoders] Trouble with ProgressBar and manual updates.

2010-03-04 Thread Christopher McArthur
Unfortunately, same problem with callLater in either pattern. I was able to solve my issue though, and I did so like this: -I created my own simple custom component. -It has one property "percentComplete", when this property is set it updates the property and calls "invalidateDisplayList()". -It

RE: [flexcoders] My APP momentarily freezes I pass through my A.C. and create my objects.

2010-03-04 Thread Christopher McArthur
If you see my recent posts, I just had this exact same problem, check out the post I just made, if you need more details let me know, i can post the code I used. Since flash is singlethreaded, you can NOT have a progress bar update in a loop. If you want to update a progress bar while you do wo

Re: [flexcoders] My APP momentarily freezes I pass through my A.C. and create my objects.

2010-03-04 Thread Fotis Chatzinikos
Is it a very large arraycollection? Flex/flash is single threaded... no animation/screen updates while code is running in a loop for example... break up processing of your data either by using calllater every x iterations or using a timer... On Thu, Mar 4, 2010 at 5:59 PM, MonkeyIsland wrote: >

[flexcoders] My APP momentarily freezes I pass through my A.C. and create my objects.

2010-03-04 Thread MonkeyIsland
Hello everyone, I'm having an issue updating my progress bar, it only displays 100% once completed. I've tried timers, callLaters, and anything else I could have thought of but then realized that my progress bar never updates because my app momentarily freezes as I pass through my ArrayCollec

Re: [flexcoders] Scrolling datagrid mixes up all the values...???

2010-03-04 Thread - -
Thanks Alex! Found working samples here: http://blogs.adobe.com/aharui/item_renderers/ -David From: Alex Harui To: "flexcoders@yahoogroups.com" Sent: Thu, March 4, 2010 12:54:42 AM Subject: Re: [flexcoders] Scrolling datagrid mixes up all the values...???

[flexcoders] Re: Hierarchy in OLAPDataGrid

2010-03-04 Thread rojoe615
Duh...never mind...had that extra addSet stuck in there. Removed that and it's working. Just didn't know how many folks were using that OLAPDataGrid. --- In flexcoders@yahoogroups.com, "rojoe615" wrote: > > (Hopefully this will make sense...) > > I'm using the OLAPDataGrid to display metric

[flexcoders] Question about currentTarget and Event:Listener

2010-03-04 Thread fred44455
How can I have the button responding when it is clicked with the message : "you clicked me " I tried but it but it does not work. import mx.controls.Alert; public function createHandlers(e:Event):void { b1.addEventListener(MouseEvent.CLICK, submitForm); b2.ad

[flexcoders] My Flex app seems to have stopped working in Firefox after installing latest Windows security patches

2010-03-04 Thread Tim Romano
This morning I installed several Windows XP and IE security patches (list below). The Flex app I've been developing, which uses HTTPService to get JSON-formatted results from a webservice, seems to have stopped working in Firefox 3.6 (yet it still works in IE and in Opera). 2010-03-0408:39

[flexcoders] Re: Flex Module System ( Different programmers working on a single Project)

2010-03-04 Thread valdhor
Create an interface that all modules as well as the main application implement. http://livedocs.adobe.com/flex/3/html/help.html?content=04_OO_Programming_10.html http://livedocs.adobe.com/flex/3/html/help.html?content=mxmlcomponents_advanced_5.html --- In flexcoders@yahoogroups.com, Fahim Akht

Re: [flexcoders] Trouble with ProgressBar and manual updates.

2010-03-04 Thread Peeyush Tuli
what happens when you go the other way around... meaning that the add is done before and progress bar update is sent to calllater? On Wed, Mar 3, 2010 at 11:56 PM, Christopher McArthur < cmcart...@riotgames.com> wrote: > > > callLater is a great suggestion, thank you. Unfortunately, was not > he

[flexcoders] VideoDisplay - video is playing, but without audio

2010-03-04 Thread joyh2002
I use VideoDisplay to play videos in my Flex app. The videos are hosted in our local web server. The size of the video is around 10MB to 30MB. I need to play 60 to 80 videos throughout the app. The videos are playing fine, but the audio is missing after playing some videos - not reproducible a

RE: [flexcoders] Flex Module System ( Different programmers working on a single Project)

2010-03-04 Thread Safrizal
Use PureMVC Framework (Multicore edition) with Fabrication. Rizal Indonesia From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: Thursday, March 04, 2010 12:54 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex Module System (

Re: [flexcoders] Progress bar in place over a component?

2010-03-04 Thread Fotis Chatzinikos
Yes depending on your panel's layout you can add the progress bar as the topmost component (if layout is absolute) or add it as an 'overlay' by adding the progress bar on the panel's rawChildren: myPanel.rawChildren.addChild(myProgressBar) ; On Thu, Mar 4, 2010 at 2:45 AM, Raymond Brown wrote:

Re: [flexcoders] Flex Module System ( Different programmers working on a single Project)

2010-03-04 Thread Fahim Akhter
and I do not want to copy things manually, sometimes you forget to copy and someone is sitting ducks with an old copy. *Fahim Akhter* |* Software Design Engineer | White Rabbit Inc* | +92.321.5307672 | akhter.fa...@gmail.com | http://apps.facebook.com/feline-frenzy/ Signature powered by WiseStamp

Re: [flexcoders] Flex Module System ( Different programmers working on a single Project)

2010-03-04 Thread Fahim Akhter
What about communication between different modules? *Fahim Akhter* |* Software Design Engineer | White Rabbit Inc* | +92.321.5307672 | akhter.fa...@gmail.com | http://apps.facebook.com/feline-frenzy/ Signature powered by WiseStamp On Thu, Mar 4, 2010 at 1