[flexcoders] JSwoof - JSON Encoder/Decocer For FLEX.

2009-03-28 Thread W
Hi all i have been working on a new JSON library for FLEX. you can download it and find all documentation for it on the following website. http://www.waynemike.co.uk/jswoof

[flexcoders] flex2 bugtracking

2006-10-31 Thread Robert W
J'm looking in google for flex bug list but not found any. Is any official or not bug list for flex2? I found some issues and i am in the balance: bugs or my incomplete knowledge. -- Robert Was -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] flex2 bugtracking

2006-10-31 Thread Robert W
From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Robert W Sent: Tuesday, October 31, 2006 2:09 PM To: [EMAIL PROTECTED]ups.com Subject: [flexcoders] flex2 bugtracking   J'm looking in google for flex bug list but not found any. Is any offic

Re: [flexcoders] Accepted css properties

2006-10-31 Thread Robert W
Thanks, i found everything in ref. doc Robert Was Igor Costa wrote: Robert, did you check out the LiveDocs for it? Regards. On 10/26/06, Robert W <[EMAIL PROTECTED]pl> wrote: I not found list of accepted css properties for TextField in as3/flex2 in ref

Re: [flexcoders] Minimum size of a Flex 2.0 application

2006-11-01 Thread Robert W
Swf content can be small as possible, you swf content not must be mx:Application but for example package {     import flash.display.Sprite;         public class MyClass extends Sprite     {         ...     } } and you not embed flex framework in swf Robert Was Flex Learner wrote:

[flexcoders] two-way bindind and reordering items

2006-11-03 Thread Robert W
I try create general rule for creating editors for xml trees. I realize DnD on List in my example code. I found that my XMLListCollection not dispatch events if i reorder items. My example code works if i manual trigger dispatching. If I uncomment line //dispatchEvent(new Event("propertyChange"

Re: [flexcoders] how to learn file upload result

2006-11-06 Thread Robert W
Sessions not work in different than IE? I used session in not small app, works in firefox, trying opera. But if not works session works scheme: send file with unique  variable, store any result in file, database etc. keyed by unique, on upload complete make next http call with unique and your

Re: [flexcoders] flexbuilder 2.0.1 css editor support

2007-01-08 Thread Robert W
I found that fb conflict with WTP css editor (WTP is eclipse subproject). But i can't use wtp css editor, not flex. Maybe eclipse log show you answer. rw Paolo Bernardini wrote: > I noticed that under flexbuilder (either stand-alone or plug-in > version) preference/Flex/Editors, in version 2.0 t

Re: [flexcoders] Re: Svn & Flex

2007-01-10 Thread Robert W
If you necessary want copy files from source dir you can make this via ant script with switched off "Copy non-embedded..." option rw Jim Robson wrote: > > Lieven: > > In Flex Builder, go to Project Properties -> Flex Compiler and > deselect "Copy non-embedded files to output directory" > > Also

[flexcoders] Actionscript 3.0

2008-02-06 Thread Matt W
I am rather a newb with actionscript and flex, however I have just falled in love with it so it will take me sometime, but I am just curious as to whether actionscript 3.0 runs on the current flash plugins and not some beta plugin or anything like that. Any help is appreciated thank you.

Re: [flexcoders] FlexBuilder bug: failing to report location of errors, warnings and hints

2007-05-15 Thread Robert W
My recipe for that type of errors is use of ant script that calls mxmlc (with -verbose flag). Usually i want comment some lines to find uncatchable error. rw Matthew OMeara wrote: > > My FlexBuilder IDE has been broken for about 3 weeks now, and I have > chosen to ignore it as all obvious fixes f

[flexcoders] Accepted css properties

2006-10-26 Thread Robert W
I not found list of accepted css properties for TextField in as3/flex2 in reference documentation. Is that specification? Robert -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroup

Re: [flexcoders] Bind values to slider "values" property

2006-10-28 Thread Robert W
Maybe value="{getVal()}" where getVal = function getVal():Array Robert Was Wally Randall wrote: How to I bind values to the VSlider "values" property? This assignment works: values="[6,10]" This assignment does not: values="[{beginValue},{endValue}]" It generates the 1067

Re: [flexcoders] Re: parallel coordinates component with Flex3

2008-07-23 Thread Krist W.
rote: > > Hi Brian, > > > > I am working on a custom parallel coordinate component in Flex 3, which I > > have attached the pictures within this email. By the way, how big is your > > dataset that you want to visualize? > > > > Regards, > > > > Krist W. > > > > > > > Regards, Krist

Re: [flexcoders] AMFPHP Security?

2010-08-11 Thread hamann . w
Clark Stevenson wrote: Hi all. I am new to AMFPHP. Lets say you have a class and a function: SomeClass.saveHighScore(304958); For me, the way i see it, is that anyone using Charles can call this method? Whats to stop anyone from calling it directly? SomeClass.saveHighScore(20394948548438484).

[flexcoders] focus manager questions

2010-09-04 Thread hamann . w
Hi, is there a simple way to a) get rid of the yellow rectangle (the object listens to focusin and focusout event in order to display its focussed state) b) get a handle on the (application) focus manager (in order to use its setFocus() method instead of setting stage.focus) Many thanks Wolfg

[flexcoders] local clipboard

2010-09-04 Thread hamann . w
Hi, I would like to follow the suggestions and implement a local clipboard by capturing keystrokes (ctl-c, ctl-v, ctl-a for "select all"). Unfortunately, FP10 (on linux) returns a keycode of 0x for all 3 of these. The same is true when running inside a browser. Is there a way to get th

Re: [flexcoders] focus manager questions

2010-09-05 Thread hamann . w
Hi Alex, thanks for responding. I am probably just looking in the wrong direction, but a test application as simple as package { import flash.display.MovieClip; public class test extends MovieClip { public function test() { trace(this.focusManager); } } } d

[flexcoders] link problem

2012-09-02 Thread hamann . w
Hi, I am trying to build an AS only application with embedded assets. The source comes with its own config, so I essentially use mxmlc -output=bin/xyz.swf demos/src/xyz.as -load-config+=config.xml -include-libraries=abc.swc \ -include-libraries=def.swc -static-link-runtime-shared-libraries

Re: [flexcoders] pdf in flash/flex alternative to flexpaper?

2013-02-15 Thread hamann . w
Hi, many years ago I successfully converted specific PDFs (they were all created by the same generator and used a fixed set of fonts and drawing primitives) The pipeline consisted of ghostscript to translate the pdf into uncompressed, a perl script to convert the graphic instructions into ming s

Re: [flexcoders] Function from string?

2013-11-06 Thread hamann . w
>> I'm writing a game. Well, actually I guess it's more of a game engine. I >> want the game logic to be in a script. The script will take the form of >> a series of rooms, each of which can contain: >> >>. doors to other rooms >>. characters the player can interact with >>. things

RE: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-30 Thread Jack W. Caldwell
IMHO . . . .   It is not a matter of a server being able to handle more than 100 simultaneous connections.   As many on this forum have said, it depends on the application.   It is more likely a product pricing decision by Adobe.   However, if you as a developer and through testing determi

RE: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-30 Thread Jack W. Caldwell
Matt:   Regarding "How many CPUs does your application interact with . . ."   For example . . .   Are you saying a server where the Flex app resides is 1 CPU and the server that has MySQL is a second CPU?  Which means I need 2 CPU license?   Thanks,   Jack From: flexcoders@yahoogroups.com

RE: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-30 Thread Jack W. Caldwell
Ian:   Our questions are based on what Matt said, not speculation.   The bottom line, the pricing model has not been adequately communicated.   I am not blaming Matt.  He has had a lot to do lately and it is probably not his area of responsibility, but Adobe should have already had this in

RE: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-30 Thread Jack W. Caldwell
I may add that maybe a diagram from Adobe may help us in understanding the pricing model.   I guess I am up to .035 now.   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ian SkinnerSent: Friday, June 30, 2006 5:56 PMTo: flexcoders@yahoogroups.comSubject: RE:

RE: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-30 Thread Jack W. Caldwell
Eric:   Thanks,   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eric D AndersonSent: Friday, June 30, 2006 6:14 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] What is the difference between versions of Flex Data Services Hi, To clarify: FD

RE: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-30 Thread Jack W. Caldwell
[mailto:[EMAIL PROTECTED] On Behalf Of Jack W. CaldwellSent: Friday, June 30, 2006 4:16 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] What is the difference between versions of Flex Data Services I may add that maybe a diagram from Adobe may help us in understanding the pricing

RE: [flexcoders] Release at 4pm today?

2006-07-01 Thread Jack W. Caldwell
Shan:   If you look at the date, it was sent on Tuesday.   More delays from Yahoo Groups posting messages, I guess.   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shannon HicksSent: Saturday, July 01, 2006 11:14 AMTo: flexcoders@yahoogroups.comSubject: RE

RE: [flexcoders] What is the difference between versions of Flex Data Services

2006-07-02 Thread Jack W. Caldwell
Matt:   Is Dual-Core considered 1 or 2 CPUs?   Thanks,   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt ChotinSent: Thursday, June 29, 2006 1:41 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] What is the difference between versions of Flex Da

RE: [flexcoders] Please Adobe. Unanswered questions, and building the community

2006-07-03 Thread Jack W. Caldwell
Judah:   I only found one Flex book(Nov. 2006) and the three AS3 book(Aug. 2006, Sept. 2006, & Oct. 2006)   What are the other Flex 2 book's and which one is coming out next week?   Thanks,   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of judahSent: Thursday

RE: [flexcoders] Flash player support for printer resolutions > 300DPI?

2006-07-03 Thread Jack W. Caldwell
Is this Flash in a native mode or a Flex app running in Flash Player 9?   If you are telling me that a Flex 2 app running in Flash Player 9 can not print to a typically configured laser printer, then we have problems.   What printers out there . . . print at 300 DPI?   No user is going to

RE: [flexcoders] Change Text Color in FlexBuilder 2 Editors

2006-07-12 Thread Jack W. Caldwell
Darron:   Thanks,   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darron J. SchallSent: Wednesday, July 12, 2006 6:37 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Change Text Color in FlexBuilder 2 Editors You have to tweak an XML file to cha

RE: [flexcoders] MouseEvent.DOUBLE_CLICK am I missing something

2006-11-02 Thread Thomas W. Gonzalez
I believe certain display objects have a property called something like “doubleClickEnabled” that you need to set to receive/fire those events.   - Tom     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Evans Sent: Thursday, Novem

RE: [flexcoders] Disabling mouse/keyboard interaction while BusyCursor is set

2006-11-02 Thread Thomas W. Gonzalez
You might try popping up a model status panel or something, this would disable the other elements AND give a better visual indication that the user should not be interacting with the App. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of lokesh2

RE: [flexcoders] local SWF files cannot use the LoaderContext.securityDomain property

2006-11-03 Thread Thomas W. Gonzalez
Yes, I understand that we want both apps coming from the same domain in production (or at least both from remote network locations)   But there is a major use case here that can’t be fulfilled:   How do you DEBUG?  Is there a way to setup Flex Builder to debug via remote files?  W

RE: [flexcoders] Re: local SWF files cannot use the LoaderContext.securityDomain property

2006-11-03 Thread Thomas W. Gonzalez
d the launch configuration that you want to modify 3. un-check the "use default launch URLs" checkbox, and then enter the URL you want. --- In [EMAIL PROTECTED]ups.com, "Thomas W. Gonzalez" <[EMAIL PROTECTED]..> wrote: > > Yes, I understand that we want both

RE: [flexcoders] Re: local SWF files cannot use the LoaderContext.securityDomain property

2006-11-03 Thread Thomas W. Gonzalez
LoaderContext.securityDomain property   Your process sounds right, alternatively you could have the stable modules also available locally though, right?   From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On Behalf Of Thomas W. Gonzalez Sent: Friday, November 03, 2006 10

RE: [flexcoders] Looking to hire a Flash/Flex developer

2006-11-07 Thread Thomas W. Gonzalez
Hi Jeff, we are located in SoCal, looking for Flex/Flash developers AND would consider telecommuting – here is the link to the job description.   http://orangecounty.craigslist.org/sof/226952347.html   -  Tom Gonzalez CTO The Dashboard Company www.dashboardcompany.com

RE: [flexcoders] Drag and drop

2006-11-30 Thread Thomas W. Gonzalez
The button is not being deleted, but being moved from your source component's display list to the destination components display list. The DragManager has a reference to the DragSource, not a COPY of it. In order to do what you are implying you would need to create a NEW button at the destina

RE: [flexcoders] how to implement the copy&paste of chart in flex

2006-05-01 Thread Thomas W. Gonzalez
I am unclear on how you can convert a regular DisplayObject hierarchy (like a Chart) into a BitmapData object that you can then encode into a .jpg.   Has anyone blogged on this topic?   - Tom From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Mendel

RE: [flexcoders] how to implement the copy&paste of chart in flex

2006-05-01 Thread Thomas W. Gonzalez
irst parameter).     Ely   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Thomas W. Gonzalez Sent: Monday, May 01, 2006 8:49 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] how to implement the copy&paste of chart in flex I am unclear on how you can

RE: [flexcoders] Resolution Independence Thoughts (FLEX 2.0 B3)

2006-05-24 Thread Jack W. Caldwell
Jason FYI According to these guys, as of Jan. 2006, 64% of users are using a screen resolution 1024 x 768 or greater.   http://www.w3schools.com/browsers/browsers_stats.asp Scroll down until you see Display Resolutions. I have seen other research but can not find it where as of March i

RE: [flexcoders] AJAX versus Flex

2006-05-25 Thread Jack W. Caldwell
Michael:   I do not disagree from a technical standpoint and I have done my homework.   I am referring to the industry's perspective.  I am also looking at this from a business and marketing view.   If you don't think that hype can make or break a product, just look at how U.S. politics PR

RE: [flexcoders] When is Flex better suited than AJAX (was AJAX versus Flex)

2006-05-26 Thread Jack W. Caldwell
Jim:   If you have had the time to read the whole thread you will get a lot of reasons from more technical and seasoned Flex developers than myself.   If you have not had time, I suggest to you go back and read them.   With that being said, for me, every ??? you stated below the answer is

RE: [flexcoders] Flex 2 Pricing

2006-05-30 Thread Jack W. Caldwell
Clint:   So, you still feel "comfortable" with a June release?   Thanks,   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Clint ModienSent: Tuesday, May 30, 2006 10:54 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Flex 2 Pricing I'm sure they're

RE: [flexcoders] Flex 2 Pricing

2006-05-30 Thread Jack W. Caldwell
" the release.  Just a guess though. As for the pricing... a little birdy told me it's HOT.  Like HOT HOT.  Get excited for the Flex dragster... it's gonna melt the pavement off. On 5/30/06, Jack W. Caldwell <[EMAIL PROTECTED]> wrote: Clint:   So, you

RE: [flexcoders] Flex 2 Pricing

2006-05-30 Thread Jack W. Caldwell
asn't been announced yet.   - Gordon   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jack W. CaldwellSent: Tuesday, May 30, 2006 9:29 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex 2 Pricing   Clint:   So, you still feel "co

RE: [flexcoders] Cairngorm question

2006-06-01 Thread Jack W. Caldwell
Steven:   To my understanding, correct me if I am wrong, there are somewhat to significant changes from Cairngorm 0.99 and Cairngorm 2.0.  I realize some of this is due to Flex 2, but my question is will there be an updated version of your 6-Part article(s) for Cairngorm 2?   Or will that i

RE: [flexcoders] How do you advise clients about "building for the future" - how long before Flex2 is worth their time?

2006-06-01 Thread Jack W. Caldwell
Karl:   This seems to contradict what Adobe has said about the "seamless" upgrading to Flash 9.  Do you see such a resistance on the part of the consumer market user to not upgrade?    If so, why?  Will the upgrading not be as easy as we think?   Thanks,   Jack From: flexcoders@yahoogrou

RE: [flexcoders] How do you advise clients about "building for the future" - how long before Flex2 is worth their time?

2006-06-01 Thread Jack W. Caldwell
irst few months after it's release.   Karl From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jack W. CaldwellSent: Thursday, June 01, 2006 10:54 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] How do you advise clients about "building for the future&

RE: [flexcoders] Can you create a file on the server using flex

2006-06-22 Thread Jack W. Caldwell
Brendan:   I would like to see it posted, if not too much trouble.   Thanks,   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brendan MeutznerSent: Thursday, June 22, 2006 12:57 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Can you create a file

RE: [flexcoders] Release & Pricing

2006-06-26 Thread Jack W. Caldwell
x 2 SDK - FREE Flex Builder 2 - $499, $749 w/charting FDS - $6,000 (100 concurrent users), $20,000 (enterprise)   Interestingly: FDS Express - FREE (one app per cpu).   Charting components - $299 Oh, joyous day!: : ) Scott On 6/26/06, jwc_wensan <[EMAIL PROTECTED] > wrote: To

RE: [flexcoders] Re: What is the difference between versions of Flex Data Services

2006-06-29 Thread Jack W. Caldwell
Dirk:   Thanks,   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk EismannSent: Thursday, June 29, 2006 5:04 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: What is the difference between versions of Flex Data Services Last thing I heard w

RE: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-29 Thread Jack W. Caldwell
Tom: That would be nice if that is the case. However, I can't really see Adobe saying that we purchase 1 license and install on 2 servers, even though only one is active. Someone from Adobe have clarification? Thanks, Jack -Original Message- From: flexcoders@yahoogroups.com [mailto:

[flexcoders] Adjacent mx:Label controls and spacing between them?

2008-07-30 Thread Chris W. Rea
p://www.adobe.com/2006/mxml"; layout="absolute"> --- 8< end code 8< --- Regards, Chris W. Rea [EMAIL PROTECTED]

Re: [flexcoders] Adjacent mx:Label controls and spacing between them?

2008-07-30 Thread Chris W. Rea
is clearly additional padding for the rendering of the Label that is not represented by paddingLeft, paddingRight... an internal implementation detail? Anyway, thank you! Regards, Chris W. Rea [EMAIL PROTECTED] On Wed, Jul 30, 2008 at 10:18 AM, Flex Frenzy <[EMAIL PROTECTED]> wrote: >

[flexcoders] Re: Dispatching Events from SWC - via Class`

2009-05-06 Thread Eric W Dunn
or"); > this.addEventListener("enableChanged", getSiteDetailsHandler); > } > > Any one see where I've gone wrong or what I've missed? I tried putting > tags around the Event method but no love , I've tired the > MetaDataEvent (that the only option when I ctrl-SpaceBar) EventDispatch is > soething else I've tired. > > Do I need to create a Custom Event Class in the library? or should I be > doing this another way... > > > I am trying to create a component libary to invoke a web service, store the > data and send out a notification upon completion of the data retrieval. > > Thanks... > > Eric W Dunn > Adaption Technologies > 281-465-3326 > ed...@... >

[flexcoders] Re: Dispatching Events from SWC - via Class`

2009-05-06 Thread Eric W Dunn
stener("enableChanged", getSiteDetailsHandler); > } > > Any one see where I've gone wrong or what I've missed? I tried putting > tags around the Event method but no love , I've tired the > MetaDataEvent (that the only option when I ctrl-SpaceBar) EventDispatch is > soething else I've tired. > > Do I need to create a Custom Event Class in the library? or should I be > doing this another way... > > > I am trying to create a component libary to invoke a web service, store the > data and send out a notification upon completion of the data retrieval. > > Thanks... > > Eric W Dunn > Adaption Technologies > 281-465-3326 > ed...@... >

[flexcoders] Flex 2: passing XML string via ExternalInterface produces unterminated string

2006-03-24 Thread Nathan W. Phelps
I'm trying to pass an XML string to the hosting page via ExternalInterface.call, however, before I even get into my JavaScript function, I'm encountering an "unterminated string constant" error. Here is the flow of events: An HTTPService requests an XML file on the server, the ResultEvent.res

[flexcoders] Re: DOT NET 2.0

2006-04-05 Thread Nathan W. Phelps
Yes, this is indeed possible and you will not need the server with Flex 2. However, just a heads up, the webservice stuff is pretty slow (and has a lot of odd behaviors right now in the beta) and I've started to migrate from using WebService to using HTTPService with a REST backend developed u

[flexcoders] Re: DOT NET 2.0

2006-04-06 Thread Nathan W. Phelps
--- In flexcoders@yahoogroups.com, Robert Thompson <[EMAIL PROTECTED]> wrote: > > Nathan, > > What do you mean by REST backend developed using HttpHandlers? What I mean is that I'm using HTTPService with REST URLS which are served by a HttpHandler. So here is how it works... I issue a reques

[flexcoders] Flex 2: How limited will the free version of Flex Data Services be?

2006-04-06 Thread Nathan W. Phelps
Maybe these question will fair better here than on the Adobe Labs Forums where they have remained unanswered (this seems to be a much more thriving community)... Adobe has stated that there will be a free version of Flex Data Services which will support a limited number of concurrent connectio

[flexcoders] Re: dot net 2.0 - FLEX - new to macromedia

2006-04-06 Thread Nathan W. Phelps
This is completely possible and all you need is the Flex 2 SDK and optionally Flex Builder. You can talk to your ASP.NET application via the HTTPService or WebService controls. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Flex 1.5 Bug Fixes ?

2006-02-02 Thread Jack W. Caldwell
Matt: Thanks, Jack -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Thursday, February 02, 2006 2:28 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex 1.5 Bug Fixes ? 1.5 fixes if necessary are addressed through

[flexcoders] SCGs with fonts

2005-08-06 Thread Jason W. Solinsky
Is it possible to Embed SVGs in mxml pages such that the SVG either uses a font already embeded in the application (preferable) or a font embeded in the SVG? If so, could anybody refer me to an example? Thanks, JWS Yahoo! Groups Sponsor ~--> http

[flexcoders] Flex Caching Bug?

2005-08-07 Thread Jason W. Solinsky
I am embedding SVGs in my application that come from URLs with multiple query parameters: backgroundImage="@Embed(source='http://localhost:/main/svg/gradient.svg?c1=485876&c2=192439', mimeType='image/svg')" this saves me the trouble of creating new SVGs everytime I need a

[flexcoders] How to use Flex Builder's profiler???

2010-02-04 Thread W . R . de Boer
Hello, I have been working with FB3 Profiler the whole week but I am having some strange issues with it. If I am making a simple SWF with a document class where I call a method after 10 seconds which should dispose all the creating movieclip at startup. I have the issue that the reference cou

RE: [Junk E-Mail - MED] Re: [Junk E-Mail - MED] [flexcoders] Yahoo Groups Problems

2006-07-16 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Clint:   I do own the domain and it is at Network Solutions.  This problem occurs about twice a month that I can tell maybe more often.   I do not check at www.yahoo.com to verify, so it may be happening more often.   I have since changed my Yahoo Groups emails to go to another email addre

RE: [flexcoders] Public list of open issues, available?

2006-07-19 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Stephen:   The release notes are good start for anyone.   However, it doesn't really answer the question:  Is there a public list/site, etc. that developers can access to find out about known issues?   It would save a lot of time.   So is there?   Thanks,   Jack From: flexcoders@yahoogrou

RE: [flexcoders] Re: Panel padding

2006-07-28 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Devin:   Try borderThicknessTop="0" borderThicknessBottom="0" borderThicknessRight="0" borderThicknessLeft="0"   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Devin HollowaySent: Friday, July 28, 2006 5:08 PMTo: flexcoders@yahoogroups.comSubject: [flexcoder

[flexcoders] License Number on FlexBuilder 2

2006-08-02 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Title: License Number on FlexBuilder 2 I am ready to purchase Flex Builder 2 w/charting. I have already downloaded the trial and it will expire in 10 days. I would prefer to get the CD, but it may not get delivered before the expiration.  If I order the CD will I be given the license

RE: [flexcoders] License Number on FlexBuilder 2

2006-08-02 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
: [flexcoders] License Number on FlexBuilder 2   Hi, you won't. You have to wait for your CD I guess   best Marco Casario http://casario.blogs.com     - Original Message - From: Jack W. Caldwell @ Zingit Technologies, Inc. To: [EMAIL PROTECTED]ups.com Sent: Wednesday, A

[flexcoders] Icon/Image with LinkBar

2006-08-02 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Title: Icon/Image with LinkBar I must be brain dead but I can not find a way to place an icon/image next to a LinkBar menu item. I am rather amazed that the LinkBar has NO icon or image setting. I would have thought this would have been a default property.  So much for assuming . .

RE: [flexcoders] Icon/Image with LinkBar

2006-08-02 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
To All:   Like I said I must have been brain dead . . . .   I just used a series of LinkButtons w/icon within a VBox.   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jack W. Caldwell @ Zingit Technologies, Inc.Sent: Wednesday, August 02, 2006 1:32 PMTo

RE: [flexcoders] License Number on FlexBuilder 2

2006-08-02 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
ECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jack W. Caldwell @ Zingit Technologies, Inc.Sent: Wednesday, August 02, 2006 10:50 AMTo: [EMAIL PROTECTED]ups.comSubject: RE: [flexcoders] License Number on FlexBuilder 2 Marco: Well . . . . I guess I will have to order the download

RE: [flexcoders] serial number before DVD

2006-08-03 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Matt:   Thanks,   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt ChotinSent: Thursday, August 03, 2006 12:08 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] serial number before DVD OK, here's what you need to do.1st off, the best thing to do is

[flexcoders] FYI on AJAX Security Problems

2006-08-04 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Title: FYI on AJAX Security Problems To all: For anyone being asked by clients regarding AJAX . . . some fuel for your arsenal.     http://www.eweek.com/article2/0,1895,1998795,00.asp?kc=EWENTEMNL080506EOAD Jack __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.y

RE: [flexcoders] ApplicationControlBar - highlightAlphas doesn't exist but I can still use it

2006-08-07 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Nelson:   I did not use the beta version, but . . . . was the highlightAlphas replaced with fillAlphas?   Jack     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nelsoncostabatistaSent: Monday, August 07, 2006 6:36 AMTo: flexcoders@yahoogroups.comSubject: [flexco

RE: [flexcoders] Re: decimal numbers in financial applications

2006-08-16 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Gordon:   I must be missing something here.  Are you saying that, for example, if I had a datagrid with 10 rows and one of the columns has 2 digit decimal numbers in it and I wanted to get the average of the ten numbers . . . . .   that we can NOT do that in AS?  That we have to send a ser

RE: [flexcoders] logout user after cookie expires (state change)

2007-03-19 Thread Duke, Alfred W [YOH Contractor for Sprint]
using onreadystatechange From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of TCash21 Sent: Monday, March 19, 2007 11:24 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] logout user after cookie expires (state change) Hi all, I'm using

RE: [flexcoders] logout user after cookie expires (state change)

2007-03-19 Thread Duke, Alfred W [YOH Contractor for Sprint]
Tanya, You can all of this using AJAX with flex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of TCash21 Sent: Monday, March 19, 2007 11:24 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] logout user after cookie expires (state chang

RE: [flexcoders] Flex & AJAX source-path problems FABridge

2007-03-19 Thread Duke, Alfred W [YOH Contractor for Sprint]
Tanya, I must rebuild your project by.. Closing the project by right-clicking on it Move all files from the project folder to a temp location like Desktop Go to Project uncheck Build Automatically Go to Project-> Build Project and move project files back From: fle