[flexcoders] Re: AIR Gmail rss reader

2008-06-25 Thread Spike
Just in case any one else runs into this, I figured out the problem. As usual, the root cause was between the seat and the keyboard. When logging in to Gmail for domains, you have to specify the full email address as the username, not just the bit before the '@' Kinda obvious really. Spike

[flexcoders] AIR Gmail rss reader

2008-06-23 Thread Spike
() on a standard HTTPService, I went with a raw socket approach. That falls over when Gmail responds with the SSL redirect. I'm sure somebody has already figured this out. Anyone here know how to get around it? Spike -- Stephen Milligan YellowBadger - Developing

[flexcoders] Re: AIR Gmail rss reader

2008-06-23 Thread Spike
Oh, I meant to say, I got this working fine with the regular feed URL below, but the mail for domains feed is failing: http://mail.google.com/a/spike.org.uk/feed/atom/unread Obviously you'll need a google apps account to test this. Spike On Mon, Jun 23, 2008 at 11:14 AM, Spike [EMAIL PROTECTED

[flexcoders] Re: AIR Gmail rss reader

2008-06-23 Thread Spike
I should probably also mention that the reason I decided to try this in AIR is because neither FeedDemon, nor FeedReader are able to do it either, and I got tired of missing important emails because my browser wasn't open. Strangely though, Firefox has no trouble opening the feed. Spike On Mon

Re: [flexcoders] Flex 3 and AIR 1 are now live!

2008-02-25 Thread Spike
This seems to be fixed now. Downloading at the minute. Spike 2008/2/25 Beau Scott [EMAIL PROTECTED]: Actually, it seems that the plug-in link is still broken: http://www.adobe.com/cfusion/tdrc/index.cfm?product=flex_eclipseloc=en_us Flex Product Page - Try Flex Builder 3 - More Flex

Re: [flexcoders] Flex 2: thread management, synchronous methods, etc

2006-03-16 Thread Spike
Last I heard the Flash player was single threaded. If that's still true, the question of synchronization is moot.SpikeOn 3/16/06, dos dedos [EMAIL PROTECTED] wrote: On most programming platforms, you have the event model (non-frame based events are raised and handled asynchronously), the

Re: [flexcoders] Whats flex beta

2006-01-31 Thread Spike
http://labs.macromedia.com/flexproductline/Get it quick before the servers melt :)SpikeOn 1/31/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I heard from a post that it is out I mean I figured it was some kind of software can someone lead me to what it is and where I can get it please?

Re: [flexcoders] Whats flex beta

2006-01-31 Thread Spike
As far as I'm aware it's free for anyone to download. Once you login or register for a Macromedia ID I think you should be able to get directly to the downloads without doing anything else. Spike On 1/31/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is Flex beta free? -- Flexcoders

Re: [flexcoders] Flex Projects

2005-11-14 Thread Spike
Stephen Milligan (me) [EMAIL PROTECTED] David Gassner [EMAIL PROTECTED] SpikeOn 11/14/05, Mehdi, Agha [EMAIL PROTECTED] wrote: Hi all, We are looking into outsourcing our Flex projects to companies who have expertise in this area and are not very expensive. We use CF on the

[flexcoders] Flex breeze integration

2005-11-07 Thread Spike
for the top level of the Flex app, and adding a _lockroot attribute to the mx:Application tag but it doesn't seem to help. The swf works fine when loaded in the standalone player. Any suggestions? Spike-- Stephen MilliganDo you do the Badger? http

[flexcoders] Re: Flex breeze integration

2005-11-07 Thread Spike
ok, Tracked down the issue to another .swf in the Flex app that I was loading using mx.controls.Loader. I've changed that to use an embedded .swf and it seems to work fine now. SPike On 11/7/05, Spike [EMAIL PROTECTED] wrote: Has anyone tried to integrate a Flex 1.5 swf with Breeze? I've

Re: [flexcoders] Flex2: component and generated source code?

2005-11-03 Thread Spike
There are options in the project settings to allow you to add compiler arguments, but in the public alpha it doesn't work correctly. The only way I know of to get it to generate the .as files is to use the command line compiler - mxmlc.exe That lives in the Flex Framework 2 Alpha\bin

Re: [flexcoders] Flex2:Need quick answer

2005-10-31 Thread Spike
Hi Greg, You're going to have to provide a bit more information than that before we'll be able to provide an answer. There are no limitations in the Alpha other than those of the player itself. Where is the data that you are trying to use coming from? Spike On 10/31/05, Greg Johnson [EMAIL

Re: [flexcoders] Big problem with OCX, Flash 8 release version

2005-10-30 Thread Spike
You should be able to get going from here: http://livedocs.macromedia.com/labs/1/flex/0296.html Spike On 10/28/05, Robert Thompson [EMAIL PROTECTED] wrote: On that note, and aside from fixing things, cansomeone refer me to a url that explains how to ultilzethe debug versions of the players

Re: [flexcoders] 1.5 dev version

2005-10-28 Thread Spike
a schema with an XML document and gives you code assistance based on the schema. http://www.oxygenxml.com/ HTH Spike On 10/28/05, Robert Thompson [EMAIL PROTECTED] wrote: What's ANT?Where doyou apply for 1.5 non-commercial license?I'm familiar with using NetBeans and EJB and using.WAR file

Re: [flexcoders] MX:Image and caching

2005-10-28 Thread Spike
As far as I'm aware, the Flash player uses the containing browser to issue http requests, so if your browser caches the images I would expect a flex/flash app to do the same. I know xml data is certainly cached and I'm pretty certain that's the browser. A very easy way to find out would be to

Re: [flexcoders] HTML Text in TextArea

2005-10-27 Thread Spike
Yeah, The TextArea doesn't render table tags. I don't think the flash player HTML capabilities support table tags, but I really could use this sort of functionality. Has anyone got an example of rendering a table in Flash? I've seen a few examples, but one of the requirements for me is to be

Re: [flexcoders] Flex 2: Oracle - type long ??

2005-10-27 Thread Spike
in urlEncodedFormat() in the CFC and using unescape() on the returned data in flash. Spike On 10/27/05, Greg Johnson [EMAIL PROTECTED] wrote: I am stuck with using Oracle for a datasource with a project.Onefield that is returned back is of type long in oracle.When I try toreturn it as part of my

Re: [flexcoders] HTML Text in TextArea

2005-10-27 Thread Spike
You can do that, but I still haven't found any way to do drag-select of text across multiple table cells. Any ideas? SpikeOn 10/27/05, JesterXL [EMAIL PROTECTED] wrote: Use MXML instead. You can use Grid, VBox, HBox, etc. to do what a table tag does, and more. - Original

Re: [flexcoders] HTML Text in TextArea

2005-10-27 Thread Spike
to just use the regular HTML table tags. That way I have something that can also be used as a fragment in a HTML page. Now I need to find a way to render them so drag select works and I'll be a happy bunny. Spike On 10/27/05, JesterXL [EMAIL PROTECTED] wrote: Whoever is parsing the data

Re: [flexcoders] HTML Text in TextArea

2005-10-27 Thread Spike
. SpikeOn 10/27/05, JesterXL [EMAIL PROTECTED] wrote: System.setClipboard(topLeft_ti.text + middle_ti.text + right_ti.text); - Original Message - From: Spike To: flexcoders@yahoogroups.com Sent: Thursday, October 27, 2005 2:02 PM Subject: Re: [flexcoders] HTML Text in TextArea

Re: [flexcoders] HTML Text in TextArea

2005-10-27 Thread Spike
That sounds promising. FlashPaper has the exact behaviour I'm after. Any references you can point me to other than the livedocs which I'm off to check now. Spike On 10/27/05, JesterXL [EMAIL PROTECTED] wrote: Another idea is to do what FlashPaper does, and use the Flash Player 7

Re: [flexcoders] HTML Text in TextArea

2005-10-27 Thread Spike
with it just to make sure I am actually in the top level and that it's not playing hide and seek with the thing that actually contains the text. Spike On 10/27/05, JesterXL [EMAIL PROTECTED] wrote: Sorry G, I don't know how to link to places in LiveDocs. Basically Flash MX 2004 ActionScript

Re: [flexcoders] HTML Text in TextArea

2005-10-27 Thread Spike
oh, btw, If you want a link to any livedocs page, the URL for the current page is usually right at the bottom in the center below the comments. Something like this: Current page: http://livedocs.macromedia.com/flash/mx2004/main_7_2/1851.html SpikeOn 10/27/05, Spike [EMAIL PROTECTED

Re: [flexcoders] HTML Text in TextArea

2005-10-27 Thread Spike
Nurp, Still no joy. I think I'll give up on it for today and hack at some flex builder plugins. SpikeOn 10/27/05, Spike [EMAIL PROTECTED] wrote: Thanks, found it in the livedocs... Hey, I managed to achieve something on my own today :-) Unfortunately I'm getting 0

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

2005-10-26 Thread Spike
class PrivateClass { } } Something like that. Spike On 10/26/05, Battershall, Jeff [EMAIL PROTECTED] wrote: 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

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

2005-10-26 Thread Spike
Yeah, my bad, I wrote that in the email editor and didn't test it, but hopefully it demonstrates the idea. SpikeOn 10/26/05, Battershall, Jeff [EMAIL PROTECTED] wrote: Hshouldn't the private var 'instance' also be static? Jeff -Original Message-From:

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

2005-10-26 Thread Spike
that rely on there being a public constructor and that it will get added later. SpikeOn 10/26/05, Battershall, Jeff [EMAIL PROTECTED] wrote: 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

Re: [flexcoders] Web-services giving hell to implement

2005-10-25 Thread Spike
as the .swf. The crossdomain.xml approach has always been available in Flex 1.5 too, it's just that it's impractical when you don't control the webservice. Spike On 10/25/05, knly browne [EMAIL PROTECTED] wrote: Good day awll... I have a little quirk with connecting to web-services in Flex

Re: [flexcoders] A technique for independent mxml files

2005-10-24 Thread Spike
Both the plugin and standalone version work this way. SpikeOn 10/21/05, Matt Chotin [EMAIL PROTECTED] wrote: In your project you can right click on the MXML file and add it to the application list. Then when you press the run button the next time it should run that one. Though

Re: [flexcoders] Flex 2

2005-10-21 Thread Spike
Pretty much the same way you would deploy the static HTML portion of a regular app. Create the HTML and .swf files in Flex Builder, then copy to the server webroot using FTP, ANT, file copy, rcp etc. Spike On 10/21/05, Howard, Dave [EMAIL PROTECTED] wrote: I am super confused. How do

Re: [flexcoders] flex 2 cf

2005-10-20 Thread Spike
Not sure if you've already solved the problem, but apparently you need to have JDK 1.4 rather than 1.5 to make it work: http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=582threadid=1068843enterthread=y SpikeOn 10/18/05, Paul Hastings [EMAIL PROTECTED] wrote: Spike

Re: [flexcoders] flex 2 cf

2005-10-20 Thread Spike
:-)On 10/20/05, Paul Hastings [EMAIL PROTECTED] wrote: Spike wrote: Not sure if you've already solved the problem, but apparently you need to have JDK 1.4 rather than 1.5 to make it work:yeah i know, found out the hard way made tom j suffer accordingly ;-) Yahoo

Re: [flexcoders] How to convert DateField from DateObject

2005-10-19 Thread Spike
Hi Jagadish, All the answers you need are in the Flash ActionScript reference documentation available here: http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/js/html/wwhelp.htm?href="" SpikeOn 10/19/05, jagabcdeff [EMAIL PROTECTED] wrote: Hi all,Please let me know about

Re: [flexcoders] Flex 2: Passing to a PopupWindow

2005-10-18 Thread Spike
); } ]] /mx:Script mx:Button label=Test popup click=showPopUp(event); / /mx:Application ** HTH Spike On 10/18/05, Greg Johnson [EMAIL PROTECTED] wrote: Ok, I can get the basic popup window fine.Hand to scratch

Re: [flexcoders] Ok, im lost with Flex 2

2005-10-18 Thread Spike
Hi Greg, If you can post the code that's not working, or a link to a zip of it, that would probably help. SpikeOn 10/18/05, Greg Johnson [EMAIL PROTECTED] wrote: It seems like they went out of there way to remove features in codingand make things far far more difficult or am I missing

Re: [flexcoders] flex 2 cf

2005-10-18 Thread Spike
I haven't installed the CF adapter, but just in case you weren't already aware, you can do webservice and http calls without it. You only need it for flash remoting calls. Haven't heard of any problems with it elsewhere though. SpikeOn 10/18/05, Paul Hastings [EMAIL PROTECTED] wrote: mildly

Re: [flexcoders] Re: Dividing the mailing list into categories

2005-10-18 Thread Spike
Yeah, That probably makes more sense. As long as there are enough people around who know what they're doing with both Flex 1.5 and Flex 2 it shoudn't be a problem. Spike On 10/18/05, JesterXL [EMAIL PROTECTED] wrote: This setup works well in Flash; Flashcoders handles component

Re: [flexcoders] Re: Macromedia Labs site

2005-10-18 Thread Spike
*snip* That said, leading an open source project can be a good career move*snip* Yup, that's definitely true, but don't bet the farm on getting money out of it directly. Spike On 10/18/05, Hans Omli [EMAIL PROTECTED] wrote: Agreed. It's pretty difficult to compete with free. That said

Re: [flexcoders] Re: Ok, im lost with Flex 2

2005-10-18 Thread Spike
] wrote: Application tag doesn't have an initialize event any more, use creationComplete. It should have both events. Please file a bug if that's not the case. - Gordon From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Spike Sent

Re: [flexcoders] setting conditional enabled with AS

2005-04-19 Thread Spike
Something like this: mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Script ![CDATA[ var someval:Number = 1; var otherval:Number = 2; function disable() { if (someval == otherval) { myButton.enabled = true; } else { myButton.enabled = false;

Re: [flexcoders] keyDown List

2005-04-15 Thread Spike
Is your keyDown event attached to the list or to each of the elements of the list? If it's attached to the list, I'd expect to see the behaviour you're describing. If it's attached to each of the elements of the list I'm not sure what's going on. Spike JesterXL wrote: Ok, this is weird

Re: [flexcoders] mx:Tree: how to change default icons

2005-04-07 Thread Spike
You can do this quite easily if you create a custom theme. Not sure if there's an alternative, easier way. Details on creating custom themes are available here: http://livedocs.macromedia.com/flex/15/flex_docs_en/2194.htm HTH Spike Ghislain Simard wrote: Is there a way to change

Re: [flexcoders] Flex 1.5 price

2005-04-07 Thread Spike
Spike Matthew Shirey wrote: Just call MM and try to order. That's all the proof you need. My MM contact did confirm to me the day before that it was indeed going up. -- Matthew On Apr 7, 2005 11:43 AM, *Kristopher Schultz* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote

Re: [flexcoders] Flex 1.5 price

2005-04-07 Thread Spike
oh, ok. I guess I just didn't pick up on what you meant. I'd agree that calling MM would be a good idea if you really want to explore pricing options, but the post by Lucian is pretty detailed, so I thought it was worth posting. Spike Matthew Shirey wrote: That's true, but my point

Re: [flexcoders] Interfaces?

2005-04-02 Thread Spike
http://livedocs.macromedia.com/flex/15/flex_docs_en/2173.htm Spike JesterXL wrote: wtf...dude, where are you finding this in the docs...or rather, how? I did a search for interface, and in both books, these didn't come up in like the first 5? - Original Message - From

Re: [flexcoders] upload in central

2005-04-01 Thread Spike
Use cflog to log the names of the form fields that get posted. You can then check the log file to see what the name was. Spike Rich Tretola wrote: Does anyone know the reference that I need to use on the coldfusion side of a flex/ventral upload ? I know that the .cfm page is being called

Re: [flexcoders] Passing Models into MXML components...

2005-03-21 Thread Spike
of the UI in a lot of cases and you may want to do it this way. I think the warning on first compile is there to make sure you're aware that's what will happen. Have you tried declaring the testModel with ActionScript rather than an mx:Model tag? Spike Scott Barnes wrote: I have a really weird

Re: [flexcoders] Still Need Example of Custom Component Built in Flash

2005-03-15 Thread Spike
the recommendation is to use the second of those. As for creating the .swc itself, you should probably go take a look at the following area in the ActionScript documentation: http://livedocs.macromedia.com/flash/mx2004/main_7_2/3072.html Spike JesterXL wrote: Coding it in Flash isn't hard... it's installing

Re: [flexcoders] Can you make an array of functions

2005-03-14 Thread Spike
You can achieve the same thing as an array of functions by creating an array of objects that each has a single function. The question is why would you want to do this? Spike [EMAIL PROTECTED] wrote: Is this possible *Yahoo! Groups Sponsor* ADVERTISEMENT click here http://us.ard.yahoo.com/SIG

Re: [flexcoders] mx:Panel and disabling CSS Inheritance.

2005-03-14 Thread Spike
c'mon now Scott, You could have tested that out almost faster than typing the question ;-) I'd test it myself, but I'm running out of free RAM on this machine and don't have Flex Builder running at the minute. Spike p.s. Only kidding about testing it yourself btw, I'm curious what the answer

Re: [flexcoders] Need an easy way to dump XML results to a file?

2005-03-11 Thread Spike
What method are you using to retrieve the XML payload? If you're using HTTPService you can specify the resultFormat as text which will just give you the raw text that came back from the server. You can then output that as you see fit. Spike dduuggllaa wrote: It would be convenient when

Re: [flexcoders] Re: Need an easy way to dump XML results to a file?

2005-03-11 Thread Spike
the code that generates the var foo. HTH Spike dduuggllaa wrote: --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi, mx:Model can not be used on runtime. You can look at FlexBuilder debugger and network monitor, its just super cool You can also install Mozdev's Live HTTP

Re: [flexcoders] Doesn't a Web Service return XML? Confused

2005-03-11 Thread Spike
be in the top level of the result if my guess is correct. If so, you should be able to figure out the structure for the rest of the GoogleSearchResult object by looking at the declaration in the wsdl Spike dduuggllaa wrote: I implemented the Google WebService in Flex. Works fine. I now want to snoop

Re: [flexcoders] MXML authoring with MyEclipse

2005-03-08 Thread Spike
this on the list at the week-end and didn't get a response, so I'm assuming that either no-one is using a schema based editor to validate MXML, or that is the only problem. Just thought I'd give you a heads-up anyhow. Spike Benoit Hediard wrote: Hi everyone, Most of the people using Eclipse for their MXML

Re: [flexcoders] MXML Schema validation

2005-03-06 Thread Spike
Looks to me like the Schema is wrong. It doesn't allow for any attributes of mx:operation and permits only the mx:request tag as a child. Anyone know if I can get my hands on on that's correct? Spike Spike wrote: Does anyone know whether the MXML Schema that comes with Flex 1.5 really can

MXML Schema validation

2005-03-05 Thread Spike
it, so what is it that's going wrong? Xerces or the Schema? I've had a quick look at the schema myself, but my eyes started to glaze over by the time I got to about line 5000. Spike -- Stephen Milligan Code poet for hire http://www.spike.org.uk Do you

Re: [flexcoders] Flex + Java Classes (as RemoteObjects) Config Question

2005-03-02 Thread Spike
couldn't find the classes. HTH Spike Ben Elmore wrote: Correct. I am hoping it is something that straight forward. -Original Message- *From:* Chris Reynolds [mailto:[EMAIL PROTECTED] *Sent:* Wednesday, March 02, 2005 12:05 AM *To:* flexcoders@yahoogroups.com *Subject:* RE: [flexcoders] Flex

Re: [flexcoders] Flex + Java Classes (as RemoteObjects) Config Question

2005-03-02 Thread Spike
the flex server from the command line. I can give you more details if you need them, but it's getting late here and I'm about to head off to bed. Spike Ben Elmore wrote: Spike. I am running CFMX on one of my Jrun server instances. How did you go about fixing the error (aside from uninstalling CF