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

2015-09-23 Thread Brendan Meutzner bmeutz...@gmail.com [flexcoders]
In my world of enterprise development Flex is still alive and well... Obviously different approaches for mobile development (gaming or non) which are better but as far as the desktop goes Flex is still "the solution of choice" for my needs. Yeah, obviously the lists died and we are never going to

Re: [flexcoders] Print text

2015-03-13 Thread Brendan Meutzner bmeutz...@gmail.com [flexcoders]
Have you considered using a server side print functionality like Java or ColdFusion to organize and print? I know, for example, that ColdFusion's CFDocument print will allow you to specify page breaks, and could be configured to a specific height for inserting the page break to match your print

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

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

Re: [flexcoders] What happened to the Flex Style Explorer?

2013-02-13 Thread Brendan Meutzner
Not just the Style Explorer, but the component explorer as well. I'm hoping that this was simply a mistake, and that it wasn't intentionally removed. If Adobe claims to still be committed to furthering the open source development on Flex, then dropping support for tools such as this is a bit of

Re: [flexcoders] Compiling and debugging against a remote Coldfusion server

2013-01-07 Thread Brendan Meutzner
- ColdFusion root would be the base installation folder for ColdFusion (Windows: C:\Coldfusion9 Mac: /Applications/Coldfusion9) - Web Root will be the wwwroot directory within the Coldfusion folder - Root URL is http://localhost:8500 I would seriously question the decision of the

Re: [flexcoders] Compiling and debugging against a remote Coldfusion server

2013-01-07 Thread Brendan Meutzner
Do you have a code repository for the ColdFusion content setup? (ie. Subversion, CVS, TeamSite, etc...) I have never debugged against a remote ColdFusion server, but it looks possible: http://help.adobe.com/en_US/ColdFusionBuilder/Using/WS0ef8c004658c1089-31c11ef1121cdfd6aa0-7fef.html You'll

Re: [flexcoders] How to find intersection point between a lineseries and a vertical line.

2012-03-06 Thread Brendan Meutzner
I replied to the thread you mention below with the solution as well, but here I'll paste below here as well... Here are a few functions I wrote years ago for common chart transformations... the function you're going to focus on for your solution is chartToScreen... /** * Converts the screen

Re: [flexcoders] Re: Line Chart like Task Manager

2012-02-18 Thread Brendan Meutzner
@yahoogroups.com, Brendan Meutzner bmeutzner@... wrote: Geoff, You can create a large dataset with empty, or 0 values, for your Y Axis. Then when you populate data from your service, add/append those values to the end of your dataset, while removing an equal number of empty values from

Re: [flexcoders] Re: Line Chart like Task Manager

2012-02-15 Thread Brendan Meutzner
Geoff, You can create a large dataset with empty, or 0 values, for your Y Axis. Then when you populate data from your service, add/append those values to the end of your dataset, while removing an equal number of empty values from the beginning of the dataset. If you've created an

Re: [flexcoders] Formatting time

2011-10-27 Thread Brendan Meutzner
FROM: http://www.gotoandlearnforum.com/viewtopic.php?t=16114 function formatTime(s:Number):String { // Do some time calculations var hrs:Number = Math.floor(s/3600); var mins:Number = Math.floor((s%3600)/60); var secs:Number = Math.floor((s%3600)%60); // Define some vars var

Re: [flexcoders] passing parameters to coldfusion

2011-09-13 Thread Brendan Meutzner
You need to look at using a RemoteObject, HTTPService, or WebService component in Flex. There are plenty examples of using CF with Flex... here's a tutorial to get started: http://www.adobe.com/devnet/flex/articles/fcf_getting_started_coldfusion_flex.html On Tue, Sep 13, 2011 at 8:12 AM,

Re: [flexcoders] Flex line chart

2011-09-12 Thread Brendan Meutzner
I've re-read your post 3 times, and still can't make sense of how your data is structured. Is there any way you can post an example of the structure? There's always a way to massage the data to fit into the charting... Brendan On Mon, Sep 12, 2011 at 7:06 AM, chinwesley wesleyc...@hotmail.com

[flexcoders] Purchase Previous Adobe Licenses

2011-08-17 Thread Brendan Meutzner
Hi All, Was wondering if anyone had insight into the possibility of purchasing previous versions of Adobe product licenses. I know this is a bit off topic, but Adobe sales (phone line) is telling me they have no way to do it, and I just can't believe that. I'm hoping someone within the forum

Re: [flexcoders] Purchase Previous Adobe Licenses

2011-08-17 Thread Brendan Meutzner
to enterprise licensing, and didn't get much help there either. They actually pointed me towards outside sales partners, to which I've gotten no response. Brendan On Wed, Aug 17, 2011 at 1:48 AM, Paul Andrews p...@ipauland.com wrote: ** On 17/08/2011 09:23, Brendan Meutzner wrote: Hi All

Re: [flexcoders] Purchase Previous Adobe Licenses

2011-08-17 Thread Brendan Meutzner
what you need? (a Coldfusion 8 license?) http://www.adobe.com/products/coldfusion/coldfusion8/buy/ Looks like there isn't a problem after all. Dave. On 17 Aug 2011, at 10:52, Paul Andrews wrote: On 17/08/2011 10:37, Brendan Meutzner wrote: Paul, Thanks for the response

Re: [flexcoders] FB 4.5.1 export release build and RSL size

2011-08-16 Thread Brendan Meutzner
I've also seen this with the 3.6 SDK. There were definitely issues even compiling successfully in the 4.0 version of FlashBuilder, and while 4.5.x does successfully do the export to release builder, it seems the compilation size is now an issue. On Tue, Aug 16, 2011 at 8:06 AM, durnelln

Re: [flexcoders] Cold fusion and Flex Remoting setup driving me nuts

2010-09-09 Thread Brendan Meutzner
OK... lots to answer here... 1) You can verify your gateway by simply browsing to the URL you specified... if the page is blank, you're good to go... if you got an error, you're not. 2) You need to place your cfc files beneath your CF webroot folder... this is the default location for the

[flexcoders] Flex Developers in Houston

2010-09-07 Thread Brendan Meutzner
Why? Can you give a bit more info on what you're looking for?

Re: [flexcoders] Re: Line Chart, I have a X value, how can I find the Y value?

2010-09-07 Thread Brendan Meutzner
Lol... yeah there's an easier way ;-) It's been a long time, so I can't explain fully off the top of my head, but check out the dataTransform object and specifically invertTransform(x,y) which takes screen coordinates and returns the axis values at that point. You can look into a blog post I did

Re: [flexcoders] Creating blinking glow effect

2010-08-09 Thread Brendan Meutzner
The solution you suggest is how I'd approach it. Sent from my iPhone On Aug 9, 2010, at 7:50 AM, Alexander alexander.far...@gmail.com wrote: Hello, does anybody please have an advice on creating a repeatedly blinking Glow effect on a button. Exactly like the example at the Adobe page

Re: [flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-28 Thread Brendan Meutzner
Woah, development is continuing on the 3.x versions? How long will this continue? On Jul 28, 2010 11:58 AM, Alex Harui aha...@adobe.com wrote: 3.6 is due out soon. It is fixed in that code base. I think there may be nightly build on the 3.x branch. On 7/28/10 9:23 AM, Richard Rodseth

Re: [flexcoders] textInput databinding

2010-07-15 Thread Brendan Meutzner
[Bindable] public var collection:String = myDataProvider.data.name.[0]; Does that work? On Thu, Jul 15, 2010 at 12:59 PM, mark.embrey mark.c.emb...@gmail.comwrote: Adobe, in their infinite wisdom, removed the data property from Spark TextInput. There is an example of assigning bindable

Re: [flexcoders] Re: textInput databinding

2010-07-15 Thread Brendan Meutzner
Good catch Oleg :-) On Thu, Jul 15, 2010 at 2:59 PM, Oleg Sivokon olegsivo...@gmail.com wrote: That won't also work because there's a redundant dot before the bracket. ;)

Re: [flexcoders] Re: textInput databinding

2010-07-15 Thread Brendan Meutzner
Mark, What isn't working... the binding? What are you getting for your TextInput text value with the suggestions from Oleg and myself. You definitely shouldn't be getting the same issue as you first posted about with these updates, so where is it falling short now? Brendan On Thu, Jul 15,

Re: [flexcoders] Re: textInput databinding

2010-07-15 Thread Brendan Meutzner
Why wouldn't you just do this: TextInput text={myDataProvider.data.name[0]} / On Thu, Jul 15, 2010 at 4:38 PM, mark.embrey mark.c.emb...@gmail.comwrote: Actually, as I understand it, I am using ActionScript to create a variable, but I am then binding that to an mxml component, no?

Re: [flexcoders] Re: textInput databinding

2010-07-15 Thread Brendan Meutzner
Mark, glad you got it worked out. However, you need to look at the fact the Spark TextInput extends from SkinnableTextBase which contains the properties you'd expect. Brendan On Thu, Jul 15, 2010 at 5:28 PM, mark.embrey mark.c.emb...@gmail.comwrote: Bingo! that did it! the final

Re: [flexcoders] DateTimeAxis labels

2010-07-14 Thread Brendan Meutzner
Have you looked at using a custom IAxisRenderer for the series in which you limit the labels which are shown? You would be able see the labels which are to be displayed and show/hide them accordingly. I believe that you'll find the setter for gutters has the labels which are added automatically.

Re: [flexcoders] right click menu @ flex

2010-07-13 Thread Brendan Meutzner
You have the debug player installed in google chrome... those two items can't be removed in the debug player. If you uninstall the player plugin and then reinstall the non-debug version they'll go away. However, if you're not familiar with the debug player, you should look into it... how are you

Re: [flexcoders] Flex Project Management App

2010-07-08 Thread Brendan Meutzner
You posted on this a few weeks ago, and I replied with some suggestions a few weeks ago. If you need additional help, reply to your original thread. On Thu, Jul 8, 2010 at 3:47 PM, Angelo Anolin angelo_ano...@yahoo.comwrote: Hi FlexCoders, I came across a Flex PM site and I would like to

[flexcoders] Managing LCDS FlexSession with CF8

2010-06-28 Thread Brendan Meutzner
I am trying to figure out how to manage the session for a flex client which is connecting to lcds/coldfusion instance. I have determined the logic behind the problem, but can't figure out how to implement using CF8. I'd like to be able to track login/logout (browser close) via

Re: [flexcoders] Charting Line Segments

2010-06-28 Thread Brendan Meutzner
Which LineSeries is affected? Have you isolated the line series on its own (don't add/load the others) and does it still occur? Have you tried creating a sub class from LineSeries and overriding the appropriate functions inside of it to try and trace out how each segment is loading? Brendan

Re: [flexcoders] Charting Line Segments

2010-06-28 Thread Brendan Meutzner
segments? I overrode updateData and that seems to set the data but it looks correct. The rendered data cache has all the elements of the data provider. -Jake On Mon, Jun 28, 2010 at 3:32 PM, Brendan Meutzner bmeutz...@gmail.comwrote: Which LineSeries is affected? Have you isolated

Re: [flexcoders] Charting Line Segments

2010-06-28 Thread Brendan Meutzner
to be different and the point didn't show up. I missed it when looking over the thousands of data points. Stupid error, but thanks for the debugging tip. It's fixed now. -Jake On Mon, Jun 28, 2010 at 3:53 PM, Brendan Meutzner bmeutz...@gmail.comwrote: Hmmm... at runtime, have you

Re: [flexcoders] Read from DB Write to DB

2010-06-25 Thread Brendan Meutzner
Flex doesn't read or write to databases directly. You will need to implement an intermediary technology like PHP, ColdFusion, Java, etc You will utilize RemoteObject, HTTPService, WebService tags with these technologies within Flex. I'm not going to point out any tutorials directly because

[flexcoders] Wheel Scroll on Mac Buggy

2010-06-25 Thread Brendan Meutzner
Hi All, I was very happy to see wheel scrolling implemented on Mac in Player 10.1... however, I've found it's kind of buggy. Essentially, if I use it to scroll a list based component, it works great. If I use it to scroll a container based component it jumps around a lot. For example, a

Re: [flexcoders] Wheel Scroll on Mac Buggy

2010-06-25 Thread Brendan Meutzner
one of the numerous javascript patches? Try disabling it and see if it works. Note: There is no support for mouse wheel natively in Firefox browsers on Mac. On Fri, Jun 25, 2010 at 11:15 AM, Brendan Meutzner bmeutz...@gmail.comwrote: Hi All, I was very happy to see wheel scrolling

Re: [flexcoders] Re: Time for a facelift - Flex 2 to Flash 4....:)

2010-06-23 Thread Brendan Meutzner
Yeah, you don't want to have LiveCycle or BlazeDS checked... those both rely on services which would be present on your backend server, and dictated in the services-config.xml file. LiveCycle and BlazeDS would have nothing to do with your web service calls. You should use the RemoteObject

Re: [flexcoders] Clear a form fast

2010-06-18 Thread Brendan Meutzner
I believe I've seen a component on the Flex Exchange on Adobe's website for this... On Fri, Jun 18, 2010 at 9:20 AM, Wally Kolcz wko...@isavepets.com wrote: Any way to clear/reset a mx:Form easily other than manually setting all the text to ?

Re: [flexcoders] Help With Collapsible Component

2010-06-18 Thread Brendan Meutzner
You will need to familiarize yourself with States. The components specifically used are not as important as the concept of an open and closed state. The author likely used a simple container like VBox/HBox/Canvas, and had the button change the state so that the size was increased, the children

Re: [flexcoders] Cold Fusion

2010-06-08 Thread Brendan Meutzner
If I had to guess, I would think it was in part because there is simply very little support and documentation out there for the cf/flex workflow compared to java. I am a flex cf developer today, but am pretty certain I will become a flex java developer within 2 yrs time. I'm trying to develop

Re: [flexcoders] Re: flash 4 and flex 3

2010-06-02 Thread Brendan Meutzner
http://bugs.adobe.com/jira/browse/FB-26842 2010/6/2 Tom Chiverton tom.chiver...@halliwells.com On Monday 24 May 2010 06:05:29 you wrote: well, Flash Builder 4 can't do the release builds. In what way can't ? -- Tom Chiverton Helping to revolutionarily cultivate high-end strategic

Re: [flexcoders] trace(trace not working);

2010-05-28 Thread Brendan Meutzner
Do you use the compiler argument -optimize=true ? On May 28, 2010, at 10:59 AM, jamesfin james.alan.finni...@gmail.com wrote: I have the Flex4 Eclipse Plugin installed and I'm noticing that the trace statement seems to be ignored. A breakpoint can't be put on any trace statement nor

Re: [flexcoders] Re: Data grid vary column sizes

2010-05-21 Thread Brendan Meutzner
is not working. Thanks, Philip -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

[flexcoders] Does Flash in Chrome perform better?

2010-05-15 Thread Brendan Meutzner
Hi All, I'm noticing a performance improvement when I run my Flex applications inside the Chrome Flash plugin vs. Safari and Firefox. I haven't gone as far as any actual testing on this yet, but wondered if I'm just perceiving this or if it's actually better? Brendan

Re: [flexcoders] Re: Take that Mr Jobs!

2010-05-11 Thread Brendan Meutzner
. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, mitek17 mite...@... wrote: Does the Export Release Version suppose to work in FB4? Just curious. https://bugs.adobe.com/jira/browse/FB-26842 -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

Re: [flexcoders] Cast Object into a custom class

2010-05-08 Thread Brendan Meutzner
this: Person person = object as Person; But, it generates an error. Is there a way to convert the Object into a Person object without individually copying each property? Thanks -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

[flexcoders] Re: Duplicate Module Loads - applicationDomain / Shared Code Issues

2009-05-17 Thread Brendan Meutzner
will lock the module into memory. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Brendan Meutzner Sent: Saturday, May 16, 2009 3:48 PM To: flexcoders

[flexcoders] Re: Duplicate Module Loads - applicationDomain / Shared Code Issues

2009-05-17 Thread Brendan Meutzner
Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Brendan Meutzner Sent: Sunday, May 17, 2009 8:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Duplicate Module Loads

[flexcoders] Duplicate Module Loads - applicationDomain / Shared Code Issues

2009-05-16 Thread Brendan Meutzner
Hi All, I'm having trouble wrapping my head around an issue I'm facing while loading the same module twice into my main application. I've got a module which takes a few arguments to load up property data. If I ask for a different set of data, the same Module class gets loaded, it just makes

[flexcoders] Re: Dynamic datasource in ColdFusion via LCDS ES

2009-05-10 Thread Brendan Meutzner
run a schedule to clear the Application scope once a day, but if you have a high volume of users, a better solution would have to be found. --- In flexcoders@yahoogroups.com, Brendan Meutzner bmeutz...@... wrote: Hi All, I'm hitting a wall on a requirement for a Flex application which

[flexcoders] Re: Anyone using Flex with LCDS ColdFusion

2009-05-10 Thread Brendan Meutzner
Hi Joao, Well, I'm glad there's someone else out here :-) http://tech.groups.yahoo.com/group/flexcoders/message/142458 I got some help with Tom Jordahl figuring it out. I'd actually posted a comment on your blog post which related to dynamic destinations setup through CF, but I'm guessing

[flexcoders] Re: Anyone using Flex with LCDS ColdFusion

2009-05-09 Thread Brendan Meutzner
is LCDS? Could you explain what this configuration is? Charles P. On Fri, May 8, 2009 at 12:11 PM, Brendan Meutzner bmeutz...@...wrote: Hi All, I've already got another post up with a conundrum I'm facing with LCDS and ColdFusion, but it's not the first question I've posted over

[flexcoders] BUMP - Dynamic datasource in ColdFusion via LCDS ES

2009-05-08 Thread Brendan Meutzner
talks to??? Thanks, Brendan --- In flexcoders@yahoogroups.com, Brendan Meutzner bmeutz...@... wrote: Hi All, I'm hitting a wall on a requirement for a Flex application which utilizes the LCDS version included with ColdFusion. I have the project setup to use DAO's, Assemblers

[flexcoders] Anyone using Flex with LCDS ColdFusion

2009-05-08 Thread Brendan Meutzner
the same thing. Brendan -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

[flexcoders] Dynamic datasource in ColdFusion via LCDS ES

2009-05-07 Thread Brendan Meutzner
are invisible and I wouldn't be able to append an argument to them. So my issue is... how do I go about having ColdFusion read a dynamic variable to define it's datasource? Thanks in advance for the help. Brendan -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

Re: [flexcoders] MySQL and Flex

2009-03-22 Thread Brendan Meutzner
-- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

Re: [flexcoders] How to separate Flex code and server code in different servevr?

2009-03-22 Thread Brendan Meutzner
it work. Thanks for your help. Mark -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

Re: [flexcoders] How do I create a clickable line in Flex?

2009-03-20 Thread Brendan Meutzner
that would be clickable and selectable (for example to delete them or rearrange them). Perhaps I'm missing something very obvious?? Thanks for any input, best regards, Christoph -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

Re: [flexcoders] Flex charting

2009-03-17 Thread Brendan Meutzner
- tp22534734p22539 460.htmlhttp://www.nabble.com/Flex-charting-tp22534734p22539460.html Sent from the FlexCoders mailing list archive at Nabble.com. -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

Re: [flexcoders] Flex charting

2009-03-17 Thread Brendan Meutzner
...@yahoo.comwrote: Hi, No, I want full 100% graph with 2 colors in one bar and another 2 colors in one bar for the same key. I hope u got my point. Thanks and Regards, Poornima -- *From:* Brendan Meutzner bmeutz...@gmail.com *To:* flexcoders@yahoogroups.com *Sent

Re: [flexcoders] Flex charting

2009-03-17 Thread Brendan Meutzner
=LiveDocs_Book_Partsfile=charts_formatting_110_46.html Brendan On Tue, Mar 17, 2009 at 8:58 AM, Brendan Meutzner bmeutz...@gmail.comwrote: Poornima, I now see what you mean... sorry, didn't read carefully enough the first time (or look at screenshot :)... What you're looking for doesn't fit the logic

Re: [flexcoders] possibility of opening a web page in a flex application

2009-03-08 Thread Brendan Meutzner
AM, stinasius stinas...@yahoo.com wrote: is it possible to open web page for example( http://www.mtv.com/news/articles/1606473/20090306/rihanna.jhtml) in a flex application let's say inside a flex canvas component? -- Brendan Meutzner http://www.meutzner.com/blog/ http

Re: [flexcoders] move component over text

2009-03-08 Thread Brendan Meutzner
toolTip=blah On Sun, Mar 8, 2009 at 3:44 AM, stinasius stinas...@yahoo.com wrote: hi guys how do i move a box component over a text when i rollover the text? -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

Re: [flexcoders] Upload image to an image gallery

2009-03-08 Thread Brendan Meutzner
, -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

Re: [flexcoders] Upload Image

2009-03-06 Thread Brendan Meutzner
in the flex application when uploaded ? Thank you, Christophe -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

[flexcoders] Re: ColdFusion Application variables with LCDS

2009-03-06 Thread Brendan Meutzner
Nobody has attempted this? On Fri, Feb 20, 2009 at 3:56 PM, Brendan Meutzner bmeutz...@gmail.comwrote: Hi, I'd like to set an application variable on my CF server which is recognized in the various cfc's I'm using through LiveCycle Data Services. However, if I set a variable inside

[flexcoders] ColdFusion Application variables with LCDS

2009-02-20 Thread Brendan Meutzner
is undefined in Application. I've changed the scope parameter inside my Destination definitions in data-management-config.xml to be application instead of request but this didn't help either. Anyone else offer some insight on this? Thanks in advance, Brendan -- Brendan Meutzner http

Re: [flexcoders] ColumnChart - Data tip target for invisible column

2009-02-19 Thread Brendan Meutzner
is invisible? -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] How do I get rid of the padding between images layed in HBox?

2009-02-17 Thread Brendan Meutzner
eliminate it? I want the images stick to each other with no gap, Please advice Thanks Jo -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Chart Axis Location

2009-02-11 Thread Brendan Meutzner
. Thank you, Chad -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Bar graph question

2009-02-08 Thread Brendan Meutzner
/ /mx:series /mx:BarChart any suggestions? Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] PlotChart Selection Color

2009-02-04 Thread Brendan Meutzner
(609) 520-5637 (p) (484) 477-9900 (c) -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Generating Random key

2009-01-05 Thread Brendan Meutzner
having all caps and no vowels in the format of XXX-XXX-XXX-XXX. Can anybody guide me in this direction. Is there any built in function for that or do I have to use my own logic for random generation in this specific case. Any help will be appreciated. Thanks Anuj -- Brendan Meutzner

Re: [flexcoders] Generating Random key

2009-01-05 Thread Brendan Meutzner
in this direction. Is there any built in function for that or do I have to use my own logic for random generation in this specific case. Any help will be appreciated. Thanks Anuj -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Generating Random Unique ID

2009-01-05 Thread Brendan Meutzner
learn more by converting the 'nice' AS2 class to AS3. -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] FLEX CHARTING

2008-12-29 Thread Brendan Meutzner
to calculate downtime. But its not displaying any data. Can any one help me regarding this. Thanks and Regards, Poornima -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] problem with sample flex application with LCDS

2008-12-10 Thread Brendan Meutzner
printed on the console. I dont get any errors also. When i click on the button the screen just refreshes. Thanks, Radhika --- On *Wed, 12/10/08, Brendan Meutzner [EMAIL PROTECTED]* wrote: From: Brendan Meutzner [EMAIL PROTECTED] Subject: Re: [flexcoders] problem with sample flex application

Re: [flexcoders] Re: Listening for both Mouse Down and Double Click events.

2008-12-10 Thread Brendan Meutzner
if the mouse_down was part of a double click or a just a mouse down. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Brendan Meutzner [EMAIL PROTECTED] wrote: There is a double click event you can listen for on UIComponent... just make sure that doubleClickEnabled is set

Re: [flexcoders] Listening for both Mouse Down and Double Click events.

2008-12-09 Thread Brendan Meutzner
in time? TIA -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] problem with sample flex application with LCDS

2008-12-09 Thread Brendan Meutzner
paging enabled=false pageSize=10 / /network item-classflex.samples.product.Product/item-class /properties /destination -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Re: Charts Datatip hide delay

2008-12-08 Thread Brendan Meutzner
in the datatip. But when I move the mouse it destroys the datatip. I would like to delay it so that the user can move over the tooltip and click the URL, I can destroy it on mouse out event. Replies in this regards will be highly appreciated. Thanks Pratik -- Brendan Meutzner http

Re: [flexcoders] Re: Chart datatips

2008-11-23 Thread Brendan Meutzner
PROTECTED] wrote: Hey, Is it possible to enable datatips on a chart, but to only display the round marker on the series item and not the datatip? Thanks, Sefi -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Re: Chart datatips

2008-11-23 Thread Brendan Meutzner
, Brendan Meutzner [EMAIL PROTECTED]wrote: Sefi, Add this to your Chart definition... it sets the dataTipRenderer style to be a blank instance, but the data point renderer still shows... I think this is what you're looking for. dataTipRenderer=mx.skins.ProgrammaticSkin Brendan

Re: [flexcoders] Re: Chart datatips

2008-11-23 Thread Brendan Meutzner
the series are far apart and there is only one tip at a time - there are no overlapping data tips. Change the value of march expenses from 500 to 300 to make the series closer and you'll see what I mean. On Sun, Nov 23, 2008 at 11:11 PM, Brendan Meutzner [EMAIL PROTECTED]wrote: Huh? I did a test

Re: [flexcoders] Re: Chart datatips

2008-11-23 Thread Brendan Meutzner
On Sun, Nov 23, 2008 at 5:51 PM, Brendan Meutzner [EMAIL PROTECTED]wrote: Sefi, So I changed values, and it does what you'd expect only showing the renderer for the top layer series... I still don't understand what you mean by root of the connecting line. Brendan On Sun, Nov 23, 2008 at 3:49

Re: [flexcoders] Datatips on a chart

2008-11-21 Thread Brendan Meutzner
for the series (relatively simple). 3. If I get here, I'll have to think of a way to cause the points to show their datatip and ofcourse clear all previous open datatips... any ideas on either of those points? Thanks, Sefi -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Re: How can I place my labels in my column chart vertically?

2008-11-21 Thread Brendan Meutzner
Amy, That I didn't know! Great tip... :-) Brendan On Fri, Nov 21, 2008 at 8:07 AM, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Brendan Meutzner [EMAIL PROTECTED] wrote: If you're talking about the horizontalAxis labels then.. 1

Re: [flexcoders] Datatips on a chart

2008-11-21 Thread Brendan Meutzner
:34 PM, Brendan Meutzner [EMAIL PROTECTED]wrote: Claude Hussenet has come up with a solution for this. Here's the past post. http://tech.groups.yahoo.com/group/flexcoders/message/90045 I've used and it works great. Brendan On Fri, Nov 21, 2008 at 4:56 AM, Sefi Ninio [EMAIL PROTECTED

Re: [flexcoders] Datatips on a chart

2008-11-21 Thread Brendan Meutzner
, Nov 21, 2008 at 10:20 PM, Brendan Meutzner [EMAIL PROTECTED]wrote: package range_charts.extended_series { import mx.charts.HitData; import mx.charts.chartClasses.CartesianTransform; import mx.charts.series.LineSeries; import mx.charts.series.items.LineSeriesItem; import

Re: [flexcoders] Datatips on a chart

2008-11-21 Thread Brendan Meutzner
Np... thank Claude... it's all his :-) On Sat, Nov 22, 2008 at 12:31 AM, Sefi Ninio [EMAIL PROTECTED] wrote: Well anyway, it works great. Thanks a lot for your help. Sefi On Fri, Nov 21, 2008 at 11:55 PM, Brendan Meutzner [EMAIL PROTECTED]wrote: I think the package was available

Re: [flexcoders] How can I place my labels in my column chart vertically?

2008-11-20 Thread Brendan Meutzner
] wrote: Hi everyone, how can I place my label on my column chart series vertically? Thanks! -David -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Re: 3 charts side by side but only one vertical axis?

2008-11-20 Thread Brendan Meutzner
can with text. I've not found a way to suppress the vertical axis on a chart (which is what i think i need to do). I have the 3 charts ready to go, but just can't seem to get rid of the axis on 23. Any ideas? Thanks Mitch -- Brendan Meutzner http

Re: [flexcoders] Getting IP address of the local machine

2008-11-19 Thread Brendan Meutzner
-- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Crossdomain.xml allow-access-from domain Question

2008-11-19 Thread Brendan Meutzner
on our work stations. -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Re: Creating a Chart With 50,000 Data Points

2008-11-18 Thread Brendan Meutzner
data sets. The best I can think of is to write some code that will reduce the data set in size yet still provide enough data to represent the graph accurately. Thoughts? Ta. Mark -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] LCDS: DataService.fill() not filling

2008-11-18 Thread Brendan Meutzner
Geoff, 1) check the data-management-config.xml file to be sure your data type, unique Id value, etc are correct 2) make sure your array collection is not null prior to passing into fill method on service ( ie. new ArrayCollection() on var first ) HTH, Brendan On Nov 18, 2008, at 12:05

Re: [flexcoders] Re: my first flex website

2008-11-04 Thread Brendan Meutzner
904. 265 0330 - 904. 386 7958 www.leftandrightsolutions.com Jacksonville - Florida -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Using an IFrame in an MDIWindow

2008-11-03 Thread Brendan Meutzner
? Thanks, Lynn -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Re: Do you use a Mac?

2008-10-29 Thread Brendan Meutzner
%40yahoogroups.comYahoo! Groups Links -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] Re: Do you use a Mac?

2008-10-28 Thread Brendan Meutzner
am doing wrong? I feel kind of avoided by something very important. Cheers, Dmitri. -- Brendan Meutzner http://www.meutzner.com/blog/

  1   2   3   4   5   >