Re: [flexcoders] Security error - can anyone help with this?

2005-10-26 Thread Jeff Tapper
try setting useProxy=true on your HttpService tag At 12:05 PM 10/26/2005, you wrote: I am getting the following popup error when i try to access the examples on my secured server. Any one seen this before and I ahve my flex-config wide open.. HTTPService Fault:

RE: [flexcoders] Implementing ModelLocator pattern in AS3/Flex2

2005-10-26 Thread Jeff Tapper
is that there are a couple of internal things that rely on there being a public constructor and that it will get added later. Spike On 10/26/05, Battershall, Jeff mailto:[EMAIL PROTECTED][EMAIL PROTECTED] wrote: Spike, Thanks! Why should we have to do such a kludgy workaround, though? Why can't we

[flexcoders] Non-Public Constructors was Implementing ModelLocator pattern in AS3/Flex2

2005-10-26 Thread Jeff Tapper
, internal, and private. At 12:32 PM 10/26/2005, you wrote: You can’t call super() when the superclass constructor is not accessible to you… -- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Tapper Sent: Wednesday, October 26, 2005 9:31 AM To: flexcoders

RE: [flexcoders] Can't Seem to removeNode properly from a Tree!

2005-10-26 Thread Jeff Conrad
in 1.5 2.0 looks like it might be a big rewrite). Maybe someone else knows a better way to accomplish that. Hope that helps/works, Jeff From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young Sent: Wednesday, October 26, 2005 6:48 PM

Re: [flexcoders] Date class question

2005-10-25 Thread Jeff Tapper
Take a look at my blog, I wrote a DateAdd for ActionScript class. http://jeff.mxdj.com/dateadd_for_actionscript.htm At 12:05 PM 10/25/2005, you wrote: What is the easiest way to add 7 days to current day that is a flex's action script Date object? Thank you -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Flex 2 Alpha huge output swf

2005-10-17 Thread Jeff Whatcott
Check out this and other known issues here: http://labs.macromedia.com/wiki/index.php/Flex:known_issues Jeff Whatcott -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kosirm2000 Sent: Monday, October 17, 2005 2:51 AM To: flexcoders

RE: [flexcoders] Me go to MAX alone. you be my friend?

2005-10-14 Thread Hindman, Jeff
Gonna be a ton o fun! Name: Jeff Hindman Nationality : American Age: Getting older every day ... Currently: Building enterprise RIAs for Boeing; convincing co-workers that there's a whole world beyond Visual Basic and Perl See you there :) From: Kelly

[flexcoders] Harley-Davidson Customizer Live with Flex

2005-10-10 Thread Jeff Whatcott
Check it out at: http://www.harley-davidson.com/pr/gm/customizer/launchCustomizer.asp Congratulations to the team at WhitmannHart for creating this beautiful Flex app. Jeff Whatcott -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

RE: [flexcoders] Re: Harley Davidson Flex app launched

2005-10-08 Thread Jeff Tapper
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Tapper Sent: Friday, October 07, 2005 1:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Harley Davidson Flex app launched More than a year after its completion, the Harley

[flexcoders] Harley Davidson Flex app launched

2005-10-07 Thread Jeff Tapper
More than a year after its completion, the Harley Davidson Genuine Motor Accessories customizer was finally launched.Check it out: http://www.harley-davidson.com/pr/gm/customizer/launchCustomizer.asp Yahoo! Groups Sponsor ~-- Fair play? Video

RE: [flexcoders] Re: Flex or Flash, opinions?

2005-10-06 Thread Battershall, Jeff
of thing. It doesn't replace Flash, it is just a better way to accomplish that sort of thing than Flash. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Johnson Sent: Thursday, October 06, 2005 3:45 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] Examples source

2005-10-03 Thread Jeff Tapper
Install flex with the samples and look in your samples directory. The source is there. In my local install, I have the explorer.mxml file here: C:\Program Files\Macromedia\Flex15\jrun4\servers\default\samples\explorer At 08:41 AM 10/3/2005, devnullesp wrote: I need the example source:

Re: [flexcoders] Can someone please make a simple Amazon search application?

2005-10-01 Thread Jeff Tapper
I just put together an example on my blog. You can find it here: http://jeff.mxdj.com/using_amazons_itemsearch_webservice_from_flex.htm At 05:46 PM 10/1/2005, pioplacz wrote: Hi! I have now tryed for few days to get my amazon app. running. But got so mad so i deleted all files cause the result

RE: [flexcoders] flex has watch?

2005-09-27 Thread jeff tapper
Do you mean watch as in some form of time control, or watch, as in Object.watch() an actionScript method? If the former, its not available, if the latter, sure, that should work At 06:39 PM 9/27/2005, you wrote: Flex has DateChooser and DateField controls for choosing a date, but it doesn't

RE: [flexcoders] Really basic ActionScript question.

2005-09-22 Thread jeff tapper
Take a look at my blog (jeff.mxdj.com) I have a dateadd for actionscript there. Sent with Wireless Sync from Verizon Wireless Original Message From: delaquae [EMAIL PROTECTED] Date: 9/22/05 3:14 pm To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Subj: [flexcoders] Really

Re: [flexcoders] Comparing Structure Elements - Not Working **SPAM**

2005-09-16 Thread jeff tapper
try this = var SelectionList:Array = new Array(); var isNew:Boolean = true; function addfromIS():Void { var SrcItem = IS_RESULTS.dataProvider.getItemAt(IS_RESULTS.selectedIndex); if (SelectionList.length0) { for (var i = 0; iSelectionList.length; i++) {

RE: [flexcoders] How to pass value selected from combo box to my Java class method

2005-09-16 Thread Battershall, Jeff
parameter to that value such as {item.selectedItem.data} HTH, Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sandip_patil01 Sent: Friday, September 16, 2005 2:16 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to pass value

Re: [flexcoders] How to properly use dispatchEvent

2005-09-15 Thread jeff tapper
I wrote an EventManager for just this reason. You can find its source and use up on http://jeff.mxdj.com/using_the_event_manager.htm At 09:50 AM 9/15/2005, you wrote: Yeah, interesting question. Maybe you will just need to add your own listener!? So grandparent will be listen for events from

Re: [flexcoders] Looping over a tree and selecting an entry

2005-09-14 Thread jeff tapper
I believe that is correct. On my blog, I have a script to open all the nodes of a tree, which i usually do before preselecting one. You can find the function openTree in my article Disabling a Tree Node in a Flex Tree Control here:

Re: [flexcoders] Why Canvas don't work?

2005-09-07 Thread Jeff Tapper
Igor - your code still doesnt have the methods doDragEnter, doDragOver, doDragDrop and doDragExit all of which are referenced in your list boxes.  If you have references to those methods, they must exist.-- Jeff Tapperjeff.mxdj.comQuoting Igor Costa [EMAIL PROTECTED]: Ashish The same problem

RE: [flexcoders] Another Proxy? PHP?

2005-09-01 Thread Jeff Conrad
it, let me know and I’ll put the updated version up there. Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of heybluez Sent: Thursday, August 11, 2005 5:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Another Proxy? PHP

[flexcoders] Flex logging

2005-09-01 Thread Jeff Krueger
on log4j do I need to setup something in the log4j.properties file? Thanks Jeff Krueger -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO

RE: [flexcoders] How come this code does not work

2005-08-30 Thread Battershall, Jeff
to store. public function storeName(s:String) {mySO.data.name =s; mySO.flush();} mx:Button label="Store Name" click="fna.storeName(fnewview.ti1.text)" / Jeff -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PRO

RE: [flexcoders] How come this code does not work

2005-08-30 Thread Battershall, Jeff
updates their name, welcomeMessage in your class must also be updated for the label text to change. public function storeName(s:String) {mySO.data.name =s; mySO.flush(); welcomeMessage = "Hello " + getName();} Jeff -Original Message-From: flexcoders@yahoogroups.com [mai

Re: [flexcoders] Re: Calling a webservice solely through AS

2005-08-29 Thread Jeff Tapper
for the reply, I will need to read it a few times to try and mimic your approach, but all this information is most appreciated. Quite a shame that Macromedia doesn't support WS calls through actionscript though... --- In flexcoders@yahoogroups.com, Jeff Tapper [EMAIL PROTECTED] wrote: Officially, I

Re: [flexcoders] Re: Loading classes

2005-08-26 Thread Jeff Tapper
Above and beyond that, there are a few bugs which need to be fixed. 1. Case Sensitivity - DrawIcons has properties xValue and yValue, but yet the constructor references Xvalue and YValue 2. Scope issues. - DrawIcons has no concept of MyCanves (referenced in createSquare()). By adding an

RE: [flexcoders] Question about passwords

2005-08-17 Thread Battershall, Jeff
Title: Message You have to set password="true" in your TextInput declaration. Jeff -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Wednesday, August 17, 2005 1:11 PMTo: flexcoders@yahoogroups.

RE: [flexcoders] Repeater Question

2005-08-17 Thread Battershall, Jeff
as binding sources at runtime. Binding copies initial values during instantiation after variables are declared in an mx:Script tag, but before initialize handlers are executed. Jeff -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mehdi

RE: [flexcoders] can flex build dynamic form

2005-08-15 Thread Battershall, Jeff
Yes. The Repeater tag offers this sort of functionality. Building each element to render the correct number of input fields would be encapsulated in the object itself, depending on its type. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

Re: [flexcoders] custom data grid solution

2005-08-15 Thread jeff tapper
sounds like a job for 2 custom cell renderers. Take a look at the CheckCellRenderer example (i think its in the docs) for syntax At 12:47 PM 8/15/2005, cruegger2000 wrote: I have a requirement for a custom data grid: 1. 1st column will be a link value. you click on it and it takes you to a

[flexcoders] Seattle Based Flex User Group

2005-08-14 Thread Jeff Steiner
I have been asked to find out if anyone might be interested in participating in a Seattle area Flex User Group. Please send me an email off the list if this is something that you would be interested in. Thanks, Jeff [EMAIL PROTECTED] Founder Flex Authority http

RE: [flexcoders] Combobox troubles

2005-08-12 Thread Battershall, Jeff
Reto, Just wondering whether a combo box is the best solution - all by itself. Why not show a text input and hide your combo box when appropriate selections are made in combo box 1? And do the reverse if they select business type. I would think users would tolerate that a bit better. Jeff

RE: [flexcoders] Calling ArrayStructures in CFCs from Flex

2005-08-11 Thread Battershall, Jeff
mystified at the problem you're experiencing. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Malcolm Sent: Wednesday, August 10, 2005 7:48 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Calling ArrayStructures in CFCs from Flex Hi

RE: [flexcoders] StringValidator and required fields

2005-08-10 Thread Battershall, Jeff
,paymentInformationModel.purchaseordernumber); } else ... } Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Blake Kadatz Sent: Wednesday, August 10, 2005 1:39 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] StringValidator

[flexcoders] Tile Container white space

2005-08-09 Thread Battershall, Jeff
I'm using a Tile container along with a Repeater to layout some CheckBoxes using a dataprovider. Below my group of checkboxes, I've got some white space that I cannot seem to get rid of. I've tried marginBottom=0, etc to no avail. Anyone gotta clue? Jeff Battershall Application Architect Dow

RE: [flexcoders] Tile Container white space

2005-08-09 Thread Battershall, Jeff
Thanks, Tracy - tried that. I was using Grid/GridItem, and I was getting no whitespace, but Tile is easier from the vantage point of the layout logic - it handles all layout issues but the whitespace seems to be the caveat. Jeff -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Passing variables into an alert handler

2005-08-03 Thread Jeff Beeman
Hmm... looks interesting. I'll give it a shot, thanks! /** * Jeff Beeman **/ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Tuesday, August 02

RE: [flexcoders] Flex Install on IIS

2005-08-03 Thread Battershall, Jeff
-ear\cfusion-war\WEB-INF\flex\user_classes. You can change this location by editing flex-config.xml. Jeff -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mehdi, AghaSent: Wednesday, August 03, 2005 12:45 PMTo: flexcoders

RE: [flexcoders] Re: flex with coldfusion cfc's

2005-07-29 Thread Battershall, Jeff
properties that can be bound to the form fields - and vice versa. When I wish to update/insert the information in my database, it is then only necessary to pass my model as an object to a delegate class which does my updating for me. Jeff -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: flex with coldfusion cfc's

2005-07-29 Thread Battershall, Jeff
ot;{strCompanyName.text}"strAddress="{strAddress.text}"strAddress2="{strAddress2.text}"strPostalCode="{strPostalCode.text}"strCity="{strCity.text}"strProvince="{strProvince.text}"strPhone="{strPhone.text}"strFax="{strFax.text}"i

RE: [flexcoders] Re: Flex and Databases

2005-07-28 Thread Jeff Steiner
You can actually connect directly to SQL server by turning on the web listener and pass your SQL statements in an HTTP request. It is pretty easy to do and reduces the overhead of another layer. Jeff Founder Flex Authority http://www.flexauthority.com We are actively

[flexcoders] Encode media files to FLV in real-time from a web page

2005-07-28 Thread Jeff Steiner
://www.flexauthority.com/articlesArchive/FlixEngine.cfm Let me know what you think. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share with the world? Send it to us! -- Flexcoders Mailing List

Re: [flexcoders] Form Control focus and Default Button

2005-07-28 Thread Jeff Tapper
I've got it working, just made a few changes to your code: * I got a handle on the focus manager before setting focus * defaultButton as attribute of Form, not panel. Otherwise, all is well. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;

RE: [flexcoders] Form Control focus and Default Button

2005-07-28 Thread Jeff Tapper
That might require a bit of javaScript to make sure the browser has focus, im not sure that there is much you could do within flex to get that. At 12:52 PM 7/28/2005, you wrote: Jeff, Thanks so much for this. Is there any way that I can set it up so I don't need to click - in to the page. So

Re: [flexcoders] XML Load

2005-07-28 Thread Jeff Tapper
Sounds like a scoping issue, try this instead: public function loadPLMS():Void{ tacticsXML.load( URL ); tacticsXML.onLoad = mx.utils.Delegate.create(this,doLoad); } function doLoad( success ) { if(success){ Alert.show( tacticsXML.parentNode.toString()

RE: [flexcoders] sound problem: onSoundComplete

2005-07-28 Thread Jeff Tapper
I'm having no problems with this. To test, just replace the url variable with some local sound on your machine. One key difference to note, im using loadSound rather than attachSound. Not sure why that matters, but it might ?xml version=1.0 encoding=iso-8859-1? mx:Application

Re: [flexcoders] sound problem: onSoundComplete

2005-07-28 Thread Jeff Tapper
+= stopping now; } ]] /mx:Script mx:Label id=feedback / /mx:Application At 03:15 PM 7/28/2005, you wrote: loadSound will load an mp3 file external to the SWF. attachSound will play a sound that has been embedded in the SWF file. - Original Message - From: Jeff Tapper

Re: [flexcoders] sound problem: onSoundComplete

2005-07-28 Thread Jeff Tapper
as local vars. While this is nice to save on member variables, no one knows what the heck garbage collection does with them, so doing things your way is recommended. ...still, I have in the past gotten onSoundComplete to work via a local var so not sure... - Original Message - From: Jeff

RE: [flexcoders] Encode media files to FLV in real-time from a web page

2005-07-28 Thread Jeff Steiner
I figured that I would bump this one more time for the night owls. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share with the world? Send it to us! From: flexcoders

[flexcoders] Form visibility question

2005-07-27 Thread Jeff Beeman
favorite fruit: () Apples () Oranges () Lemons (*) Other Please describe other: - | | - Choose your favorite car: () Chevy () Ford () Toyota /*** * Jeff Beeman * Digital Media

Re: [flexcoders] Is there a certification test that can be taken

2005-07-25 Thread Jeff Tapper
Macromedia Training has a process to certify instructors for all of their courses, including the Flex courses, as part of the MATP (Macromedia Authorized Training Partner) program. You can find more about the MATP program here:

Re: [flexcoders] Is there a certification test that can be taken

2005-07-25 Thread Jeff Tapper
, they have created or updated close to a dozen different courses, so they are awfully busy. At 06:49 PM 7/25/2005, you wrote: Thanks Jeff, Now, if there is a Flex training program... why isn't there a developer certification exam yet? On 7/25/05, Jeff Tapper [EMAIL PROTECTED] wrote: Macromedia

RE: [flexcoders] Looking for a consistent way to close the current browser window in Flex

2005-07-21 Thread Jeff Steiner
Is there a better way of doing this? Jeff From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeff Steiner Sent: Tuesday, July 19, 2005 9:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Looking for a consistent way to close

RE: [flexcoders] Flex and CFCs -- problems displaying recordsets in datagrids

2005-07-21 Thread Jeff Steiner
When returning data from a CFC most of the time it changes the name to all caps. For example: SELECT Stuff FROM Table Cfreturn query Output it as: event.result[0].STUFF; Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors

[flexcoders] ASDoc of createComponent()?

2005-07-20 Thread Jeff Tapper
I've been looking for the ASDoc on the createComponent and/or createComponents() methods, but havent been able to find them. I'd assumed they were methods of Container, but I cant find it there. Does this exist in ASDoc and I'm just missing it, was it an intentional ommision, or just a bug?

Re: [flexcoders] ASDoc of createComponent()?

2005-07-20 Thread Jeff Tapper
://livedocs.macromedia.com/flex/15/flex_docs_en/1006.htm i find it helpful to use a wildcard (*) when searching livedocs On 7/20/05, Jeff Tapper mailto:[EMAIL PROTECTED][EMAIL PROTECTED] wrote: I've been looking for the ASDoc on the createComponent and/or createComponents() methods, but havent been able to find

RE: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-19 Thread Jeff Steiner
to save $1000. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share with the world? Send it to us! From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rick

RE: [flexcoders] extra 2-cpu license

2005-07-19 Thread Jeff Steiner
Careful about reselling that might want to check with your Account Manager first. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share with the world? Send it to us! From

RE: [flexcoders] Longhorn Impact

2005-07-19 Thread Jeff Steiner
I cant imagine it would. From a developers perspective, are you going to want to create an application that is available to ~50% of Windows installs 6 years after it debuts? Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors

[flexcoders] Looking for a consistent way to close the current browser window in Flex

2005-07-19 Thread Jeff Steiner
, Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share with the world? Send it to us! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

RE: [flexcoders] MenuBarItem label.

2005-07-14 Thread Jeff Krueger
THANK YOU, as you might guess, I would have never got that. Jeff From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin Sent: Wednesday, July 13, 2005 11:24 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] MenuBarItem

[flexcoders] MenuBarItem label.

2005-07-13 Thread Jeff Krueger
(currentMenu.id); mx.core.Application.alert(currentMenu.value.toString()); } Any suggestion would be much appreciated. Thanks Jeff -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com

RE: [flexcoders] Flex w/ apachecfmx7

2005-07-09 Thread Jeff Steiner
Did you add the mxml and swf file extensions to the AddHandler tag? And it goes in your WEB-INF folder. I extract it for JRun, but YMMV. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want

RE: [flexcoders] getDropParent() when the branch is closed.

2005-07-08 Thread Jeff Krueger
Unfortunately I just tried to do something like this. The itemRollOver doesnt fire when you are dragging over a itemL Jeff From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin Sent: Thursday, July 07, 2005 10:54 PM

[flexcoders] getDropParent() when the branch is closed.

2005-07-07 Thread Jeff Krueger
++) { targetForDrop.addTreeNode(test,dragItems[i]); tree.setIsOpen(targetForDrop, true); tree.selectItem(targetForDrop, true); } } Thanks Jeff -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail

Re: [flexcoders] add / remove item in a Tile directly

2005-07-06 Thread Jeff Tapper
give a look at createChild() At 04:49 PM 7/6/2005, you wrote: Am using Tile not TileList ...is there an equivalent of addItem for the Tile component ? - superabe - Original Message - From: Manish Jethani [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 06, 2005

[flexcoders] Macromedia Flex contracts a plenty!

2005-07-06 Thread Jeff Steiner
I thought that I would bring up the Flex Jobs topic in the forums of Flex Authority. I am seeing probably 4-5 Flex jobs a week on the major job search engines! If you are interested, take a peek at http://www.flexauthority.com/forumThreadList.cfm?topicID=12. Jeff Founder Flex

Re: [flexcoders] parseDateString bug ???

2005-07-03 Thread Jeff Tapper
parseDateString is a static method. Try this instead: Dumper.info(PARSING DATE- + mx.formatters.DateFormatter.parseDateString(07/05/2005 11:00 AM)); At 01:32 PM 7/3/2005, Shlomi Cohen wrote: Hi i have the following code , mx:DateFormatter id=df formatString=MM/DD/ /

[flexcoders] Object.registerClass reverse lookup

2005-06-28 Thread Jeff Krueger
= Object.findClass(com.foo.test); Maybe??? Thanks Jeff -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS LINKS Visit your group

[flexcoders] Turning on / off display of chart series

2005-06-28 Thread Jeff Beeman
similar on Flex Authority, but it simply modifies the requested information from a service to not include information that isnt requested. Ive already got the information, and I just want to hide and unhide its display. /*** * Jeff Beeman * Digital Media

RE: [flexcoders] Turning on / off display of chart series

2005-06-28 Thread Jeff Beeman
Doh. Thats the reply I was hoping to not hear. Can I submit my feature request for v2 now? It just seems to be a fairly obvious thing users would want to do. /** * Jeff Beeman **/ From

RE: [flexcoders] Object.registerClass reverse lookup

2005-06-28 Thread Jeff Krueger
to get and instance of an actionScipt class. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Tuesday, June 28, 2005 2:39 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Object.registerClass reverse lookup

RE: [flexcoders] Installing Flex CF

2005-06-28 Thread Jeff Steiner
You are right in saying that it has to be something else - but when I encountered similar issues - I switched to apache and it has worked just fine. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share

[flexcoders] Caching of SWFs in production mode

2005-06-27 Thread Battershall, Jeff
restarting the instance entirely. What would be nice is the ability to refresh the Flash content without re-starting CF/Flex. Any ideas? Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609) 520-5637 (p) (484) 477-9900 (c) -- Flexcoders Mailing List FAQ: http

RE: [flexcoders] Installing Flex CF

2005-06-26 Thread Jeff Steiner
. Is that what you are encountering? Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share with the world? Send it to us! -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

RE: [flexcoders] Installing Flex CF

2005-06-26 Thread Jeff Steiner
How odd. I will continue to ask around about this I have yet to hear back on it. I would recommend that, in the mean time, you install Apache and give that a whirl. That is what I had to do on my workstation. Jeff Founder Flex Authority http://www.flexauthority.com We

RE: [flexcoders] Get Audio from servlet

2005-06-25 Thread jeff tapper
One thinfg i've found with servlet created mp3's is that you need to provide a valid content-length header. Sent with Wireless Sync from Verizon Wireless Original Message From: JesterXL [EMAIL PROTECTED] Date: 6/24/05 1:10 pm To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com

RE: [flexcoders] Re: Installing Flex CF. Issues with RemoteObject

2005-06-23 Thread Jeff Steiner
should be able to run .jsp, servlets, cfm, cfc all from the same directory. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share with the world? Send it to us! From: flexcoders

[flexcoders] Jeff Showah is out of the office.

2005-06-22 Thread jeff . showah
I will be out of the office starting 06/22/2005 and will not return until 06/23/2005. I will respond to your message when I return. Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email

RE: [flexcoders] Charts!!!!!!!

2005-06-22 Thread Jeff Steiner
Have you taken a look at the charting examples from Christophe? http://flexapps.macromedia.com/flex15/chartexplorer/explorer.mxml Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want

RE: [flexcoders] CFMX7, Flex 1.5, IIS 6

2005-06-17 Thread Jeff Steiner
There is a great write-up by Jack Minster on Flex Authority. Check out: http://www.flexauthority.com/articlesArchive/FlexCF7Merge.cfm Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want

[flexcoders] Horizontal Axis Label Headaches

2005-06-17 Thread Battershall, Jeff
the heck do I override this behavior? Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609) 520-5637 (p) (484) 477-9900 (c) Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send

RE: [flexcoders] Re: Assigning a AS variable to the return value of a web service

2005-06-16 Thread Jeff Steiner
myString = event.result.message; Give that a try. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share with the world? Send it to us! From: flexcoders@yahoogroups.com

RE: [flexcoders] Http Service -- urgent

2005-06-13 Thread Jeff Steiner
There is one located here. Let us know if that doesnt help. http://www.flexauthority.com/samplesIndex.cfm?sampleID=9 Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share

[flexcoders] Getting client's IP address

2005-06-13 Thread Jeff Beeman
it? /*** * Jeff Beeman * Digital Media Instructional Technologies * Arizona State University ***/ Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/ To unsubscribe

RE: [flexcoders] Re: Getting client's IP address

2005-06-13 Thread Jeff Beeman
Thanks, all! I will let you know if one of these works for us, but they all sound like reasonable solutions :-) /** * Jeff Beeman **/ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Remoting peformance for large lists

2005-06-13 Thread Jeff Steiner
for him. Thanks, Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share with the world? Send it to us! From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt

RE: [flexcoders] Re: Getting client's IP address

2005-06-13 Thread Jeff Steiner
FYI: Someone contributed an example of this to the site this morning. I just posted it and you can find it: http://www.flexauthority.com/samplesIndex.cfm?sampleID=39 Let me know if that helps. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking

RE: [flexcoders] Digest Number 877

2005-06-12 Thread Jeff Steiner
There is a 'complete' event as part of the package. This event gets broadcast when the media has finished playing. You could set some script to load the next song when this fires. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have

RE: [flexcoders] Auto loading mediaController

2005-06-12 Thread Jeff Steiner
When you say that you change the autoplay properties to true where do you mean? In the mxml tag or in the script that is loading the music file. Also how are you loading the media? The medialPlayer.load() loads the media but does not play it. Mind sharing a bit more? Jeff

RE: [flexcoders] Flex / Flash / FlashComm, Remoting and CF

2005-06-10 Thread Battershall, Jeff
; Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz Sent: Friday, June 10, 2005 8:21 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex / Flash / FlashComm, Remoting and CF Yeah, It is always a good idea to create

RE: [flexcoders] https

2005-06-10 Thread Battershall, Jeff
Title: Message Steve, For that cert to work, you've got to import it into IE first, I'm pretty sure. Jeff -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve PruittSent: Friday, June 10, 2005 11:48 AMTo: flexcoders

[flexcoders] Need help with protecting FLVs

2005-06-07 Thread Jeff Steiner
as a proxy just for the Flex application. Worked fine as long as I was sitting inside the firewall ;) Any ideas would be great! Thanks, Jeff http://www.flexauthority.com Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe

Re: [flexcoders] Need help with protecting FLVs

2005-06-07 Thread Jeff Steiner
Kind of hard to justify Flash Comm Server price for a tech demo. Not that I would turn down a free copy if one was given to me. Jeff - Original Message - From: Abdul Qabiz [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, June 07, 2005 5:57 AM Subject: RE: [flexcoders

[flexcoders] Flex Eclipse discussion

2005-06-07 Thread Jeff Beeman
to be desired if I search for Eclipse, I can end up getting no results because it only searches the first 30 or so messages. So, in order to search the 16,500 messages Id have to click through a page at a time. Anyone know a way around this?) /*** * Jeff Beeman

RE: [flexcoders] Flex Eclipse discussion

2005-06-07 Thread Jeff Beeman
Ah, this is perfect, thank you! For those who need the link to the Flexcoders The Mail Archive here it is: http://www.mail-archive.com/flexcoders@yahoogroups.com/ /** * Jeff Beeman

RE: [flexcoders] Flex Eclipse discussion

2005-06-07 Thread Jeff Beeman
I think what I was actually looking for was a news posting I read a while ago I found it at everythingflex.com heres the link: http://www.everythingflex.com/blog/1/2005/05/Eclipse-for-Flex-Development.cfm /** * Jeff Beeman

RE: [flexcoders] Re: Tree dataProviders backingObject

2005-06-06 Thread Jeff Beeman
are treated as nodes, unless the array is called data, in which case it is treated as the data for the node. Sounds simple too me on paper... but I realize it could end up being a major headache - thoughts before I begin? /** * Jeff Beeman

[flexcoders] More interesting than Zorn?

2005-06-06 Thread Jeff Steiner
/. Take a look at the videos and the different PDFs. Jeff http://www.flexauthority.com Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] * Your use of Yahoo

RE: [flexcoders] Flash Remoting DataGlue equivalents for Flex?

2005-06-05 Thread Jeff Tapper
Mike All the properties of the object you bind into the comboBox are available, so if you have an object with properties name, address, city state and zip, and have the labelField set to name, you can still access myCombo.selectedItem.city, etc. At 10:58 PM 6/4/2005, you wrote: Thanks guys!

<    5   6   7   8   9   10   11   12   >