RE: [flexcoders] FDS NullPointerException

2006-07-27 Thread Jeff Vroom
is returning null. Since previously you returned a ClientVO which had its Info property set to a ClientInfoVO that had infoId=1, we would expect to have this method return a valid ClientInfoVO instance. Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dreuimar Sent

[flexcoders] Tools for listing objects

2006-07-26 Thread jeff tapper
Does any one know of a tool like OptimizeIt! for java, or like List Objects in Flash Studio for finding all objects currently in existance? We are looking to verify that we have truely cleaned up objects no longer in use, and released them to the GC, but without a tool like this, we cant tell

[flexcoders] Re: Tools for listing objects

2006-07-26 Thread jeff tapper
) trace(Application.application.getChildren().toString()); hth, matt horn flex docs -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jeff tapper Sent: Wednesday, July 26, 2006 10:22 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Re: Tools for listing objects

2006-07-26 Thread jeff tapper
in there? Is there a more elegant solution? --- In flexcoders@yahoogroups.com, jeff tapper [EMAIL PROTECTED] wrote: Matt- Your solutions didnt work for me, I suspect its because all the children we create/destroy in this app are done via the popup manager. Regardless how many children we created that way, I'm

[flexcoders] Re: Tools for listing objects

2006-07-26 Thread jeff tapper
Ok, heres a sketch of what im trying now. App.mxml ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=initApp() mx:Script ![CDATA[ import mx.managers.PopUpManager;

RE: [flexcoders] Re: one-to-one DS mappings

2006-07-26 Thread Jeff Vroom
snippet which tries to fetch the client.info property on your own to make sure that ItemPendingError is thrown to ensure the problem is not in the evaluation of the binding _expression_. Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dreuimar Sent: Wednesday

RE: [flexcoders] Update with one-to-one lazy DataServices

2006-07-26 Thread Jeff Vroom
. With DataService.* debug logging enabled, the server will log the stack trace and that should help track down the problem. If you send in the message debug log, it will likely contain more clues as to what is going on too. Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

Re: [flexcoders] Re: has anyone ever disabled selectability for a textArea??

2006-07-25 Thread Jeff Tapper
did you declare an xml namespace for it in the mxml page which calls it? something like xmlns:view=* At 05:47 PM 7/25/2006, you wrote: package { import mx.controls.TextArea; class MyTextArea extends TextArea { protected override function

RE: [flexcoders] Still Fuzzy about Flex 2.0 and CFCs

2006-07-24 Thread Battershall, Jeff
OK, gotcha, but I suppose the other issue is what version of AMF is availble server-side. I'm getting the impression that AMF3 is necessary both on the client and server in Flex 2.0 - am I right about that? Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Still Fuzzy about Flex 2.0 and CFCs

2006-07-24 Thread Battershall, Jeff
Jessie, When you say, talking to the old sucks from a client-side perspective are we talking performance or the ability to pass custom objects or what? Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Monday, July 24, 2006 12

RE: [flexcoders] Still Fuzzy about Flex 2.0 and CFCs

2006-07-24 Thread Battershall, Jeff
for this project. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Monday, July 24, 2006 12:46 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Still Fuzzy about Flex 2.0 and CFCs Ability to pass custom objects. I've

RE: [flexcoders] Still Fuzzy about Flex 2.0 and CFCs

2006-07-24 Thread Battershall, Jeff
Jessie, Thanks for the clarification. What I do not see in the Flex2 docs is the ability to use Remote object without FDS. Would you have to write your own custom class to do your remoting calls? I've done such in Flash. Jeff -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Still Fuzzy about Flex 2.0 and CFCs

2006-07-24 Thread Battershall, Jeff
by creating a custom AS class to persist the created service and re-use it repeatedly. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Monday, July 24, 2006 1:18 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Still Fuzzy

Re: [flexcoders] Reference to View Stack Failing

2006-07-24 Thread Jeff Tapper
it would probably be helpful if you sent a larger snippet of code. the error implies the view stack hasnt been created at the time the whatsNext method is called. So, this inherently leads to a few questions... How is the ViewStack instantiated? Is it a direct child of the Application? Is

Re: [flexcoders] Reference to View Stack Failing

2006-07-24 Thread Jeff Tapper
Rob - I was looking for an example of what Ethan was doing which wasnt working :) At 04:02 PM 7/24/2006, Rob Rusher wrote: Sample: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxmlhttp://www.adobe.com/2006/mxml; xmlns:demand=components.*

[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-21 Thread jeff tapper
I'm running into a similar issue. I can tell you that the height of the dead space is directly related to the header height of the Panel (or title window in your case). To prove this out, try adding headerHeight=100 to the root titleWindow tag. --- In flexcoders@yahoogroups.com, Pan

[flexcoders] creationPolicy=all for view states?

2006-07-21 Thread jeff tapper
Is there an equivilent to creationPolicy=all for view states? I'd love to have the ability to have all the child elements in a view automatically created in the few times when i need them to be, much like we can do with creationPolicy for viewStacks Yahoo! Groups

[flexcoders] Re: creationPolicy=all for view states?

2006-07-21 Thread jeff tapper
nevermind, i found it. mx:AddChild position=lastChild creationPolicy=all --- In flexcoders@yahoogroups.com, jeff tapper [EMAIL PROTECTED] wrote: Is there an equivilent to creationPolicy=all for view states? I'd love to have the ability to have all the child elements in a view

Re: [flexcoders] what is wrong with this code?

2006-07-18 Thread Jeff Tapper
Try mx:Label x=10 y=316 text=[EMAIL PROTECTED] width=169/ At 08:29 AM 7/18/2006, arnold_charming wrote: Hi! I'm having difficulties to find out what is wrong with this code. Please help me out. Kategorije.mxml --- ?xml version=1.0 encoding=utf-8? mx:Panel

RE: [flexcoders] Adobe Resources

2006-07-18 Thread Hindman, Jeff
Is there a PDF available of this doc to download? Thanks -- -- Jeff Hindman -Original Message-From: JesterXL [mailto:[EMAIL PROTECTED]Sent: Monday, July 17, 2006 11:54 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Adobe Resources This one works

[flexcoders] deleting a node with e4x

2006-07-14 Thread Jeff Tapper
does anyone know the syntax to remove a particular node from an xml object using e4x? Working with a structure like this, I want to be able to remove one node. Is the only approach to get a handle on the subpart node and set its children without the first subsection? I'm thinking there must

Re: [flexcoders] Re: deleting a node with e4x

2006-07-14 Thread Jeff Tapper
thanks! At 09:34 AM 7/14/2006, you wrote: Use the delete operator. delete report.part[1].subpart[0].subsection[0]; --- In mailto:flexcoders%40yahoogroups.comflexcoders@yahoogroups.com, Jeff Tapper [EMAIL PROTECTED] wrote: does anyone know the syntax to remove a particular node from an xml

RE: [flexcoders] Spring Enable Flex

2006-07-13 Thread Jeff Tapper
We are using spring to manage the classes flex interacts with on one of our projects. At 04:13 PM 7/13/2006, Allen Riddle wrote: I’m not having any issues, it’s just nice because it’s one less configuration format to learn. -- From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] Pagination feature in Flex 2

2006-07-11 Thread Jeff Tapper
That feature is built into FDS At 07:41 AM 7/11/2006, tinywhistles wrote: Hi Does Flex 2 provide pagination support in the UI? For eg. there is a huge amount of data coming from the server, and I need to display them in chunks of ten at a time on the UI. Is there any out-of-the-box component

[flexcoders] FileReference and mimetypes

2006-07-10 Thread Jeff Tapper
I'm finding that when i use file reference to upload a gif to the server, the php script which receives it thinks its an Application/Octet-Stream, rather than image/gif. However, if i upload the same gif through an html interface, the php script properly interprets it as an image/gif. Is this

Re: [flexcoders] FileReference and mimetypes

2006-07-10 Thread Jeff Tapper
to disable my mimetype checks in php to allow the flex uploads. At 08:57 AM 7/10/2006, Clint Tredway wrote: I am using PHP to upload images to the server and it works just fine :) On 7/10/06, Jeff Tapper mailto:[EMAIL PROTECTED][EMAIL PROTECTED] wrote: I'm finding that when i use file reference

Re: [flexcoders] FileReference and mimetypes

2006-07-10 Thread Jeff Tapper
2006 14:33, Jeff Tapper wrote: script detect the proper mimetype, which I'd like to use to prevent malicious uploads. Ideally, I'm looking to use the same server side code Isn't the MIME type set by the client, and therefore is untrusted ? -- Tom Chiverton

RE: [flexcoders] Re: FDS on CFMX configuration problems

2006-07-09 Thread Jeff Tapper
You will want something like this: mx:Script private function initApp():void{ // Create a Channel. var customChannel:Channel = new AMFChannel(my-cfamf, http://localhost:8500/flex2gateway/;); // Add the Channel to the ChannelSet. cs.addChannel(customChannel);

Re: [flexcoders] titleBar in TitleWindow (Panel) class

2006-06-16 Thread Jeff Tapper
Try adding it to the rawChildren of the Panel, rather than directly to the titleBar. I've got an example of doing that here: http://jeff.mxdj.com/flex_2_maxrestorepanel_class.htm At 10:21 AM 6/16/2006, Jim Robson wrote: When subclassing the TitleWindow class, shouldn't it be possible to add a

RE: [flexcoders] titleBar in TitleWindow (Panel) class

2006-06-16 Thread Jeff Tapper
Ah yeah, i probably still have a beta 2 build of it up there. I just dropped a b3 version of it here: http://flex2.tapper.net/flex2Demos/maxRestorePanel/Test_Panel.swf At 10:47 AM 6/16/2006, you wrote: Jeff: I think my Flash player must have become corrupted: when I try to view your sample

Re: [flexcoders] Searching through an array collection

2006-06-13 Thread Jeff Tapper
Take a look at the IViewCursor interface... private function getItemInCart(item:ShoppingCartItem):ShoppingCartItem{ cursor = aItems.createCursor(); sortItems(); var itemToFind:Object = new Object(); itemToFind.product = item.product; ar found:Boolean =

Re: [flexcoders] context-menu in flex...

2006-06-13 Thread Jeff Tapper
I've always dealt with leaving the miniumum information in the context menu, since the items you add appear first. Also, if you use the hideBuiltInItems() method, there are only 4 built in items which appear with what you add. At 10:57 AM 6/13/2006, you wrote: Hi everyone, OK, I really need

Re: [flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Jeff Tapper
Take a look at the resizable panel: http://jeff.mxdj.com/sizeabletitlewindow.htm and panel with buttons:http://jeff.mxdj.com/flex_2_maxrestorepanel_class.htm for some ideas. At 11:25 AM 6/9/2006, jpwarmer wrote: Hi, i did something like that with the Panel Class, let me tell you what I did...

[flexcoders] Flex 1.5 Custom AssetRenderer

2006-06-02 Thread Battershall, Jeff
given that there's only only one pointRenderer for each line series. 2) Data point instances that can be containers for data and fire events with that data to some event handler in the movie. Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609) 520-5637 (p) (484) 477-9900

Re: [flexcoders] Skinning components

2006-05-31 Thread Jeff Tapper
Try adding the Bindable metadata tag to it. [Bindable] [Embed(source=library.swf, symbol=loginDetails_mc)] private var loginDetails:String; [Bindable] [Embed(source=library.swf, symbol=createAccount_mc)] private var createAccount:String; At 08:54 AM 5/31/2006, you wrote: Hey, I'm following

Re: [flexcoders] Easy Noobie Question...Datagrid counting rows

2006-05-30 Thread Jeff Tapper
rowCount is the number of visible rows in a datagrid. if you want to know how many rows of data are in the data provider, you should use dg.dataProvider.length At 12:26 PM 5/30/2006, you wrote: Hi all - does anyone know how to count the rows in a dg that are populated with data? Getting

Re: [flexcoders] Styling at runtime

2006-05-23 Thread Jeff Tapper
try using myTree.setStyle(styleName,newStyle); At 11:12 AM 5/23/2006, you wrote: Hi, I'm trying to create a treeview that acts a bit like Windows Explorer. Meaning no style is applied when an item is unselected, but on rollover the text gets underlined, and the selected item gets a blue

Re: [Norton AntiSpam] Re: [flexcoders] Borderless Button Component

2006-05-16 Thread Jeff Tapper
I think you could use ProgramaticSkin as the various skins, which is still a valid skin, but which does not have a border. At 03:26 PM 5/16/2006, you wrote: Hi, This is a hack but works quick... make a var ; public var nullSkin:Class me.setStyle(upSkin, nullSkin); me.setStyle(overSkin,

[flexcoders] Reporting options

2006-05-12 Thread Jeff Krueger
in advance. 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! GROUPS LINKS Visit your group "flexcoders" on the web. To u

Re: [flexcoders] Reporting options

2006-05-12 Thread Jeff Krueger
I am not sure how to attach the old posting from the group in Yahoo mail. If you do a search in the flex coder group. The title of the email is FB2 :: Flex printing on 4/2/06. Jeff- Original Message From: Tom Chiverton [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Friday, May 12

Re: [flexcoders] Reporting options

2006-05-12 Thread Jeff Krueger
Any chance to see the source code for that little app. Seems kind of like what I am wanting to do. Thanks Jeff - Original Message From: Bill Sahlas [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Friday, May 12, 2006 9:53:06 AMSubject: RE: [flexcoders] Reporting options Hi

Re: [flexcoders] Reporting options

2006-05-12 Thread Jeff Krueger
. Then there is also a need for more formal reporting of yearly revenue by location. More summary reports that would be suited for a pdf generation or something like a cystal reports tool. Adobe livecycle looks really cool, but might be a little large for what I need to do. Thanks for all you input. Jeff

Re: [flexcoders] Reporting options

2006-05-12 Thread Jeff Krueger
actually I found the code example. Thanks Jeff - Original Message From: Jeff Krueger [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Friday, May 12, 2006 12:20:13 PMSubject: Re: [flexcoders] Reporting options Any chance to see the source code for that little app. Seems kind

Re: [flexcoders] Access datagrid items

2006-05-09 Thread Jeff Tapper
you can iterate over the dataprovider of the datagrid. At 12:00 PM 5/9/2006, you wrote: Hi, one doubt: how do i acess a datagrid items? I want to iterate through its items to do many things, such as get some column value specifically at row-level, or send that data through HTTPService. I´ve

Re: [Norton AntiSpam] [flexcoders] Flex2 - Asynchronous Completion Token

2006-03-29 Thread Jeff Tapper
Take a look at the makeRemoteCall() method of the DataManager class I wrote (http://jeff.mxdj.com/as3_datamanager.htm). This does the flex 2 version of what you are looking for. At 06:51 AM 3/29/2006, bhaq1972 wrote: This is another one of those questions 'i could do this in flex1.5 but now

RE: [flexcoders] RE: ExternalInterface and IFrame

2006-03-28 Thread Battershall, Jeff
Tony, I was able to re-create the behavior you've noted, but was able to get the disappearing Iframe to stop in IE when I added wmode=opaque to the name-value pairs being passed to AC_FL_RunContent in index.template.html. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto

[flexcoders] DateTime Axis - Is the Jury Stil Out or Maybe I just don't get it

2006-03-24 Thread Battershall, Jeff
in the X Axis. Note that with major help from Peter Ent, I was able to create a custom DateTime Axis that did what I wanted in Flex 1.5. Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609) 520-5637 (p) (484) 477-9900 (c) -- Flexcoders Mailing List FAQ: http

RE: [flexcoders] DateTime Axis - Is the Jury Stil Out or Maybe I just don't get it

2006-03-24 Thread Battershall, Jeff
Ely, I'll try to put the code together in a way that produced the behavior - the code has been altered from what it was. I'll get this up there by Monday. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely Greenfield Sent: Friday, March

RE: [flexcoders] Installing Coldfusion Mystic beta 2.

2006-03-23 Thread Battershall, Jeff
Gareth, There's something up with the Mystic Beta 2 installer, and a bug has been filed. If you change java.home in jvm.config to point to C:\JRun4\runtime\jre and re-start CF services you should be in business. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] FLV encoder

2006-03-19 Thread Jeff Steiner
I wrote an article on Flix Engine - I loved what it allowed me to do. I don't have any advice for a linux app that would do the same - but if you decide to go with Windows - you can't go wrong with Flix Engine. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] FLV encoder

2006-03-19 Thread Jeff Steiner
Oh yeah - http://www.flexauthority.com/articlesArchive/FlixEngine.cfm Might help. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Steiner Sent: Sunday, March 19, 2006 10:05 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] FLV

Re: [flexcoders] Re: Muliple flex apps on tomcat

2006-03-16 Thread Jeff Krueger
against great plains. In test we don't do that. Little things like that. Thanks Jeff - Original Message From: Dave Wolf [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Wednesday, March 15, 2006 10:29:05 PMSubject: [flexcoders] Re: Muliple flex apps on tomcatYep pretty much our deal here

[flexcoders] Muliple flex apps on tomcat

2006-03-15 Thread Jeff Krueger
on one server? Should they share cache? Should I not dup all the flex parts for each app. Both are are 100% complete. Any thoughts or help would be helpful. Thanks Jeff -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http

[flexcoders] Muliple flex apps on tomcat

2006-03-15 Thread Jeff Krueger
on one server? Should they share cache? Should I not dup all the flex parts for each app. Both are are 100% complete. Any thoughts or help would be helpful. Thanks Jeff -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http

[flexcoders] Multiple flex apps on one tomcat server out of memory

2006-03-15 Thread Jeff Krueger
on one server? Should they share cache? Should I not dup all the flex parts for each app. Both are are 100% complete. Any thoughts or help would be helpful. Thanks Jeff -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http

[flexcoders] FES .Net

2006-03-13 Thread Battershall, Jeff
can be integrated with .Net, and if anyone has any experience with this. Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609) 520-5637 (p) (484) 477-9900 (c) -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] Loading File IO example SWF

2006-03-09 Thread Jeff Krueger
, you need a more sophisticated deployment strategy. -rg From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff KruegerSent: Tuesday, March 07, 2006 5:49 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Loading File IO example SWF Right now fileIO.mxml has

Re: [flexcoders] Stop the logging

2006-03-05 Thread Jeff Krueger
Flex 2 it will be flex-enterprise-services.xml. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff KruegerSent: Thursday, March 02, 2006 8:04 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Stop the logging Sorry for the stupid post. But I can't

[flexcoders] how do you put a link in a datagrid?

2006-03-02 Thread jeff noyes
Title: RE: [flexcoders] Actionscript-based Applications with Flex 2 Can someone pleasepoint me to, or explain how to put a link in a datagrid? I've seen Jesse Wardens flash example, but I want strictly a flex example. -- Flexcoders Mailing List FAQ:

[flexcoders] Stop the logging

2006-03-02 Thread Jeff Krueger
. Is it in another file, sorry I can't remember where that is controlled. 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 SPONSORED LINKS

[flexcoders] Datagrid questions...

2006-02-16 Thread jeff noyes
I have two quesitons for you... 1. How can I set the column size to be the size of the largest piece of data for the column? 2. After populating the grid with data via an xml file (suppose the xml generates 5 cols and 5 rows), how can I then append two columns to the end of the grid. For

RE: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-09 Thread jeff tapper
take a look at the AS3 DataManagger post on my blog for a workaround. Http://jeff.mxdj.com Sent with Wireless Sync from Verizon Wireless Original Message From: Carlos Rovira [EMAIL PROTECTED] Date: 2/9/06 6:05 pm To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Subj:

RE: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-09 Thread Jeff Tapper
, so I use a private class in the same file, which emulates the same effect. At 07:15 PM 2/9/2006, jeff tapper wrote: take a look at the AS3 DataManagger post on my blog for a workaround. Http://jeff.mxdj.comHttp://jeff.mxdj.com Sent with Wireless Sync from Verizon Wireless Original Message

Re: [Norton AntiSpam] [flexcoders] setting a z-index

2006-02-07 Thread Jeff Tapper
In the flash player the z-index is referred to as depth. take a look at docs for getDepth() swapDepths() etc. However, if you are running flex 2, take a look at the PopupButton class, this may provide a lot of what you are trying to do. At 05:59 PM 2/7/2006, you wrote: Hey everyone, I'm

Re: [flexcoders] Closable Panel? (flex2)

2006-02-03 Thread Jeff Tapper
I recently wrote a MaxRestorePanel for a book I'm working on. This is a subclass of panel and broadcast maximize and restore events. I'll post it up to my blog when i have a few free mins (I'll send a note back to the list when I do.) At 07:29 AM 2/3/2006, gunnar a reinseth wrote: I know

Re: [flexcoders] Closable Panel? (flex2)

2006-02-03 Thread Jeff Tapper
If you are interested, you can find my MaxRestorePanel here: http://jeff.mxdj.com/flex_2_maxrestorepanel_class.htm At 03:25 PM 2/3/2006, you wrote: I recently wrote a MaxRestorePanel for a book I'm working on. This is a subclass of panel and broadcast maximize and restore events. I'll post it

RE: [flexcoders] Dynamic form layout and hidden FormItem. Is it possible without doubtful workarounds?

2006-01-24 Thread Battershall, Jeff
One thing that produces the vertical space is verticalGap which has a default value of perhaps 3. So you may have to play around with that, depending on your implementation. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov

[flexcoders] Re: CF Adapter Security

2006-01-24 Thread Battershall, Jeff
remotely accessible is a downside, IMO. My goal is to have the CFCs completely and totally off the webroot and not enabled for remote access. Perhaps I don't understand all the nuances of how this could be implemented. Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609

[flexcoders] Line Chart - Customization?

2006-01-19 Thread Battershall, Jeff
I'd like to create a line chart that has an icon - but only on certain items in the series. In other words the icon would only show given certain criteria of the series data. How could this be accomplished? Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609) 520

RE: [flexcoders] Line Chart - Customization?

2006-01-19 Thread Battershall, Jeff
Ely, Thanks a bunch - that does the trick. Jeff -Original Message- From: Ely Greenfield [mailto:[EMAIL PROTECTED] Sent: Thursday, January 19, 2006 2:31 PM To: Battershall, Jeff Subject: RE: [flexcoders] Line Chart - Customization? Hi Jeff. I can give you a solution to your

RE: [flexcoders] Cairngorm Question

2006-01-16 Thread Battershall, Jeff
):Void { //update your local model instance here; } Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of fowleryj Sent: Monday, January 16, 2006 9:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Cairngorm Question We have been

Re: [flexcoders] what the hell am I doing wrong here

2005-12-29 Thread Jeff Tapper
Seems to be a problem in the CFC. I tried calling it from a cfm page and got an error, which said Error Executing Database Query.][java.sql.SQLException : Table 'test.tbl_smartPanel_propInfo' doesn't exist] My test cfm has only this: cfobject

Re: [flexcoders] Re: what the hell am I doing wrong here

2005-12-29 Thread Jeff Tapper
cfreturn qpTest / /cffunction --- In flexcoders@yahoogroups.com, Jeff Tapper [EMAIL PROTECTED] wrote: Seems to be a problem in the CFC. I tried calling it from a cfm page and got an error, which said Error Executing Database Query.][java.sql.SQLException : Table 'test.tbl_smartPanel_propInfo

Re: [flexcoders] Sending Email From Flex

2005-12-22 Thread Jeff Tapper
I imagine it would work just like telneting into an smtp server. For examples, take a look here: http://en.wikipedia.org/wiki/SMTP#Example_SMTP_communication At 09:14 AM 12/22/2005, you wrote: I've been racking my brain tryingto figure out some of the new features in flex 2. It has been said

[flexcoders] HTTPService and XML

2005-12-18 Thread Jeff Houser
( I also posted this on the labs forums at Macromedia.com, so I apologize if this is a cross post for anyone ) I'm using Flex Builder 2 (Alpha, of course) and am having trouble retrieving / accessing XML data. I'm completely new to Flex, but know web programming well. I succesfully

Re: [flexcoders] Re: Flex2 and Amfphp is it possible ?

2005-12-16 Thread Jeff Tapper
Hank - I think he is saying anything that runs in FP8 will continue to run in FP8.5. At Max, there was a lot of talk about how hte Flash 8.5 player had 2 AVM's, one for AS1/2 and a newer faster one for AS3. I'm reading Phil's statements as saying it will still run, just not as fast as the

Re: [flexcoders] Re: Flex2 and Amfphp is it possible ?

2005-12-16 Thread Jeff Tapper
Hank - I still fail to see the meat of your argument. Macromedia has already released CFAdapter, which offers a clean, painless migration path for existing ColdFusion and JRun customers. I think its safe to assume they will have a similar adapter released which covers other .Net and Java

Re: [flexcoders] Re: Flex2 and Amfphp is it possible ?

2005-12-15 Thread Jeff Tapper
I dont recall MM championing AMFPHP, OpenAMF or any of the other 3rd party hacks to work with their proprietary AMF protocol. Perhaps I'm wrong, if so, I'd love to see the references Anyhow, Those open source alternatives were specifically built for AMF1, Flex 2 RemoteObject uses AMF2.

Re: [flexcoders] Re: Flex2 and Amfphp is it possible ?

2005-12-15 Thread Jeff Tapper
of their Remoting Gateway before flex 2 is released. At 03:37 PM 12/15/2005, you wrote: On 12/15/05, Jeff Tapper [EMAIL PROTECTED] wrote: I dont recall MM championing AMFPHP, OpenAMF or any of the other 3rd party hacks to work with their proprietary AMF protocol. Perhaps I'm wrong, if so, I'd love to see

Re: [flexcoders] Re: Flex2 and Amfphp is it possible ?

2005-12-15 Thread Jeff Tapper
war, just responding with my $0.02 At 04:06 PM 12/15/2005, you wrote: Hi Jeff, I have Coldfusion which includes the Flash Remoting Gateway. I would prefer it if the changes in Flex 2 did not force me to install new software on the server side and didn't break the authentication system I'm using

Re: [flexcoders] Re: Flex2 and Amfphp is it possible ?

2005-12-15 Thread Jeff Tapper
property of the NetConnection object instead. Renaun --- In flexcoders@yahoogroups.com, Jeff Tapper [EMAIL PROTECTED] wrote: I dont recall MM championing AMFPHP, OpenAMF or any of the other 3rd party hacks to work with their proprietary AMF protocol. Perhaps I'm wrong, if so, I'd love

Re: [flexcoders] Packages must not be nested

2005-12-13 Thread Jeff Tapper
chances are you have something like this: package myPackage{ class myPackage.myClass{ } } you no longer declare the package name as part of the class, instead, try this: package myPackage{ class myClass{ } } At 01:12 PM 12/13/2005, you wrote: Hi there, does anyone know what does

Re: [flexcoders] getting Flex pages to work in Firefox

2005-12-08 Thread Jeff Tapper
it loads fine for me with Firefox 1.0.7 on WinXP At 07:50 PM 12/8/2005, you wrote: http://flexapps.macromedia.com/flex15/explorer/explorer.mxml?versionChecked=true Yahoo! Groups Sponsor ~-- Most low income households are not online. Help

Re: [flexcoders] More questions regarding PopUp Windows in Flex 2.0

2005-12-03 Thread Jeff Tapper
hack and just setting window.x = -1 when its closed because removePopUp throws an error (Null is not a property or similar) thanks, Martin Jeff Tapper wrote: Cast the Title Window to the class of your component, for instance, from something I'm working on: win =ConfirmScreen

Re: [flexcoders] More questions regarding PopUp Windows in Flex 2.0

2005-12-03 Thread Jeff Tapper
removePopUp throws an error (Null is not a property or similar) thanks, Martin Jeff Tapper wrote: Cast the Title Window to the class of your component, for instance, from something I'm working on: win =ConfirmScreen(PopUpManager.createPopUp(this,views.dataEntry.ConfirmScreen

Re: [flexcoders] More questions regarding PopUp Windows in Flex 2.0

2005-12-03 Thread Jeff Tapper
; win.title = title; At 11:29 AM 12/3/2005, you wrote: Jeff, Do you know how to pass parameters into PopUps? Regards RR -- mobile: +49-(0)170-914-5495 email: [EMAIL PROTECTED] -Original Message- From: flexcoders@yahoogroups.com flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com

RE: [flexcoders] More questions regarding PopUp Windows in Flex 2.0

2005-12-03 Thread Jeff Tapper
a TitleWindow in a component in the views/dateEntry directory named ConfirmScreen.mxml At 11:50 AM 12/3/2005, you wrote: Jeff, I'm either blind or not clever enough. J Can you try once more to explain or maybe submit a complete code example? Again: In my situation the MXML Component to popup

Re: [flexcoders] More questions regarding PopUp Windows in Flex 2.0

2005-12-03 Thread Jeff Tapper
According to the docs, the default value is 50, but if setting it to 0 makes it non transparent, then that does sound like a bug. Actually, in a quick test, I did set it to 0, and it is still transparent. Not sure what you are seeing... At 12:15 PM 12/3/2005, you wrote: quick answer on the

Re: [flexcoders] More questions regarding PopUp Windows in Flex 2.0

2005-12-03 Thread Jeff Tapper
Actually, on a closer read, it seems i misinterpreted. it takes a value from 0 to 1, with a default of 0.5 Anything above 1 is interpreted as 1. So, when I do this: mx:TitleWindow xmlns:mx=http://www.macromedia.com/2005/mxml; click=doClose() panelAlpha=.75 closeButton=true Its more opaque

Re: [flexcoders] Events again...

2005-12-02 Thread Jeff Tapper
Ralf - dispatchEvent and addEventListener are methods of the EventDispatcher class. EventDispatcher is the superclass to most (all?) built in flex components, but is not inherently available to all AS3 classes. If you modify ClassB to instead be public ClassB extends

Re: [flexcoders] More questions regarding PopUp Windows in Flex 2.0

2005-12-02 Thread Jeff Tapper
Cast the Title Window to the class of your component, for instance, from something I'm working on: win =ConfirmScreen(PopUpManager.createPopUp(this,views.dataEntry.ConfirmScreen, true)); win.prod = prod; win.title = title; At 07:45 PM 12/2/2005, you wrote: Hello again, Trying to get a couple

Re: [flexcoders] It's simple but.......

2005-12-01 Thread Jeff Tapper
Format the incoming data into an ArrayCollection of an array of objects, and set that array as the dataProvider of the chart. Something like this ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml; creationComplete=initApp() mx:Script ![CDATA[

Re: [Norton AntiSpam] [flexcoders] mx:Repeater problem

2005-11-23 Thread Jeff Tapper
For event handlers on items in a repeater you need to use the getRepeaterItem() method. mx:Repeater id=list dataProvider={dosyalar} mx:HBox mx:Image width=45 height=44 source=@Embed('./klasor.jpg') toolTip=${list.currentItem.name}/ mx:Link label={list.currentItem.name}

Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread Jeff Tapper
Take a look at the EventManager class I wrote, it allows you to specifically work with situations like this, to prevent having to redundantly handle rebroadcasting events. http://jeff.mxdj.com/using_the_event_manager.htm At 11:29 AM 11/23/2005, you wrote: not supportted I know, how to work

Re: [Norton AntiSpam] Re: [flexcoders] php flex-2 standalone

2005-11-20 Thread Jeff Tapper
NuSOAP is available for PHP At 01:49 PM 11/20/2005, you wrote: Does PHP have any webservice libraries? I know with coldfusion, it is easy to set up a component to serve as a webservice. Scott On 11/20/05, JIGNESH M. DODIYA mailto:[EMAIL PROTECTED][EMAIL PROTECTED] wrote: hi, do anybody know

Re: [flexcoders] Re: WebServices via ActionScript

2005-11-11 Thread Jeff Tapper
Try this, note, I'm calling a different method, getSongs which takes a band name as an argument mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; initialize=getFunky() mx:Script ![CDATA[ import mx.services.WebService; import mx.services.PendingCall; var

RE: [flexcoders] Dual core license policy

2005-11-04 Thread Jeff Whatcott
Interesting discussion. Our current licensing is by processor and we don't make any special distinction for dual core processors. We're studying this closely right now, and of course we reserve the right to change our licensing policies in the future, but for now there is no distinction

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

2005-10-26 Thread Battershall, Jeff
Title: Message I've been playing with this a bit and my big, big question is this: How the heck can you create a singleton when the contructor evidently must be public in AS 3.0? Jeff BattershallApplication ArchitectDow Jones Indexes[EMAIL PROTECTED](609) 520-5637 (p)(484) 477-9900 (c

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

2005-10-26 Thread Battershall, Jeff
Title: Message Hshouldn't the private var 'instance' also be static? Jeff -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of SpikeSent: Wednesday, October 26, 2005 10:50 AMTo: flexcoders@yahoogroups.comSubject: Re

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

2005-10-26 Thread Battershall, Jeff
Title: Message Spike, Thanks! Why should we have to do such a kludgy workaround, though? Why can't we have a private constructor if Java does? Suppose that's a question for the Flash Player engineering team... Jeff -Original Message-From: flexcoders@yahoogroups.com

<    4   5   6   7   8   9   10   11   12   >