RE: [flexcoders] AMFPHP & Security

2007-01-17 Thread Beverly Guillermo
I was also researching AMFPHP and I found in AMFPHP's authentication documentation that they recommend having the user authenticate themselves via textfields from Flex and pass these credentials on to PHP service. Also, sending the information encrypted via the use of SSL/TLS should also help lock

Re: [flexcoders] AMFPHP & Security

2007-01-17 Thread Patrick Mineault
Amfphp is not inherently less secure than FDS. Anybody who wants to can spoof requests to FDS or amfphp, just like they can for HTTP POST. As a side-note, users don't have to bother to decompile your SWF; they can just sniff packets coming in or out of your movie using ServiceCapture or Charles

RE: [flexcoders] Re: Precompiling with active web-tier compiler

2007-01-17 Thread Dimitrios Gianninas
You are getting a warning because of these 2 lines (remove them): Those are there to specify the location of my resource bundles. I'm no God, I learn by trying, reading and hard work. I have my hurdles from time to time, got 2 this morning as a matter of fact. Dimitrios Gianninas RIA Dev

[flexcoders] Re: title window on app first run

2007-01-17 Thread jonalexander370
Hi Tracy, Thank you for your reply. Shall post my code within the next 2 hours and shall be able to show my progress thus far. Thank you. Jon Alexander [EMAIL PROTECTED] --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > That is the standard behavior of a modal T

[flexcoders] Re: Chat + Survey + Live Video Feed app

2007-01-17 Thread jonalexander370
--- In flexcoders@yahoogroups.com, "luisd22209" <[EMAIL PROTECTED]> wrote: > > My client wants an application with a live chat, simultaneous survey > and a live video feed all in one. This is my chance to use Flex! > > Aside from handing over a quite a chunk of change to Adobe, anyone can > sha

Re: [flexcoders] FlexPrintJob problem: application background colors showing in margins

2007-01-17 Thread Jason Y. Kwong
Since there doesn't appear to be any follow-up to this topic, I'll provide an example. I recently started working with printing (using 2.0.1) and noticed this problem of the background colour "bleeding" through into the margin of the printed output. This might be printer/driver specific, though.

[flexcoders] Re: Precompiling with active web-tier compiler

2007-01-17 Thread haravallabhan
Is it not the God who replied me... You are no ordinary guy Sir. Though it might be very simple to you, it was a Mt Everest to me.You just stuck a pair of wings in me to cross it. Thanks that worked. But I oversaw some of the warnings like flex\locale\en_US', is a subdirectory of source path en

RE: [flexcoders] Precompiling with active web-tier compiler

2007-01-17 Thread Stembert Olivier (BIL)
Hi Hara, Specify the location of the services-config.xml file by using the "services" compiler argument. Regards, Olivier From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of haravallabhan Sent: Wednesday, January 17, 2007 2:58 PM To: flex

RE: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-17 Thread Matt Horn
Rick, you might be able to still embed fonts without experiencing such a dramatic performance problem. Try embedding the fonts but disabling FlashType (it's enabled by default): @font-face { src: url("/assets/fonts/ARIAL.TTF"); fontFamily: myArial; flashType: false; } hth, matt horn f

[flexcoders] Module Interface Problems

2007-01-17 Thread kristian_wright2002
I'm having a problem passing variables from one module to another via an interface. I have an application that calls a module when it enters a specific state, which works fine. The module is loaded through and it works as expected. Within this module, I have a button that when pressed, calls a s

[flexcoders] Re: Total used memory

2007-01-17 Thread fliabrussa
it is well, but my application will have to run during approximately 8 Hours without close, for that reason I am worried --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Tuesday 16 January 2007 13:12, fliabrussa wrote: > > if somebody has some idea of as I

RE: [flexcoders] Re: Code behind- do you use it?

2007-01-17 Thread Robert Chyko
The .mxml files get translated into .as files of the same name. So basically you then have 2 index.as files... which obviously is going to give you problems. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Danko Kozar

RE: [flexcoders] Precompiling with active web-tier compiler

2007-01-17 Thread Dimitrios Gianninas
precompiling is the best option, your SWF will load in a split second. What you are missing is to specify the location of the services-config.xml (portion in red). Teh HTML wrapper shouldn't have anything to do with this. If you are using ant, it should look like this:

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-17 Thread Battershall, Jeff
Mark, I re-worked all my delegate classes as per your code sample, and yes, all the 'duplicate' result events have disappeared. Thanks again. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Doberenz Sent: Tue

[flexcoders] Re: [Flexunit] - How to test throwing errors?

2007-01-17 Thread herrodius
Hi Olivier, that should indeed be the behavior, but the test also passes if I remove the throw Error() line in my Account constructor. This is probably because the fail() in the testcase is directly caught by the catch block underneath. I used to do it this way in AS2, but it seems like the try/ca

[flexcoders] job offered: Web Application Developer (Flex/Flash/ColdFusion)

2007-01-17 Thread ephgmoney
If you need more details, feel free to contact me... Web Application Developer #145294 Bellevue WA To apply, visit http://www.t-mobile.com/jobs and search for requisition number 145294 T-Mobile USA is a national provider of wireless voice, messaging, and data services capable of reaching over 2

[flexcoders] Query regarding multiple files upload using the FileReferenceList class

2007-01-17 Thread paromitadey
Hello Everybody, I have browsed multiple files using the FileReferenceList.browse() method but to actually upload the fles I have to iterate through the FileReferenceList.fileList array and individually upload each file using FileReference.upload() method. My question is, does this mean that f

[flexcoders] Precompiling with active web-tier compiler

2007-01-17 Thread haravallabhan
Hi all.. I am trying to precompile the application which uses the FDS 2.0. Precompiling doest give me any errors. But the issue is Iam using RemoteObject in the client to access Java methods. So it need web- tier compiler. So when I wrote a html wrapper with the src="MyApp.swf" I get the erro

[flexcoders] Re: Code behind- do you use it?

2007-01-17 Thread Charles Havranek
Using the ARP framework @ http://osflash.org/ARP Once you get past a simple application a GUI framework is critical for maintainability. Takes a bit more to get going, but you end up reusing a lot of code.

[flexcoders] Weird behavior of mx:Effects on ViewStack

2007-01-17 Thread Danko Kozar
Hi, I'm using mx:Move effects on ViewStack as it's items showEffect and hideEffect. HideEffect moves the previous view off-screen; then the next view slides in. (btw these views are complex full-screen displays (containing TabNavigators, DataGrids and TileLists) First time when changing views

[flexcoders] Re: how to draw over an image

2007-01-17 Thread dodger6135396
--- In flexcoders@yahoogroups.com, "dodger6135396" <[EMAIL PROTECTED]> wrote: > > Using ActionScript3.0 and Flex2.0.1 I want to display an image > /photograph. Then I want to draw shapes on top of this image, but I > dont want to alter the image. For example the image would be located > at x=0, y=

[flexcoders] Re: Code behind- do you use it?

2007-01-17 Thread Danko Kozar
I use code-behind on pages with lot of code, since I don't want a mess: On index.mxml I have the script block containing th epath to the actionscript file (not as class): My question is: Why doesn't Flex Builder allow to name the .mxml and .as page using the same name? Does this happen only w

[flexcoders] urgent

2007-01-17 Thread Flávio Santos
I want to leave the list, please exclude me….today, please

[flexcoders] Window Charting

2007-01-17 Thread nitin rastogi
I need help on "Showing Reports with charts". Suggest me some links available... Thanks\ Nitin - Here’s a new way to find what you're looking for - Yahoo! Answers

[flexcoders] Chat + Survey + Live Video Feed app

2007-01-17 Thread luisd22209
My client wants an application with a live chat, simultaneous survey and a live video feed all in one. This is my chance to use Flex! Aside from handing over a quite a chunk of change to Adobe, anyone can share some pointers on how to get started? I've put together this sort of thing in ASP.N

[flexcoders] Re: Scroll wheel doesn't work on Mac

2007-01-17 Thread Brett
I have noticed this as well. It would be really great if Adobe could get the scroll wheels / Scrolling Trackpad working on OS X especially if we can get both Horizontal and Vertical Scrolling. I've been meaning to submit a bug report / wish on it but haven't done so yet. Maybe if we can get

[flexcoders] Consulting Opportunity

2007-01-17 Thread Dekterev, Irving
We are seeking expressions of interest from Adobe Flex 2 professionals to act in a consulting/mentoring capacity for a team based in Melbourne, Australia. The engagement would involve an agreed number of consulting and mentoring hours per week. Contact would be mainly via phone and email, so appli

[flexcoders] Launching FlexBuilder from multiple User accounts

2007-01-17 Thread wardmruth
Hi: I've got a MacBook Pro I've set up with a couple of User accounts for myself. I installed and launched the standalone version of FlexBuilder on my main account (I installed FB into an Applications directory above the level of the Users directory). Then I logged into the other account and

Re: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-17 Thread Shannon Hicks
I used to have problems with memory errors & such, until I increased Eclipse's memory settings... http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&postId=1053&productId=2 Shan Allen Riddle wrote: I got that all the time, even with 2.0.0. I had to switch to the stand

Re: [flexcoders] Re: Flex Builder no longer compiles

2007-01-17 Thread Webdevotion
I use the stand alone player to debug. I've changed the debug paths to *-debug.swf in my debug settings. You can do this by clicking on the little arrow next to the "bug" button in Flex Builder and then go to "debug". Another method for fixing this can be using > project > clean.

RE: [flexcoders] [Flexunit] - How to test throwing errors?

2007-01-17 Thread Stembert Olivier (BIL)
Hi Christophe, It seems logic the fail() statement is not executed since it follows the new Account() statement which throws the exception. I'm not sure I understand what you mean... Regards, Olivier From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

[flexcoders] Re: Flex Builder no longer compiles

2007-01-17 Thread Paul Whitelock
I occasionally have a similar problem in that I'll make changes to code but when I run or debug the application in Firefox from Flex Builder it's the same version as the one before the changes were made. It turns out that for reasons unknown Firefox caches the SWF and doesn't recognize that it's b

[flexcoders] Re: Total used memory

2007-01-17 Thread fliabrussa
Hello, great article, but I simply drag the controls within the TABNAVIGATOR. Possibly it must be bug of the GC or Flex SDK, because it happens only with this type of controls (TABNAVIGATOR and VIEWSTACK). With other type controls works fine. Some idea? --- In flexcoders@yahoogroups.com

[flexcoders] Custom icons on Tree - scroll corruption...

2007-01-17 Thread jamiebadman
Hi, I've implemented custom icons on a tree component - which looks great until the vertical scrollbar appears and I use it... scrolling up and down seems to confuse the tre into showing the icons in the wrong places - sometimes, two icons against one tree entry. Anyone else experienced this a

Re: [flexcoders] Error: 1000: No bitrate match

2007-01-17 Thread Paul Hastings
On 1/15/07, Impudent1 <[EMAIL PROTECTED]> wrote: > http://blogs.ittoolbox.com/c/engineering/archives/adding-flv-mime-type-in-iis-4198 > might help. actually we shutdown the IIS dev server last night & this morning it started working. i stopped & restarted the web server several times w/out any luc

[flexcoders] [Flexunit] - How to test throwing errors?

2007-01-17 Thread herrodius
Hi all, sorry for this slightly OT message. I was wondering what the best way is to test for a method throwing an error. I have an Account class that takes a number:int and a name:String as constructor params. If an Account is instantiated with a null name, I want to throw an Error (IllegalArgume

Re: [flexcoders] CreationComplete help....

2007-01-17 Thread Tom Chiverton
On Tuesday 16 January 2007 17:39, jensen.axel wrote: > then i pick a different item from a , and reload the > component, to edit the new data i've selected from my tree... and the > setup() function never runs, because the component has already been > created, so i'm wondering how i can get this fu

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-17 Thread Tom Chiverton
On Tuesday 16 January 2007 16:15, Battershall, Jeff wrote: > I'm not sure a singleton delegate would do the trick - and then you > might have threading issues - right? The flash player is single threaded isn't it ? -- Tom Chiverton Helping to simultaneously entrench guinine technologies **

Re: [flexcoders] Re: Flex/Flash on The iPhone ?

2007-01-17 Thread Tom Chiverton
On Tuesday 16 January 2007 15:38, Shannon Hicks wrote: > It seems that Apple has confirmed that Flash & Java will be supported on > the iPhone. Digging into the meat of the article, it's not that clear cut. -- Tom Chiverton Helping to assertively grow intuitive models *

[flexcoders] Something I tried :)

2007-01-17 Thread wwwraghu
Hi All, Something I tried… 1) http://raghunathraoflexing.blogspot.com/2007/01/card-layout-draft-1.html 2) http://raghunathraoflexing.blogspot.com/2007/01/subtitle-video.html My FLEX Blog - http://raghunathraoflexing.blogspot.com/ Thanks Raghu

[flexcoders] Re: Newbie alert - Trying to populate combobox w. httpservice

2007-01-17 Thread oneproofdk
So now I'm trying to make several httpservice requests, populating comboboxes and other items, the thing is that they all depend on what data is selected in the other comboboxes. Example: We have 3 comboboxes A B C First to get data is A from a httpservice, when that is populated, combobox B shou

[flexcoders] Arp framework

2007-01-17 Thread Stembert Olivier \(BIL\)
Hi, I found the Arp framework (http://osflash.org/arp) on the net. Does anyone use it? It seems very similar to Cairngorm. Regards, Olivier - An electronic message is not binding on its sender. Any message referring to a binding engagement must be confirmed in writing and

[flexcoders] Re: Custom axis drawing (charts)?

2007-01-17 Thread vigen2000
thank u Ely. i'll have a look at the example and see if i can use that. vigen --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> wrote: > > > > Hi Vigen. You can write your own custom axisRenderer if you like. I have > an example that does that up on my blog at quietlysch

[flexcoders] Re: Newbie alert - Trying to populate combobox w. httpservice

2007-01-17 Thread oneproofdk
Hi Ben Thanks for your answer, got it working :-) Looking into making it request data using POST now (whoa - advanced stuff) Best regards, Mark --- In flexcoders@yahoogroups.com, Ben Marchbanks <[EMAIL PROTECTED]> wrote: > > you have to define the labelField when binding to > dataProvider that

[flexcoders] Getting an image's "original" size - needed to resize

2007-01-17 Thread oneproofdk
I'm trying to resize images to fit in a canvas. Works great. Now I also want the user to be able to zoom/resize the images using a slider, allowing them to resize to (at least) 100%, but I can't figure out how to set the image(s) to their original 100% size. Here's my functions, which get called b

[flexcoders] Re: Setting the backgroundcolor of a canvas with a function - Newbie alert

2007-01-17 Thread oneproofdk
Hi Cato! Thanks for your reply, but I still can't make it work. The value {myRepeater.currentItem.left.page.swift} is a string (or is it?) it contains a number, either 0 or 1. I've tryed to do it like you suggest, getColor(swift:uint):uint, but with no changes. public function getColor(swift:

<    1   2