[flexcoders] Re: ViewStates vs ViewStacks in App Control

2007-01-01 Thread Kevin
This is helpful, thanks. I like the idea better to have two states to the application (default logged on state) and then put the rest in a view stack. - kevin --- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote: - Original Message - From: Kevin Merritt [EMAIL

[flexcoders] event folder in cairngorm organization?

2007-01-04 Thread Kevin
! thanks, Kevin

[flexcoders] event folder in cairngorm organization?

2007-01-04 Thread Kevin
question! thanks, Kevin

[flexcoders] Cairngorm 2.1 exmples.

2007-01-09 Thread Kevin
are there any other Cairngorm 2.1 examples out there? All the code I seem to be looking at is for 2.0 and thus is a little confusing for a newbie like me who is trying to build ( understand) apps using 2.1. Thanks, Kevin

[flexcoders] Event calling in Cairngorm 2.1 - Newbie question.

2007-01-09 Thread Kevin
or my event. Any help you can offer is much appreciated. Thank, Kevin --- I have this in my main.mxml file private function loadGroupList() : void { CairngormEventDispatcher.getInstance().dispatchEvent( new CairngormEvent

Re: [flexcoders] Re: Cairngorm 2.1 exmples.

2007-01-09 Thread Kevin
sorry. I meant to say, besides the 2.1 store. That is the one I am looking at as my only example. I was wondering if there are others. thanks, Kevin On Jan 9, 2007, at 6:22 PM, fuad_kamal wrote: You might check out the 2.1 version of Flex store (Renaun Erickson), full source is available

Re: [flexcoders] Re: Cairngorm 2.1 exmples.

2007-01-09 Thread Kevin
are looking at this stuff for the first time. http://www.aboutnico.be/?p=46 Thanks, Kevin On Jan 9, 2007, at 6:31 PM, Kevin wrote: sorry. I meant to say, besides the 2.1 store. That is the one I am looking at as my only example. I was wondering if there are others. thanks, Kevin On Jan 9

Re: [flexcoders] Re: Cairngorm 2.1 exmples.

2007-01-09 Thread Kevin
thanks! I didn't think I saw a lot of 2.1 examples (I want to learn how to use some of the new features), but my guess is that I didn't look hard enough. - Kevin On Jan 9, 2007, at 9:24 PM, Bjorn Schultheiss wrote: There's a heap of cairngorm examples on cairngormdocs.org in the blogs

Re: [flexcoders] Re: Event calling in Cairngorm 2.1 - Newbie question.

2007-01-10 Thread Kevin
= getProducts; --- in the Event class, while most other Cairngorm examples store this in the Controller. Is this just personal preference or is there a more significant reason for this? - Kevin On Jan 10, 2007, at 8:30 AM, cardinalflexjeremy wrote: There actually is a problem

[flexcoders] flashlog.txt Intel Mac?

2007-01-11 Thread Kevin
Has anyone gotten the flash logging working on an intel mac. I have tried to numerous times and I can't seem to get it to write anything to the log file. Wondering if this is something that others have had problems with or if this is just user error. thanks, Kevin

Re: [flexcoders] flashlog.txt Intel Mac?

2007-01-11 Thread Kevin
other having this issue. - kevin On Jan 11, 2007, at 5:05 PM, Alisdair Mills wrote: i put 2 and 2 together and made 5 ;) On 11 Jan 2007, at 21:11, Muzak wrote: Where did you hear/read that mm.cfg is no longer required? According to the (updated) docs it still is: http

[flexcoders] loading blazepdf as external swf in Flex 2

2007-01-11 Thread Kevin
or link you can provide are much appreciated. OR maybe there are other solutions that people are using to create PDF's from their Flex creations? Thanks, Kevin

Re: [flexcoders] Export FLEX page to PDF

2007-01-12 Thread Kevin
are of major importance to many RIA developers. I am happy to help with coding a Flex solution - Kevin On Jan 12, 2007, at 1:38 PM, Navert, Bruno ((IT)) wrote: Hi flexcoders, I'm evaluating FLEX as a solution to our reporting needs. One of our requirements is the ability to build

Re: [flexcoders] Svn Flex

2007-01-13 Thread Kevin
this. thanks, Kevin On Jan 9, 2007, at 12:24 PM, Chris Hill wrote: I just blogged this from our internal wiki: http://ubergeek.tv/article.php?pid=127 Hope this helps, C Lieven Cardoen wrote: Hi, When compiling a Flex project, Flex copies all files to bin folder, including hidden .svn folders

[flexcoders] simple ArrayCollection question

2007-01-13 Thread Kevin
= data as Array; } this is what is being sent to result() var sendList: Object = ['test 0','test 1','test 2','test 3','test 4','test 5','test 6']; responder.result( sendList ); . Thanks much, - Kevin

[flexcoders] Cairngorm VO question

2007-01-13 Thread Kevin
: ICollectionView; ... public var paymentValidators : ArrayCollection = new ArrayCollection(); -- thanks, Kevin

Re: [flexcoders] simple ArrayCollection question

2007-01-13 Thread Kevin
I solved my own problem! I had forgotten to include the 'new' keyword...it's getting late in NYC! code should read: public function result(data:Object):void { var myList:ArrayCollection = new ArrayCollection(data as Array); } - Kevin On Jan 13, 2007, at 7:15 PM, Kevin

[flexcoders] New File Templates

2007-01-14 Thread Kevin
etc... - My Custom File Type Or can I at least modify the template in Flex to add some of my own comments automatically when the file is created. Seems like I should be able to do this, but I can't find out how. Thanks, kevin

Re: [flexcoders] SVN ( Subversion ) and Flex Builder

2007-01-15 Thread Kevin
the prompts fro her - which allow you to choose what to commit and what to exclude. This approach has work pretty well for me. Not sure if it is the correct way though. I create the branches tags folders directly in the SVN later when I need them. - kevin On Jan 15, 2007, at 7:25 AM

Re: [flexcoders] Cairngorm VO question

2007-01-15 Thread Kevin
thanks. that helped. On Jan 15, 2007, at 6:30 AM, Tom Chiverton wrote: On Sunday 14 January 2007 00:56, Kevin wrote: public var bookList: BookListVO; However, I am having problems extending the ArrayCollection class You can use meta data hints ([]) to indicate the types

[flexcoders] Cairngorm ServiceLocator error

2007-01-15 Thread Kevin
source=com.onefoot.dbocl.services.GetMyListService mx:method name=getMyList result=resultHandler(event) / /mx:RemoteObject /cairngorm:ServiceLocator I am not sure where I am going wrong. - Kevin

Re: [flexcoders] Cairngorm ServiceLocator error

2007-01-15 Thread Kevin
of course!!! Thanks. It's always something simple. I had commented that part out when i was testing some stuff and I forgot to uncomment it. - Kevin On Jan 15, 2007, at 10:44 AM, [EMAIL PROTECTED] wrote: Make sure you have: business:Services id=”serviceLocator” / in your main

[flexcoders] AMFPHP, Cairngorm VO

2007-01-15 Thread Kevin
manipulation tasks? I have been doing this in my unit testing, but now that I am trying to connect to AMFPHP to return the data, the getters setters are useless because the Flex VO is being ignored. Thanks for your help. - Kevin

[flexcoders] AMFPHP, Cairngorm VO

2007-01-15 Thread Kevin
manipulation tasks? I have been doing this in my unit testing, but now that I am trying to connect to AMFPHP to return the data, the getters setters are useless because the Flex VO is being ignored. Thanks for your help. - Kevin

Re: [flexcoders] AMFPHP, Cairngorm VO

2007-01-15 Thread Kevin
=. [RemoteClass(alias=com.one.of.my.customVO)] Is this a typo or is the alias optional? thanks, Kevin On Jan 15, 2007, at 6:09 PM, Patrick Mineault wrote: Sure thing. If you want to return an array of com.one.of.my.customVO, then say the php class is: ?php class customVO { //Declare

[flexcoders] AMFPHP Security

2007-01-16 Thread Kevin
reasonably enable. Thanks, Kevin

Re: [flexcoders] AMFPHP Security

2007-01-17 Thread Kevin
than the VO approach. I am new to understanding web security, so forgive me if I am being naive... thanks, Kevin

Re: [flexcoders] AMFPHP Security

2007-01-17 Thread Kevin
with. Ultimately (for our project) we could probably do the whole thing much simpler coding the classes ourselves and writing our own SQL... Thanks again, - Kevin

[flexcoders] AMFPHP Service Browser SVN

2007-01-19 Thread Kevin
your service. message = faultCode:AMFPHP_CLASSPATH_NOT_FOUND faultString:'The classpath folder {/amfphp/DiscoveryService.php} does not exist. You probably misplaced your service.' faultDetail:'/Users/kevin/Sites/ amfphp/core/shared/app/BasicActions.php on line 25' name = Error rootCause

[flexcoders] setCredentials in Flex

2007-01-19 Thread Kevin
is there any reason to also use a setCredentials call from Flex if we are using sessions to manage authentication on the server? - Kevin

Re: [flexcoders] AMFPHP Service Browser SVN

2007-01-23 Thread Kevin
of the folder on the SVN, but it didn't work when I tried to run the services browser: External server: SVN - services folder (includes amfphp/DiscoveryService.php which I uploaded to the SVN) Local server: AMPHP files AMFPHP Service Browser Can this work??? thanks, kevin On Jan 20, 2007, at 7:15

[flexcoders] AMFPHP explicitType error

2007-02-09 Thread Kevin
failed: cannot convert mx.utils::[EMAIL PROTECTED] to com.onefoot.dbocl.vo.users.UserDataVO. Thanks for the help! - Kevin

Re: [flexcoders] Re: AMFPHP explicitType error

2007-02-10 Thread Kevin
correctly using the $_explicitType variable. However, when i simply return only one VO object from PHP, then I get the error. I'll keep looking into this... Thanks, Kevin On Feb 10, 2007, at 8:15 AM, Mike Crowe wrote: Kevin, I'm in the same boat. I had to initialize my VO object

Re: [flexcoders] Re: AMFPHP explicitType error

2007-02-10 Thread Kevin
to look at this other PHP/Flex list which has some good posts: http://groups.google.com/group/adobe_php_sdk/browse_thread/thread/ ac92eba7eb46632b The end of this thread explains the problems we are having...without any solution that I could find yet... - Kevin On Feb 10, 2007, at 11:32

[flexcoders] Global Filter Functions

2007-02-22 Thread Kevin
this. Thanks, Kevin

[flexcoders] backgroundColor undefined?

2007-02-28 Thread Kevin
(Accordion, TileList) and I have to specify a background color or set the alpha to 0 to make it transparent. Am I doing something wrong? I would rather my components to default to transparent. - Kevin

[flexcoders] AMFPHP pass objects???

2007-03-03 Thread Kevin
? At it's simplest, I tried this just to try to get the object to be recognized: FLEX: var tempVO:Object = new Object; tempVO.name = 'kevin'; tempVO.pass = '123'; var call : Object = service.login( tempVO ); PHP: public function login( $UserVO

Re: [flexcoders] AMFPHP pass objects???

2007-03-03 Thread Kevin
-setBaseCustomMappingsPath('services/vo'); - Kevin On Mar 3, 2007, at 9:34 AM, Kevin wrote: I am trying to pass an object type from Flex (Cairngorm) to PHP5 through AMFPHP 1.9 and I can't seem to get it to work. It seems that PHP only recognizes the object as an array and ignores any private

[flexcoders] AMFPHP Sessions

2007-03-03 Thread Kevin
to the query, meaning cookieless sessions are supported. I just don't know how to integrate this??? Thanks, Kevin

[flexcoders] Storing VO in Sessions AMFPHP?

2007-03-03 Thread Kevin
Does anyone know of a problem with storing VO's in session with PHP? It doesn't seem to be working and before try to make it work, I figured it was best to see if it is even possible. Thanks, Kevin

Re: [flexcoders] Storing VO in Sessions AMFPHP?

2007-03-03 Thread Kevin
will be __PHP_Incomplete_Class.' Has anyone found a work around for this with AMFPHP? My thought is that i have to try to modify some of the AMFPHP code to add includes before the session start...I am wondering if it is worth it. - Kevin On Mar 3, 2007, at 4:23 PM, Kevin wrote: Does

[flexcoders] Convert MySQL result to VO?

2007-03-07 Thread Kevin
objects. Thanks, Kevin

Re: [flexcoders] Adjust TextInput Fld Width on Bound Property

2007-03-12 Thread Kevin
seems like valueCommit did the trick, thanks! - Kevin On Mar 12, 2007, at 3:49 PM, Gordon Smith wrote: The valueCommit should do what you want. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Sent: Monday, March 12, 2007 10:43 AM To: flexcoders

Re: [flexcoders] Dynamic Instance of Class Data Typing

2007-03-13 Thread Kevin
(addUsersService); method = addUser; var call : Object = service.[this.method]( params ); Thanks, - Kevin On Mar 13, 2007, at 8:17 PM, Gordon Smith wrote: newInstance[someMethodName](someParam) For example, myCanvas[addChild](new Button()) - Gordon From: flexcoders

Re: [flexcoders] keyboard event

2007-03-13 Thread Kevin
and properties of the controls as well. http://livedocs.adobe.com/flex/201/langref/mx/controls/TextInput.html - Kevin On Mar 13, 2007, at 10:36 PM, offus99 wrote: Just like in HTML hitting Enter submits a form and hitting tab sets focus to the next form item, how do I achieve something

[flexcoders] Form Handling?

2007-03-14 Thread Kevin
as username.text firstname.text lastname.text ...blah, blah... thanks, Kevin

Re: [flexcoders] Form Handling?

2007-03-14 Thread Kevin
be much more useful to me that the form layout functions. thanks for the response. - Kevin On Mar 14, 2007, at 10:54 AM, Brian Dunphy wrote: Not a native feature built in to Flex I don't think, however one way to accomplish this would be to loop through each of the children of the Form

Re: [flexcoders] Mac Flashplayer bug discovered (behaves differently than the PC)

2007-03-14 Thread Kevin
appears?? What is being called to load the Twirly Face text. - Kevin On Mar 14, 2007, at 12:36 PM, {reduxdj} wrote: Troy: I don't know if that's good news or bad news? ;) I checked the girlfriends mac and both have the same issue, which player are you using btw? I have 9.028 Thanks, Patrick

Re: [flexcoders] Mac Flashplayer bug discovered (behaves differently than the PC)

2007-03-14 Thread Kevin
is there a way you can published the source? That might help in group debugging. Regardless I think the problem lies somewhere once the animation begins. - Kevin On Mar 14, 2007, at 1:18 PM, {reduxDJ} wrote: Troy: I’m accounting for image errors, and there’s a little preloading

[flexcoders] Binding null values from PHP/Mysql

2007-03-14 Thread Kevin
, it doesn't recognize that there is a change required in the binding. Thanks for the help. - Kevin

Re: [flexcoders] Binding null values from PHP/Mysql

2007-03-14 Thread Kevin
I figured out the problem... it has to do with a class from the FlexLib called: flexlib:PromptingTextInput there seems to be a bug in it when it tries to bind to Null values... it doesn't clear out the old value. I will look into it more. thanks, kevin On Mar 14, 2007, at 2:07 PM

[flexcoders] FlexLib PromptingTextInput bug?

2007-03-14 Thread Kevin
for AS2) until I saw this. Let me know if there is anything I can do to help fix this bug as I use this class throughout my current app. Thanks, Kevin mx:Script ![CDATA[ [Bindable] public var text1:String

Re: [flexcoders] FlexLib PromptingTextInput bug?

2007-03-14 Thread Kevin
great thanks. I'll look at the code, but to speed my search, can you let me know what line fixed it? thanks, Kevin On Mar 14, 2007, at 10:08 PM, Doug McCune wrote: Quick one-liner fixed the bug. New source is uploaded to FlexLib, and a new .zip package is available. Grab it again from

Re: [flexcoders] FlexLib PromptingTextInput bug?

2007-03-14 Thread Kevin
thanks... works perfectly. - kevin On Mar 14, 2007, at 10:58 PM, Doug McCune wrote: Look at line 50 (in the new version, line 47 or something in the old one) of PromptingTextInput.as. The old function was: override public function set text( value:String ):void { _textEmpty

[flexcoders] What to do on the server, what to do in Flex?

2007-03-16 Thread Kevin
fall in the middle of the spectrum. They don't deal with millions of records or millions of users, but they also are not small single user widgets. Thanks for your insight. - Kevin

[flexcoders] AMFPHP - MagpieRSS simplexml_load_file fail?

2007-03-16 Thread Kevin
faultString:'Invalid AMF message' faultDetail:'SimpleXMLElement Object Is there a reason these objects would not be compatible with AMFPHP? - Kevin

[flexcoders] Bug in AMFPHP Service Browser?

2007-03-17 Thread Kevin
as me before I jump to the conclusion that this is a bug. Thanks, Kevin

[flexcoders] Cast Object (Assoc Array) to Array Collection...

2007-03-19 Thread Kevin
) and not an object? OR Is there an efficient way to convert an object into an ArrayCollection? I will post this to the flexcoder list as well since I know you are not a familiar with AMFPHP. Thanks, Kevin

Re: [flexcoders] Cast Object (Assoc Array) to Array Collection...

2007-03-19 Thread Kevin
did the for loop. worked fine.Thanks, Kevin On Mar 19, 2007, at 7:30 PM, Tracy Spratt wrote: An associative array IS an Object. If order does not matter, use a for..in loop to build the ArrayCollection. If it does, well, use XML. Tracy From: flexcoders@yahoogroups.com

[flexcoders] Storing Dates Times in VO's

2007-03-19 Thread Kevin
returned from the server, however, my date fields are not mapping. Does a setter function get call when you are doing VO mapping?? Thanks for the help. Thanks, Kevin

Re: [flexcoders] Storing Dates Times in VO's

2007-03-20 Thread Kevin
; //or something like this... } } Hopefully this will work and be as clean as I can make it until I figure out how to return Date types from AMFPHP. Thanks, Kevin On Mar 20, 2007, at 8:20 AM, Brian Dunphy wrote: I would store it in a format that both PHP and Flex understand and can

[flexcoders] Help, internal build error has occurred?

2007-03-20 Thread Kevin
(attached below) doesn't seem to be much help: !MESSAGE Uncaught exception in compiler ..nor can I find any web info on this except to clean your project. Thanks for the help I am in the middle of a big project and it's hard for me to be losing this coding time. Thanks! - Kevin

Re: [flexcoders] Storing Dates Times in VO's

2007-03-20 Thread Kevin
to make the holder variables private since or else they don't get mapped from PHP. The mysqlDateUtil is a custom class I wrote to convert mysql date time stings into Flex dates. If anyone is interested I can share that code. It's a little sloppy, but it works for now. - Kevin On Mar 20

Re: [flexcoders] Nesting Complex Remote Objects

2007-03-21 Thread Kevin
in AMFPHP 1.9 you need to include the $_explicitType variable with every VO object you send from the server. Not sure how this works in other languages, but you may want to look into it. - Kevin On Mar 21, 2007, at 9:42 AM, aicfan4 wrote: I have two Value Objects: a simple VO and a VO

Re: [flexcoders] Coercion failed ArrayCollection with Objects inside Object AMFPHP 1.9

2007-03-21 Thread Kevin
. - Kevin On Mar 21, 2007, at 9:42 AM, Thomas Huijzer wrote: Hi All, With AMFPHP 1.9 I am trying to return an Object containing some vars and an ArrayCollection. Inside this ArrayCollection there are other Objects. But I can't get this to work in Flex. For example: Flex

[flexcoders] PopUp Returning NULL

2007-03-21 Thread Kevin
cases it shows pwWindow = null. (I am not sure what it is supposed to be.) Thanks for the suggestions. - Kevin

Re: [flexcoders] Re: Coercion failed ArrayCollection with Objects inside Object AMFPHP 1.9

2007-03-21 Thread Kevin
properties named exactly the same (although this seems to not throw and error even when they aren't exact???) Check those and see if any of them solve your problem. otherwise post your handler code so that we can see how you are handling the results. - Kevin On Mar 21, 2007, at 10:29 AM

Re: [flexcoders] PopUp Returning NULL

2007-03-21 Thread Kevin
I am not using modules and I also tried to comment out the ObserveValue tag to see that was causing a problem. Here is the error message. I am not sure how to read these things to help me! Thanks, Kevin TypeError: Error #1009: Cannot access a property or method of a null object

[flexcoders] State Transition using Percentages...

2007-03-22 Thread Kevin
container is filling up the whole screen instead of staying at width=40%? Sorry if this is a little basic, I am just trying wrap my head around all the layout/state/transition intricacies... Thanks, Kevin ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml

[flexcoders] Reference Getter in DataGrid

2007-03-22 Thread Kevin
? mx:DataGridColumn dataField=fullName headerText=full name / I can't get this to work... Thanks, Kevin

[flexcoders] Multiple Selection Menu?

2007-03-23 Thread Kevin
i am looking for a menu type component that allows you to select multiple items in the menu. This would be used to toggle values on off. I know I have seen it, but I can't remember the name and where. Ring a bell? Thanks, Kevin

Re: [flexcoders] Multiple Selection Menu?

2007-03-24 Thread Kevin
thanks. I guess I should have just looked at the built in components. I don't know why I thought this was something custom! - Kevin On Mar 23, 2007, at 8:09 PM, Gordon Smith wrote: The Menu component supports having multiple items of type check which can be toggled on or off

[flexcoders] icons

2007-03-24 Thread Kevin
their own. Thanks, Kevin

[flexcoders] Repeater Refresh

2007-03-24 Thread Kevin
seem to figure out the best way to do that. Thanks, Kevin

Re: [flexcoders] Repeater Refresh

2007-03-24 Thread Kevin
(); / /mx:VBox On Mar 24, 2007, at 5:16 PM, Kevin wrote: I have a repeater (adding TextInput fields) that is bound to an ArrayCollection on my model. I was hoping that essentially I could add a row by just pushing a value into my ArrayCollection on the model. However, this isn't working. I assume

[flexcoders] Binding to Data Model from flexlib PromptingTextInput

2007-03-25 Thread Kevin
way to do this?? Or is it possible to modify the PromptingTextInput to match the functionality of the TextInput? Thanks, Kevin ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:controls=flexlib.controls.* layout=vertical

Re: [flexcoders] Re: Coercion failed ArrayCollection with Objects inside Object AMFPHP 1.9

2007-03-25 Thread Kevin
? - Kevin On Mar 22, 2007, at 10:12 AM, thuijzer wrote: Finaly I found a solution for my problem. I created this class in PHP: class ArrayCollection { var $_explicitType; var $source; function ArrayCollection() { $this-_explicitType = flex.messaging.io.ArrayCollection; $this-source = array

Re: [flexcoders] Repeater Refresh

2007-03-26 Thread Kevin
thanks. I think the ArrayCollection is the key. Using addItem instead of push makes all the difference. It now works. - Kevin On Mar 24, 2007, at 6:04 PM, Jeffry Houser wrote: I've done this with an ArrayCollections, but never with an Array. The code would be something like

[flexcoders] Two-Way Binding Solutions?

2007-03-26 Thread Kevin
; However, I can't do this because I need the newContact to start out with the old values from the server. Is there a duplicate or clone object method that I need to use so that both model variables can be assigned to the same object from the server?? Thanks for the help. - Kevin

Re: [flexcoders] Two-Way Binding Solutions?

2007-03-26 Thread Kevin
i think my problem boils down to one of object cloning. Does anyone have a good solution for deep cloning objects in AS3? Seems like this would be a pretty useful utility. - Kevin On Mar 26, 2007, at 1:50 PM, Kevin wrote: I have trying to figure out how best to accomplish the two-way

Re: [flexcoders] Re: Two-Way Binding Solutions?

2007-03-26 Thread Kevin
) and then bind them the same way as above. Thanks for the advice!! - Kevin On Mar 26, 2007, at 4:07 PM, simonjpalmer wrote: You are right, it is because your model.pendingContact and model.newContact are object references and not object instances. When you do the assignment you are just

Re: [flexcoders] Two-Way Binding Solutions?

2007-03-26 Thread Kevin
thanks. this works great. To make a copy use: newContact = ObjectUtils.copy( pendingContact ); - Kevin

[flexcoders] Custom CheckBox Group Component

2007-03-29 Thread Kevin
time that selectedValue changes. Is there another way to do this? I am stumped on how to make this work. Let me know if you have any thoughts? - Kevin ?xml version=1.0 encoding=utf-8? mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA

[flexcoders] Observe tag not working?

2007-03-29 Thread Kevin
doesn't send? How should we set up the handler function to use the Observe tag. Here is the version I am using: http://weblogs.macromedia.com/auhlmann/archives/ObserveUtility.zip Thanks for the help. - Kevin

[flexcoders] Eclipse Plugin Color Coding disappeared?

2007-03-29 Thread Kevin
the color coding. - Kevin

Re: [flexcoders] Re: Observe tag not working?

2007-03-29 Thread Kevin
Thanks. Is this different from the ObserveValue tag? I generally do not use any parameters in my ObserveValue handlers and get by without any errors? I'll test this some more. Thanks for the advice. - kevin On Mar 29, 2007, at 2:32 PM, Tim Hoff wrote: Hi Kevin, The Observe tag

Re: [flexcoders] Re: Observe tag not working?

2007-03-29 Thread Kevin
thanks...I read that blog 4 times and until you pointed it out I didn't notice that the handler is different for the Observe vs. ObserveValue tag... my fault. - Kevin On Mar 29, 2007, at 3:51 PM, Tim Hoff wrote: Yes, it is: http://weblogs.macromedia.com/auhlmann/archives/2006/09

Re: [flexcoders] FlexBuilder Keyboard Not Responsive on the Mac

2007-04-02 Thread Kevin
if this is a mac thing or an Eclipse thing. I haven't tested Flex on the PC since NOV. - Kevin On Mar 31, 2007, at 1:11 PM, Adam Pasztory wrote: I've been thinking about switching a lot of my development work over to the Mac, but the performance of FlexBuilder has been disappointing. I'm

[flexcoders] Timezone of Date Object

2007-04-03 Thread Kevin
is there a way to set the timezone of a date object to something other than the local timezone? I would would like to be able to allow the user to select a timezone when they enter a time in a field. - Kevin

Re: [flexcoders] Re: Timezone of Date Object

2007-04-03 Thread Kevin
that would be great. I have been thinking over different ways to accomplish this. i look forward to seeing your library. thanks! - Kevin On Apr 3, 2007, at 10:50 AM, Paul DeCoursey wrote: short answer, no. But I have been working on a library that provides this option. It's not really

Re: [flexcoders] Re: Timezone of Date Object

2007-04-04 Thread Kevin
thanks. I'll look this over and give you my thought. What is the name/info of the webservice that you use. It might be something that could be useful to me as well. Thanks, Kevin On Apr 4, 2007, at 10:33 AM, Paul DeCoursey wrote: http://pdecoursey.googlepages.com/DateUtilCommonTest.zip

Re: [flexcoders] Re: Timezone of Date Object

2007-04-04 Thread Kevin
Paul, I am getting this error: I have not worked with ResourceBundle before. Any clue as to what could be wrong? Unable to resolve a class for ResourceBundle - Kevin On Apr 4, 2007, at 10:33 AM, Paul DeCoursey wrote: http://pdecoursey.googlepages.com/DateUtilCommonTest.zip Okay

[flexcoders] PDF Preview

2007-04-13 Thread Kevin
to the Acrobat Reader Plugin) for Flex? Seems like this would be a valuable asset to the Flex community. - Kevin

Re: [flexcoders] Pass ModelLocator reference to Command?

2007-04-15 Thread Kevin
. I guess it all depends on the complexity of your program. Let me know if you think of a better way to do it. - Kevin On Apr 12, 2007, at 6:38 PM, Dan wrote: Hey thanks, What I'm trying to reference is the specific object in an array collection that i have stored in the modelLocator

Re: [flexcoders] Newbie - Hosting requirements

2007-04-16 Thread Kevin
as your available skill sets (ie. do you already know some PHP, do you have a friend who codes Java?). Once you know those details you will then be able to choose an appropriate host to support your backend needs. I hope that helps. - Kevin On Apr 15, 2007, at 7:01 PM, simonhamelech

Re: [flexcoders] Re: Newbie - Hosting requirements

2007-04-16 Thread Kevin
. You can deliver the MySQL results to Flex in XML or you can look into AMFPHP WebOrb to use AMF. There are many examples on the web and on this list for using these approaches. Good luck. - Kevin On Apr 16, 2007, at 3:37 PM, simonhamelech wrote: As a C#/C++/SQL non-web programmer I

[flexcoders] LiveCycle Data Services beta expired?

2007-04-20 Thread Kevin
/messageview.cfm? forumid=72catid=640threadid=1259953enterthread=y any ideas? Has anyone else run into this? - Kevin

Re: [flexcoders] Using relational database with flex (newbie help)

2007-04-20 Thread Kevin
), FOREIGN KEY (parent_id) REFERENCES parent(id) ON DELETE CASCADE ) ENGINE=INNODB; look at the manual for more examples: http://dev.mysql.com/doc/refman/5.0/en/innodb-foreign-key- constraints.html - Kevin On Apr 20, 2007, at 2:31 PM, munene_uk wrote: i know

Re: [flexcoders] LiveCycle Data Services beta expired?

2007-04-20 Thread Kevin
ahh restarted Tomcat and it's now working...the beauty of restart. - Kevin On Apr 20, 2007, at 2:36 PM, Kevin wrote: I just installed the LCDS beta and I am trying to run it on Tomcat. I keep getting the following error when trying to launch the samples: Exception flex2

[flexcoders] LiveCycle Data Services PDF

2007-04-20 Thread Kevin
love the integration of PDF in to Flex DS, I am just hoping that it can go further since right now it seems like there are still significant limitations. Has anyone else run into these problems and found workarounds? - Kevin

  1   2   3   4   5   6   7   >