[flexcoders] specify services-comfig.xml in either MXML or AS?

2009-05-05 Thread dnk
Hi there, I was wondering if it was possible to specify my services-comfig.xml in either MXML or AS? I just wanted to include that in my actual code (as opposed to a compiler arg) for portability. I have been searching google, and nothing yet... Thanks! / D

Re: [flexcoders] Only Flex and LDAP

2009-04-28 Thread dnk
smgbbk, Tom Chiverton had posted in your previous post (Flex with LDAP) : Maybe you should grab the LDAP spec. and the Socket class documentation in the mean time :-) I suspect he suggested that you do that simply because at this point no one (or no one on this list) has done a direct

Re: [flexcoders] Flex with LDAP

2009-04-27 Thread Dnk
I suspect you could also do the ldap work with a serverside language and pass the results back to flex via remoting or XML. For instance I know PHP has a ldap class, etc. D On 27-Apr-09, at 6:19 AM, Tom Chiverton tom.chiver...@halliwells.com wrote: On Monday 27 Apr 2009, smgbbk

[flexcoders] Using svn or git with flex projects

2009-04-27 Thread Dnk
Hi, I am brand new into systems like git, and svn. I am starting to use git myself. I curious if others have their repositories based out of their flex builder project folder, or another location? I am sorry if the question is that dumb, but I just finished the install of git. That is

Re: [flexcoders] Re: Lightweight framework

2009-04-19 Thread dnk
On 18-Apr-09, at 10:07 PM, zuurl8 wrote: Flex is a lightweight framework. Do you need more then what Flex provides in interface, events, and modules? Well I think that I am talking about things more like code structure, methods of doing things, etc. There are obviously benefits from

Re: [flexcoders] Re: Lightweight framework

2009-04-19 Thread Dnk
( http://mate.asfusion.com/ ) seem to be the most popular alternatives in terms of MVC frameworks for Flex. EasyMVC ( http://projects.simb.net/easyMVC ) is another one I've heard of. dnk wrote: On 18-Apr-09, at 10:07 PM, zuurl8 wrote: Flex is a lightweight framework. Do you need more

[flexcoders] Lightweight framework

2009-04-18 Thread Dnk
Go there, I know there have been a billion topics regarding frameworks on here. I have been using cairngorm for a while and do like it. Now after doing a few projects, I have come to the realization that pretty much all projects I do are small - med with remoting. Cairngorm when looking

Re: [flexcoders] Re: create a thumbnail dynamically from large image using flex

2009-04-17 Thread dnk
On 16-Apr-09, at 10:59 PM, Bjorn Schultheiss wrote: --- In flexcoders@yahoogroups.com, stinasius stinas...@... wrote: any help guys? http://www.brooksandrus.com/blog/2009/03/11/bilinear-resampling-with-flash-player-and-pixel-bender/ Just curious, but would the above way be better

[flexcoders] Slashdot | Major League Baseball Dumps Silverlight For Flash

2009-04-08 Thread Dnk
FYI. http://entertainment.slashdot.org/article.pl?sid=09/04/07/2241233from=rss

Re: [flexcoders] Re: Flex server language

2009-02-19 Thread Dnk
machine; so I'm amused by the claim it can be setup w/ minimal fuss. On windows Dnk wrote: Again, this comes to preference, but for me I like PHP due to the fact Ito is available on a huge number of the web hosts out there, and it can be run on Linux, win or osx with minimal fuss. Easy

Re: [flexcoders] Re: Flex server language

2009-02-19 Thread dnk
On 19-Feb-09, at 9:42 AM, Jeffry Houser wrote: It was on windows, years ago, and I was trying to get it to work w/ IIS not Apache. I don't remember specific issues, though. Yeah, when going with IIS, it is a bit of a manual process. But with the installers, it was a breeze. And sets

Re: [flexcoders] Flex server language

2009-02-18 Thread Dnk
They will all get the job done. It is matter of requirements and preferences for the job. Dustin Krysak Sent from my iPhone On 18-Feb-09, at 4:31 PM, bsyyu ben.s...@gmail.com wrote: currently, I am using PHP as server language. In fact I would like to learn other server language in

Re: [flexcoders] Re: Flex server language

2009-02-18 Thread Dnk
@yahoogroups.com, Dnk d.k.emailli...@... wrote: They will all get the job done. It is matter of requirements and preferences for the job. Dustin Krysak Sent from my iPhone On 18-Feb-09, at 4:31 PM, bsyyu ben.s...@... wrote: currently, I am using PHP as server language. In fact I would like

Re: [flexcoders] Look for a tool to test remoteobject(AMF) format functions?

2009-02-06 Thread dnk
markflex2007 wrote: Hi, I am look for a tool to take remoteobject(AMF) format functions before I do Flex coding. The third party company provide me the functions and I need make sure they works fine before coding. I use xmlspy to test web service functions before and I

Re: [flexcoders] Re: Look for a tool to test remoteobject(AMF) format functions?

2009-02-06 Thread dnk
On 6-Feb-09, at 1:08 PM, markflex2007 wrote: But I have about 100 functions and some of them need pass different objects. WebOrb have test tool but only for weborb. I need a common tool. Thanks Mark Pretty sure there is no such tool (as I am sure it would have been mentioned on this

[flexcoders] apparently iphone and flash coming together

2009-02-03 Thread dnk
Just an interesting read. hope it is true. http://www.maclife.com/article/%5Bprimary-term%5D/adobe_and_apple_developing_flash_iphone

[flexcoders] opposite of outterDocument?

2009-01-22 Thread dnk
Is there something the opposite of outterDocument to access vars and methods inside of a mx:component tag? or is it as simple as (no where near my flex machine): mx:Component id=something custom:mycomp / /mx:Component script something.mymethod; Thanks! d

[flexcoders] access method in mx:component tag from another mx:component tag

2009-01-22 Thread dnk
I was wondering - is there a recommended way to access a method in one mx:component tag from another mx:component tag? The below code snips are itemrenderers in a datagrid. My hope is to access a method in the Downloader component from the downLoadBtn component. is this possible? d

Re: [flexcoders] opposite of outterDocument?

2009-01-22 Thread dnk
want to do thought? Maybe you need to consider to drive the inside component via Bindable data and communicate back to any parents via events... On Thu, Jan 22, 2009 at 5:12 PM, dnk d.k.emailli...@gmail.com wrote: Is there something the opposite of outterDocument to access vars and methods

Re: [flexcoders] Re: opposite of outterDocument?

2009-01-22 Thread dnk
the component is treated as a different class altogether. - Alex --- In flexcoders@yahoogroups.com, dnk d.k.emailli...@... wrote: Is there something the opposite of outterDocument to access vars and methods inside of a mx:component tag? or is it as simple as (no where near my flex machine

Re: [flexcoders] Re: opposite of outterDocument?

2009-01-22 Thread dnk
On 22-Jan-09, at 9:00 AM, Amy wrote: --- In flexcoders@yahoogroups.com, dnk d.k.emailli...@... wrote: Is there something the opposite of outterDocument to access vars and methods inside of a mx:component tag? or is it as simple as (no where near my flex machine): mx:Component id

Re: [flexcoders] hug cell contents in one cell on a datagrid

2009-01-20 Thread dnk
AM, Alex Harui wrote: Not sure I understand. variableRowHeight will allow a row to adjust to measuredHeight of a renderer. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of dnk Sent: Monday, January 19, 2009 1:54 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] hug cell contents in one cell on a datagrid

2009-01-19 Thread dnk
On 16-Jan-09, at 3:46 PM, dnk wrote: Curious Is there a way to force once cell of a datagrid to resize itself to hug the contents? I have an item renderer in a cell that changes size, and i wanted the datagrid cell to always resize with the contents. Thanks! d In an effort

[flexcoders] flex not seeing method

2009-01-18 Thread dnk
Hi there, I have an mxml component that dispatches an event. Now when i use the component, the meta data is showing up fine. But when i assign a handler, flex says that it is a call to a possibly undefined method. But it is there plain as day. IDeas??? Code snippets below.

[flexcoders] flex not seeing method - update

2009-01-18 Thread dnk
. No more errors. So to sum up when a custom component that dispatches a custom event is placed within the above mxml code - it will not see the defined event handler. ideas? d Begin forwarded message: From: dnk d.k.emailli...@gmail.com Date: January 18, 2009 9:35:46 AM PST (CA

Re: [flexcoders] flex not seeing method - update

2009-01-18 Thread dnk
Tried that, and same issue. d On 18-Jan-09, at 10:54 AM, Paul Andrews wrote: Try making the handler public..

Re: [flexcoders] flex not seeing method - update

2009-01-18 Thread dnk
code block delimited by the mx:Component and /mx:Component tags. To access elements outside of the local scope of the item renderer or item editor, you prefix the element name with the outerDocument keyword. Paul - Original Message - From: dnk To: flexcoders@yahoogroups.com Sent

Re: [flexcoders] Can Flex allow image downloads?

2009-01-16 Thread Dnk
You would have to put it together with flex's download related classes, and add a menu item to the right click menu. Dnk On 16-Jan-09, at 7:19 AM, oneworld95 oneworl...@yahoo.com wrote: Hi. Is it possible to enable users to right-click on an image in Flex and download

[flexcoders] model locator population too late

2009-01-16 Thread dnk
Hi there, I have an app that uses a model locator class. Now I have a component that is passed in a reference to another component (A progress bar in my case). Now my problem is that the component is being created prior to the model locator being populated with the reference to the progress

Re: [flexcoders] model locator population too late

2009-01-16 Thread dnk
to the model, not part of the model itself? - Original Message - From: dnk d.k.emailli...@gmail.com To: Flexcoder List flexcoders@yahoogroups.com Sent: Friday, January 16, 2009 11:14 PM Subject: [flexcoders] model locator population too late Hi there, I have an app that uses a model

[flexcoders] hug cell contents in one cell on a datagrid

2009-01-16 Thread dnk
Curious Is there a way to force once cell of a datagrid to resize itself to hug the contents? I have an item renderer in a cell that changes size, and i wanted the datagrid cell to always resize with the contents. Thanks! d

Re: [flexcoders] model locator population too late

2009-01-16 Thread dnk
to the model, not part of the model itself? - Original Message - From: dnk d.k.emailli...@gmail.com To: Flexcoder List flexcoders@yahoogroups.com Sent: Friday, January 16, 2009 11:14 PM Subject: [flexcoders] model locator population too late Hi there, I have an app that uses a model

Re: [flexcoders] use an actionscript class from a SWC in actionscript

2009-01-09 Thread dnk
Thanks to all who replied on this one! Much appreciated. d

Re: [flexcoders] compc cli - use packages?

2009-01-09 Thread dnk
On 8-Jan-09, at 2:27 PM, dnk wrote: Hi there... i have a swc library I have been developing for personal use. I have thus far been just keeping my classes and components in the root. I used to run my compiler as so: ./compc -source-path /Users/me/Zend/workspaces/DefaultWorkspace/sgLib

Re: [flexcoders] compc cli - use packages?

2009-01-09 Thread dnk
On 9-Jan-09, at 8:41 AM, dnk wrote: Ok, to add to this, I found a reference at: http://digitalmedia.oreilly.com/pub/a/oreilly/digitalmedia/helpcenter/programmingflex3/chapter20.html?page=8 And it gave me some clarification. But I am still having issues with the following error: Error

[flexcoders] use an actionscript class from a SWC in actionscript

2009-01-08 Thread dnk
Hi there i have written a very simple class in AS that has ben added to a personal library (SWC). Now in mxml I can reference the classes and components easily by putting a: xmlns:mycomps=* Now what I would like to know is how would I reference a class that is in a SWC from action

[flexcoders] compc cli - use packages?

2009-01-08 Thread dnk
). Now how would i have to midify my CLI compile to include all classes in the sgLib package? Thanks! DNK

Re: [flexcoders] Any Developers on a Mac?

2008-12-29 Thread Dnk
I highly recommend searching the archive for the list. There was a pretty large discussion regarding this exact topic within the last few months. Dnk Sent from my iPhone On 29-Dec-08, at 2:24 AM, composerguru kbmulvih...@gmail.com wrote: I'm thinking of converting now that I've dumped

[flexcoders] dumb q - button width as itemrenderer

2008-12-03 Thread dnk
Hi there... I have a button (component based on the reg button) being rendered out in a datagrid column. Now for some reason the button always wants to be with width of the column. I have tried setting an explicit width on the component itself, the original button in the component and so

[flexcoders] flex plugin (on zend) - hide certain warnings

2008-12-01 Thread dnk
Hi there... I was wondering if it was possible to hide certain warnings (in the problems pane) that are not relevant? In my case I am using zend with the flex builder plugin and on every project, the HTML templates generated by the flex plugin show warnings about Undefined attribute

[flexcoders] handle cancel from OS dialog with a file download.

2008-11-03 Thread dnk
interface. How are others dealing with this? Ideas? DNK

Re: [flexcoders] handle cancel from OS dialog with a file download.

2008-11-03 Thread dnk
On 3-Nov-08, at 12:59 PM, Tracy Spratt wrote: On the FileReferenceList, add a listener for “Event.CANCEL”. Tracy DOH! Thanks I had defined open, complete and a progress one. DNK

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

2008-10-29 Thread dnk
On 28-Oct-08, at 7:42 PM, Paul Andrews wrote: I have to say that I'm with Dmitri on this one - I can't remember the last time my win XP laptop crashed. I am a systems tech, who programs flex as a hobby, and coming from a background of dealing with multiple OS systems (mac, win, linux,

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

2008-10-29 Thread dnk
On 29-Oct-08, at 6:59 AM, Amy wrote: My husband's Dell dual-boots to Mac... -Amy Keep in mind that he is probably using the OSX 86 (hacked os x to run on other intel hardware) install, and is prone to some issues that fall outside of what an experience would be running a regular mac

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

2008-10-29 Thread dnk
On 29-Oct-08, at 6:56 AM, Fotis Chatzinikos wrote: Are you sure that you cannot run Leopard (MacOSX) on a vm? The desktop, no (unless it is hacked?), however if you run OS X server, it is supported in VM's (IE I think VMWare). d

Re: [flexcoders] Re: flex and amfphp

2008-10-08 Thread dnk
Just curious what kind of issues you ran into, and how weborb solved them. Could you reply to me off list, since this is going OT? Thanks! DNK On 08/10/08 8:39 AM, valdhor [EMAIL PROTECTED] wrote: Instead of AMFPHP I would suggest looking into WebORB (http

Re: [flexcoders] flex and amfphp

2008-10-08 Thread dnk
AMFPHP. I would check that out. DNK

Re: [flexcoders] Simple question - custom labels and data fields in ComboBox - [RESOLVED]

2008-09-17 Thread dnk
; selected.id = event.currentTarget.selectedItem.id; selected.category = event.currentTarget.selectedItem.category } Then I can do whatever I need to do with that data. Thanks all! Dnk

[flexcoders] Simple question - custom labels and data fields in ComboBox

2008-09-16 Thread dnk
to convert the ³id² to ³data²? DNK

Re: [flexcoders] How to clear client browser cache (SWF)

2008-09-11 Thread dnk
Dear All We are in development of an ERP application in Flex. Initially we may rollout few modules for testing, as the change request will trigger during this process. We need to release new version and so on. Like to know how to clear the client SWF version to replace the new version of

[flexcoders] passing objects to amfphp browser

2008-09-08 Thread dnk
testing my php classes via the browser before i start to write the flex portion. dnk

Re: [flexcoders] passing objects to amfphp browser

2008-09-08 Thread dnk
On 8-Sep-08, at 1:55 PM, dnk wrote: has anyone had any luck passing objects to the amfphp browser for testing classes? I read a few articles that you need to use valid JSON for passing in So I am typing in something like: {id: 3, category: 'a cat'} Has anyone been able to do

Re: [flexcoders] passing objects to amfphp browser

2008-09-08 Thread dnk
On 8-Sep-08, at 1:55 PM, dnk wrote: has anyone had any luck passing objects to the amfphp browser for testing classes? I read a few articles that you need to use valid JSON for passing in So I am typing in something like: {id: 3, category: 'a cat'} Has anyone been able to do

Re: [flexcoders] Re: Flex via php.

2008-09-03 Thread dnk
On 3-Sep-08, at 7:27 AM, nash.e2008 wrote: Thank you for your tip. It would help me a lot. Ive heard about AMFPHP, but never have used it before. I will try using AMFPHP! A great simple example of using amfphp is included in the adobe php ria kit. Shows display and insertion of data. d

Re: [flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-03 Thread dnk
On 3-Sep-08, at 8:41 AM, nathan king wrote: I too am considering the automagic generation of a swf using flex/air. I am toying with the idea of using PHP on the server side (http://us3.php.net/manual/en/book.swf.php) to generate the swf and allow the user to download it. I am pretty sure

Re: [flexcoders] Flexbuilder for iPhone?

2008-08-08 Thread dnk
On 8-Aug-08, at 12:18 PM, Merrill, Jason wrote: Ryan Stewart just tweeted, I just let Adobe's iPhone secret slip while at lunch with effectiveUI. We're going to have Flex Builder for the iPhone. http://brightkite.com/people/ryanstewart/ http://twitter.com/ryanstewart For real? Could

Re: [flexcoders] AMF Load Testing and open source

2008-08-06 Thread dnk
service capture (have used - works great) http://kevinlangdon.com/serviceCapture/ , or charles (have not used) http://www.charlesproxy.com/ On 6-Aug-08, at 11:23 AM, jbluedelta wrote: Have a web based AMF flex app. Am looking for any open source tools that would help me capture traffic

[flexcoders] What data type is this? var service = __locator.getService(roService);

2008-07-19 Thread dnk
Warning: Id 3604: You should now use one of the strongly typed methods for returning a service. What to Type it as? I thought remoteObject, but the compiler complains with: Id 1118: Implicit coercion of a value with static type mx.rpc:AbstractService to a possibly

Re: [flexcoders] flex component kit

2008-07-17 Thread dnk
On 17-Jul-08, at 10:52 AM, [p e r c e p t i c o n] wrote: Hi experts... can anyone tell me where i can download the flex component kit for flash cs3... adome exchange seems to be down...and i don't need the whole sdk...i have FB3 thanks percy According to labs, it seems to only

[flexcoders] cairngorm/remoteObject/VO - my first crack

2008-07-17 Thread dnk
Good day listers. I got this crazy idea I should have a crack at learning cairngorm/ remoteObject (amfphp) /VO all at once I had previously been using netconnections for my amfphp stuff. At any rate, I was wondering if someone could look over my code to see any blaring no no's in it.

[flexcoders] remoteObject questions (just to understand it better)

2008-07-17 Thread dnk
Hi there, just a few quick questions regarding remoteObject (trying to understand it better now that I have it running) 1) What is the purpose of the destination parameter? I have a working remoteObject (with AMFPHP) and I just put anything in the destination parameter, and it always

[flexcoders] task path for a cairngorm project

2008-07-15 Thread dnk
curious if some more experienced coders (I am a hobby coder) may have found a path that seems to work better. Dnk

Re: [flexcoders] exe of flex project

2008-07-11 Thread dnk
http://www.google.com/search?client=safarirls=en-usq=convert+flex+to+exeie=UTF-8oe=UTF-8 or just convert and make it an Air app. d On 11-Jul-08, at 4:19 AM, nitishdhar wrote: i want to create the exe of my flex project and it uses php to interact with the database. How do i do that

[flexcoders] weborb setup

2008-07-08 Thread dnk
Has anyone seen an issue with weborb setup where once installed, the console does not show any of the tabs? d

Re: [flexcoders] weborb setup

2008-07-08 Thread dnk
for that virtual directory. Hope this helps. I will ahve a look there... I just realized, I never gave anywhere enough detail... -weborb for php 3 -linux (centos 5.2)/apache server So there is no IIS or .net. And no diagnostic page for PHP. dnk

Re: [flexcoders] What is best way to get data from MySQL database?

2008-07-07 Thread dnk
On 6-Jul-08, at 9:30 PM, Alan wrote: I' read the same about the speed also, but aparrently the new webORB 3.0 has been made all fancy pants fast. WebORB claims it is 300% faster.but I'm guessing that now it's as fast as AMFPHP. Also the idea that a team of people are on it now.

Re: [flexcoders] What is best way to get data from MySQL database?

2008-07-06 Thread dnk
Well what it depends on is what server side scripting language are you using? If it is PHP (As AMFPHP or WebOrb are designed for), you would have to use one of those. Which is a preference, And I personally use AMFPHP. The stuff that is built in is for CF, etc. d On 5-Jul-08, at 4:40

Re: [flexcoders] What is best way to get data from MySQL database?

2008-07-06 Thread dnk
Yeah it does look better to the new person. Apparently amfphp is faster from what I have read on the net(but maybe this gap is closing?) for larger data sets. I have found I can get an AMFPHP result with less code (from the tutorials I looked at). But it is all preference. I don't use

Re: [flexcoders] Re: How to enable the enter key for all buttons onFocus

2008-06-30 Thread dnk
This is mostly why I wanted to do it as it was the default behavior some of my users were expecting. =-) I myself was fine with it working the way it does by default. d On 29-Jun-08, at 2:43 AM, Josh McDonald wrote: Shows what I know :) On Sun, Jun 29, 2008 at 4:32 AM, Amy

Re: [flexcoders] How to enable the enter key for all buttons onFocus

2008-06-30 Thread dnk
On 27-Jun-08, at 10:57 PM, Alex Harui wrote: If you set a defaultButton on a container, ENTER will click it. If you tab to another Button, ENTER will click that other button. That’s the way Windows does it, and the way we do it in Flex. That is perfect. Works like a charm! d

[flexcoders] How to enable the enter key for all buttons onFocus

2008-06-27 Thread dnk
Good day all, How would one go about enabling the enter key for all buttons in your flex app? I know you an do the defaultKey for a form, or add keyDown to your button (but that reacts to all keys then - not good). As it stands now, the spacebar will react to every button onFocus.. .I was

Re: [flexcoders] Flex/AIR Mailing list?

2008-06-19 Thread dnk
Appolocoders. DNK On 19-Jun-08, at 4:32 AM, Stephen Moretti wrote: Are there any mail lists that anyone can recommend for Flex/AIR development? Google has failed me. Regards Stephen

Re: [flexcoders] Re: way way OT: another flex?

2008-06-19 Thread dnk
never hurts to ask? On 19-Jun-08, at 10:13 AM, Matt Chotin wrote: Is it wrong of me to ask the company to buy one though just because of the synergy? On 6/19/08 8:28 AM, simonjpalmer [EMAIL PROTECTED] wrote: Looks more like the left-overs from the Range Rover parts bin...

Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-19 Thread dnk
or preference, but one way (to split to a point) seems to offer more flexibility. Not even $0.02.. but dnk

Re: [flexcoders] Re: Flex/AIR Mailing list?

2008-06-19 Thread dnk
oopppsss bnk is a little slow. d(b)nk On 19-Jun-08, at 7:28 PM, barry.beattie wrote: --- In flexcoders@yahoogroups.com, dnk [EMAIL PROTECTED] wrote: Appolocoders. with a typo like that Google may have trouble: Steve, this is what bnk meant http://tech.groups.yahoo.com/group

[flexcoders] pass in a state name to a compoenet

2008-06-18 Thread dnk
encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute xmlns:ns1=* ns1:MyComponent theState=someState / /mx:Application How would i do this? My issues are obviously that the types do not match (String VS State). What is the best way to do this? DNK

[flexcoders] php plugin with flexbuilder

2008-06-17 Thread dnk
Has anyone used any of the php plugins available with flex builder? I am not referring to an eclipse install with the flex plugin, but rather flex builder standalone with a php plugin d

Re: [flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-05 Thread dnk
FYI, VMWare fusion 2 (now in beta) apparently has dual monitor support in VM's. dnk On 5-Jun-08, at 6:11 AM, Josh McDonald wrote: The only real problem was the lack of support for dual monitors. -Josh

[flexcoders] can it be done, or a feature idea - export to css

2008-06-05 Thread dnk
curious. dnk

Re: [flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-05 Thread dnk
We just bought 7 of these last year at our company, and we only have 2 left in service as all the others died... Ever since Lenovo took over the Thinkpad brand.. well they appear to have been going downhill. But I mean this could have been a one off, a bad batch and so on. my

Re: [flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-04 Thread dnk
Little side note, it is actually 4 gb. I have one. Not really on topic though. so *blip* On 4-Jun-08, at 3:30 PM, Anatole Tartakovsky wrote: Macbook is limited to 3GB RAM

Re: [flexcoders] custom event not added

2008-05-25 Thread dnk
, dnk [EMAIL PROTECTED] wrote: fire? As in scrap and rewrite? dnk On 23-May-08, at 10:25 PM, Josh McDonald wrote: If you're getting a runtime error accessing Application.application you'll need fire to clean this up, methinks. -J On Sat, May 24, 2008 at 3:02 PM, dnk [EMAIL PROTECTED

Re: [flexcoders] custom event not added

2008-05-25 Thread dnk
. And in that function there are some remoting calls that I never see happening in service capture. And that is where my app seems to fail. dnk On 24-May-08, at 9:09 PM, Alex Harui wrote: Who’s dispatching and how? When does the control get instantiated? Could it be after

Re: [flexcoders] custom event not added

2008-05-25 Thread dnk
Josh, FYI, I got around the error, I had to use: mx.core.Application.application.dispatchEvent(new GetNewsEvent(GetNewsEvent.GET_NEWS_EVENT, null, false, false)); But event when targeting in this way as you suggested, it still did not help dispatch the event.. dnk On 23-May-08

Re: [flexcoders] custom event not added - almost solved.

2008-05-25 Thread dnk
later, and it works. So now this does in fact work as expected, but the method does not seem proper to me. How would others get around this? Just do it the way I did? Or is there a more proper and elegant solution for this? DNK On 24-May-08, at 9:09 PM, Alex Harui wrote: Who’s dispatching

Re: [flexcoders] custom event not added - almost solved.

2008-05-25 Thread dnk
calls direct in my constructor and see what happens there. dnk On 25-May-08, at 2:08 PM, Alex Harui wrote: Timers are normally not necessary. You need to have a clear understanding of the application lifecycle and its events. I don't know when your onInit is getting called

Re: [flexcoders] custom event not added - almost solved.

2008-05-25 Thread dnk
Dude, you rule! Thanks s much! Dnk On 25-May-08, at 9:12 PM, Josh McDonald wrote: And don't forget to add: import mx.core.Application; Up the top :) On Mon, May 26, 2008 at 2:11 PM, Josh McDonald [EMAIL PROTECTED] wrote: Ok mate, here's the problem: public function

Re: [flexcoders] custom event not added - almost solved.

2008-05-25 Thread dnk
Yeah this one was a bit of a mind [EMAIL PROTECTED]@!#. Much appreciated. DNK On 25-May-08, at 9:26 PM, Josh McDonald wrote: No probs mate, it was pissing me off not know what the problem was, too :) -J On Mon, May 26, 2008 at 2:22 PM, dnk [EMAIL PROTECTED] wrote: Dude, you rule

Re: [flexcoders] custom event not added

2008-05-24 Thread dnk
fire? As in scrap and rewrite? dnk On 23-May-08, at 10:25 PM, Josh McDonald wrote: If you're getting a runtime error accessing Application.application you'll need fire to clean this up, methinks. -J On Sat, May 24, 2008 at 3:02 PM, dnk [EMAIL PROTECTED] wrote: That added an error

[flexcoders] custom event not added

2008-05-23 Thread dnk
{ trace(false); } And I obviously am getting false. Ideas? dnk

Re: [flexcoders] custom event not added

2008-05-23 Thread dnk
ok, well that explains that part, however either my event is not added, or my event handler is never called. My trace statements never show up So I guess I still am wondering if anyone has any ideas dnk On 23-May-08, at 4:56 AM, Paul Andrews wrote: addEventListener() does

Re: [flexcoders] custom event not added

2008-05-23 Thread dnk
{ return _data; } } } dnk On 23-May-08, at 6:16 PM, Josh McDonald wrote: What's the event dispatch code look like? On Sat, May 24, 2008 at 11:01 AM, dnk [EMAIL PROTECTED] wrote: ok, well that explains that part, however either my

Re: [flexcoders] custom event not added

2008-05-23 Thread dnk
dispatchEvent() with Application.application.dispatchEvent() and see if it works then. -J On Sat, May 24, 2008 at 2:28 PM, dnk [EMAIL PROTECTED] wrote: It is dispatched like this (in function in my controller): dispatchEvent(new GetNewsEvent(GetNewsEvent.GET_NEWS_EVENT, null, false, false

Re: [flexcoders] Re: Debugging Flex3-AMFPHP

2008-05-19 Thread dnk
I second this one 100%. dk On 19-May-08, at 11:51 AM, actionscript_czar wrote: A very good tool for helping you debug any AMF source is Service Capture. It is an inexpensive tool that has saved me hours of time by being able to read AMF, SOAP, JSON-RPC and HTML packets. I use it with

Re: [flexcoders] Why would this assignment to a MVC model return null?

2008-05-07 Thread dnk
@yahoogroups.com on behalf of dnk Sent: Sat 03/05/2008 21:59 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Why would this assignment to a MVC model return null? and which file it should be in, etc On Sat, May 3, 2008 at 1:51 PM, dnk [EMAIL PROTECTED] wrote: Ok, just

[flexcoders] Why would this assignment to a MVC model return null?

2008-05-03 Thread dnk
this happen? It seems to be pretty basic code. But I am driving myself insane DNK

Re: [flexcoders] Why would this assignment to a MVC model return null?

2008-05-03 Thread dnk
(LoadTextFile.dataloaded, gotData); } LoadTextFile will have to extend EventDispatcher. HTH ! (been there myself, when I started!) -Original Message- From: flexcoders@yahoogroups.com on behalf of dnk Sent: Sat 03/05/2008 20:22 To: flexcoders list Subject: [flexcoders] Why

Re: [flexcoders] Why would this assignment to a MVC model return null?

2008-05-03 Thread dnk
and which file it should be in, etc On Sat, May 3, 2008 at 1:51 PM, dnk [EMAIL PROTECTED] wrote: Ok, just trying to look through the code sample provided a little confused due to my old code still being in there. On Sat, May 3, 2008 at 12:55 PM, Jim Hayes [EMAIL PROTECTED

Re: [flexcoders] Re: Best way to secure a ColdFusion web service

2008-04-25 Thread dnk
SSL is key (assuming it blocks out the data) as, It is pretty trivial to find the service location, and even the method names with something like service capture. So unless the traffic is over SSL, you can easily see things like id's and passwords passed into the services. I am curious to

[flexcoders] Why would this event never fire?

2008-04-20 Thread dnk
function from a button click or so on, the data comes in without issue. And obviously it works when dispatched by a timer, etc. dnk

  1   2   >