Re: [flexcoders] robotlegs

2012-05-11 Thread Robert VanCuren Jr
I starting using robotlegs about a year ago and I really like it. It's by far my favorite framework (mvc, dependency injection) for as3. I have used it for pure as3 and flex projects. As far as using it for small projects, it can be worthwhile because of the convenience methods that it provides.

Re: [flexcoders] AIR - Content resize according window

2012-01-17 Thread Robert VanCuren Jr
Check minWidth and minHeight On Tue, Jan 17, 2012 at 7:31 AM, Tandon, Rishi rishitandon...@yahoo.comwrote: ** Could you send over your code? -- *From:* isa_loyer isa_lo...@yahoo.fr *To:* flexcoders@yahoogroups.com *Sent:* Tuesday, January 17, 2012 5:22 PM

Re: [flexcoders] You are the product

2011-12-17 Thread Robert VanCuren Jr
There is no one size fits all solution if you want to build a complex application. Flash might be a good choice for one and HTML for another and you might need to go native depending on what you are trying to do. Maybe you even want to use Java or Silverlight! When you ask if you can do something

Re: [flexcoders] Re: Check if a Security Domain is accepted or not (IE for bitmap smoothing)

2011-12-02 Thread Robert VanCuren Jr
I do not seem to have this problem. Can you post more code so I can get a better look at what you are doing. I use facebook images all the time with out problem. The only time I have had issues with policy files is when the image url is actually a redirect. Flash checks the policy file before

Re: [flexcoders] Determine the framerate of a display object, Alex

2011-08-04 Thread Robert VanCuren Jr
You can determine the frame rate of the swf as a whole but individual display objects do not have their own frame rate. One slow display object slows the whole movie down. So in the case you described below both would produce the same frame rate. If you want to find out which display objects are

Re: [flexcoders] can flex app send a flag/text back to the wrapper html?

2010-09-08 Thread Robert VanCuren Jr
Look at ExternalInterface On Wed, Sep 8, 2010 at 6:08 PM, coder3 rrhu...@hotmail.com wrote: Hi all, I have a flex app. and of course there is a standard html that launchs this .swf. now what i want is, if the flex app (swf) has an error, it can send a boolean/text/exception back to the

Re: [flexcoders] Re: flex debuging

2010-07-30 Thread Robert VanCuren Jr
In Flex / Flash builder the debugger hooks up to the first swf that is loaded once it is waiting. So you can make a debug configuration that points to http://localhost/fake.swf. When you then click debug will open your browser to a blank page and just wait. Now you can simply open your real page

Re: [flexcoders] Re: flex debuging

2010-07-30 Thread Robert VanCuren Jr
builder run an exe. On Fri, Jul 30, 2010 at 5:21 PM, Robert VanCuren Jr robert.vancuren...@gmail.com wrote: In Flex / Flash builder the debugger hooks up to the first swf that is loaded once it is waiting. So you can make a debug configuration that points to http://localhost/fake.swf. When you

Re: [flexcoders] Re: Flash Debugger crashing in Firefox?

2010-07-13 Thread Robert VanCuren Jr
http://www.riaxe.com/blog/flex/flex-firefox-flash-debug-player-crash-solved/ On Tue, Jul 13, 2010 at 3:40 PM, kris range krisra...@gmail.com wrote: Something like this happens to me on Safari OS X. If an flash application is loading or doing something and I go to another page, I'll usually

[flexcoders] Yes/No RadioButton

2010-06-11 Thread Robert VanCuren Jr
use a check box instead

Re: [flexcoders] Problems With my XML Created Array Collection

2010-04-19 Thread Robert Moss
the ArrayCollection to populate value objects that we were using to populate our list. So before the loop we added, if xmlObject is an ArrayCollection than loop else populate VO with returned data. Worked without issues ever since. Robert From: thomas

Re: [flexcoders] Re: Problems With my XML Created Array Collection

2010-04-19 Thread Robert Moss
there because I always need it returned as an array collection to populate the tilelist but have no idea how to loop? Cheers for your help so far. --- In flexcod...@yahoogro ups.com, Robert Moss rdm0...@... wrote: We had the same issue, and in our case it was an easy fix. When we read

Re: [flexcoders] Re: Problems With my XML Created Array Collection

2010-04-19 Thread Robert Moss
and trap for it. From: James garymoorcroft_...@yahoo.co.uk To: flexcoders@yahoogroups.com Sent: Mon, April 19, 2010 12:47:15 PM Subject: [flexcoders] Re: Problems With my XML Created Array Collection Hi Robert. Thanks so much for that my friend. I have some

Re: [flexcoders] Re: Problems With my XML Created Array Collection

2010-04-19 Thread Robert Moss
who know their stuff as much as I can :-) --- In flexcod...@yahoogro ups.com, Robert Moss rdm0...@... wrote: In essence yes, I do not think I would do it as part of the button click, but instead clear it before the IF in the result handler with LinksFullAC. source = new Array

Re: [flexcoders] swf information.

2010-04-16 Thread Robert VanCuren Jr
You can parse this information from the swf file it self when you load it. I did this once and it was pretty easy. I needed to know the version and frame rate so my flex app could slow down to display as2 swfs. Anyways if you dont want to write it your self there are several libraries. Here is a

Re: [flexcoders] Performance feedback PLEASE

2010-04-09 Thread Robert VanCuren Jr
53 fps Intel Core 2 Duo T9400 @ 2.53GHz Flash player version 10,1,51,95 On Fri, Apr 9, 2010 at 4:51 AM, Allan Pichler dreamc...@gmail.com wrote: I was wondering if anyone could take a quick glance at my AS3 3d renderer http://api.pluton.webhouse.dk/pool3d/pool3d.html and reply what FPS

Re: [flexcoders] Loading component at runtime with out compile time linking

2010-04-09 Thread Robert VanCuren Jr
There are a couple ways of doing this. You could try RSLs or Modules. Here is a link that talks about doing exactly what you are talking about. http://flexinonroids.wordpress.com/2009/05/27/flex-3-dynamically-loading-components-at-runtime/ On Fri, Apr 9, 2010 at 3:39 AM, Gireesh

Re: [flexcoders] Get name of function from within the function? Get arguments for any function?

2010-04-05 Thread Robert VanCuren Jr
You can use the arguments class to get some of this info. http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/arguments.html#propertySummary http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/arguments.html#propertySummaryfor example arguments.callee returns a reference to the

Re: [flexcoders] Re: Flex load testing

2010-04-02 Thread Robert Emminger
I'll see what I can do about writting up an example. I am a Jr in Flex, Java, I'm swifft. On Fri, Apr 2, 2010 at 10:04 AM, sanjitcs sanjit.f...@gmail.com wrote: @Mete thanks you for your reply. Yes, I am using LCDS 3.0. I have seen the Java based testing tool. I have gone through it. I

RE: [flexcoders] How can i localize and internationalize a flex application

2010-03-24 Thread Robert Vollmar
Could you please send the compiler options which you have set in Flex Builder? From: Gordon Smith Sent: Wednesday, March 24, 2010 2:05 PM To: flexcoders@yahoogroups.com Cc: Robert Vollmar Subject: RE: [flexcoders] How can i localize and internationalize a flex application If these folders exist

Re: [flexcoders] Adding a button Icon

2010-03-15 Thread Robert VanCuren Jr
you need to use the setStyle method because icon is a style not a property. myButton.setStyle(icon, source); On Mon, Mar 15, 2010 at 8:20 AM, criptopus sd_br...@ntlworld.com wrote: // Add TLink To Issue Box issButArray.push(new Button());

Re: [flexcoders] Re: Adding a button Icon

2010-03-15 Thread Robert VanCuren Jr
? - New error? --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Robert VanCuren Jr robert.vancuren...@... wrote: you need to use the setStyle method because icon is a style not a property. myButton.setStyle(icon, source); On Mon, Mar 15, 2010 at 8:20 AM, criptopus sd_br

Re: [flexcoders] How to tell if colorpicker is open

2010-02-27 Thread Robert Moss
] How to tell if colorpicker is open To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Date: Saturday, February 27, 2010, 1:04 AM   There should be open/close events On 2/26/10 2:29 PM, Robert Moss rdm0...@yahoo. com wrote:         I

[flexcoders] How to tell if colorpicker is open

2010-02-26 Thread Robert Moss
I can not seem to find a way to tell programmatically if the colorpicker is open. Internally it uses the showingDropdown property, but it is not exposed. I could use myColorPicker.mx_internal::showingDropdown but there has to be a better way. I'm sure I'm just missing it.

[flexcoders] Opening popups while in full-sceen mode would crash the browser

2009-07-14 Thread Robert Csiki
Hello, I created a bunch of MXML components and the application them as popups PopUpManager.createPopup(), but when executing that while the application is in full-screen mode, the browser crashes. Reproducible with Windows/Firefox and IE, and Flash Player 9. Any idea why? Has anyone seen

Re: [flexcoders] How to link effects so that one starts after one finishes?

2009-07-10 Thread Robert VanCuren Jr
You could also use a sequence effect that would play the effects on after the other mx:Sequence id=WipeRightUp mx:children mx:WipeRight duration=1000/ mx:WipeUp duration=1000/ /mx:children /mx:Sequence On Thu, Jul 9, 2009 at 11:10 AM, claudiu ursica

[flexcoders] best way to summarize and display data

2009-07-08 Thread Ramsey, Robert L
Hi, I'm trying to think of the best way to let a user summarize and display data. The data is in xml format and looks like this(simplified some): orgs org nameFoo/name date01-01-2009/date

Re: [flexcoders] UITextField alignment question

2009-07-01 Thread Robert VanCuren Jr
Are you using embedded fonts? When you embed a font they will display 1 pixel higher than a non embedded font. There are a couple work arounds if this is the case. On Wed, Jul 1, 2009 at 10:24 AM, Daniel Freiman freima...@gmail.com wrote: Are you accounting for the 2 pixel border of the

Re: [flexcoders] addChild using actionscript

2009-06-29 Thread Robert VanCuren Jr
You are trying to remove a child that has never been added. In your addCheckBox function you are creating a new CheckBox and then adding it which is fine but then in your removeCheckBox function you are again creating a brand new CheckBox and trying to remove it. This will not work because the new

[flexcoders] working with multiple httpservice requests

2009-03-25 Thread Ramsey, Robert L
Hi, I've been trying to find a better way to handle working with multiple httpservice requests that all need to complete before I run a function. What I've been doing is something like this: mx:HTTPService id=s1 url=somewhere result=s2.send()/ mx:HTTPService id=s2 url=somewhere

[flexcoders] help with httpService Error

2009-03-05 Thread Ramsey, Robert L
Hi, I am using FlexBuilder 3.0.2 and am getting a new error on new projects when using the httpService feature. Here is my httpService control, as copied from an older project which still works: mx:HTTPService id=getmeta method=POST result=gotmeta()

Re: [flexcoders] Localization without SDK modification?

2009-02-20 Thread Robert Vollmar
Hello, The frameworks/flex-config.xml file contains this entry, which tells the compiler to look for a directory for the locale: path-elementlocale/{locale}/path-element First, you can remove this entry or create an empty frameworks/locale/Your_Locale directory to make the compiler happy. I

Re: [flexcoders] Re: Localization without SDK modification?

2009-02-20 Thread Robert Vollmar
the empty directory inside the installed Flex Builder SDK? That would still mean manually modifying the SDK, though just by adding an empty directory. Thanks, Borek --- In flexcoders@yahoogroups.com, Robert Vollmar rvoll...@... wrote: Hello, The frameworks/flex-config.xml file contains this entry

[flexcoders] Making the Slider Track behaving like a ProgressBar

2009-01-13 Thread Robert Csiki
Hello, Is there an easy way to achieve this? I am working on a video player and I want to visualize the content buffering the same way say YouTube's one (and most other video players I've seen) does. Thanks Robert

[flexcoders] How setup flash player interface language

2009-01-02 Thread Robert Was
After fp debug version update 10 player displays his interface (interesting for me: trace window and error messages) in language of my non-english OS. Is it possible to revert to old english translation? -- Flexcoders Mailing List FAQ:

Re: [flexcoders] FlexTasks: Compc for Flash Player 10

2008-12-23 Thread Robert Stehwien
On Mon, Dec 22, 2008 at 3:50 PM, Tyler Kocheran rfkroc...@gmail.com wrote: I'm aware that I can do compc on commandline with FP10, but is it possible yet to do it in FlexTasks for Ant? I haven't looked at the Flex 4 SDK yet, I've just been getting nightly builds of 3. You should be able to

Re: [flexcoders] FlexTasks: Compc for Flash Player 10

2008-12-22 Thread Robert Stehwien
Add the following flag to target flash player 10 compc -target-player=10.0.0 [other options] Also recommend you make sure you are using the 3.2+ SDK $ which compc /Applications/Adobe Flex Builder 3/sdks/3.2.0/bin/compc --Robert On Sat, Dec 20, 2008 at 5:07 PM, Tyler Kocheran rfkroc...@gmail.com

[flexcoders] Lua Alchemy v0.1a Released

2008-12-22 Thread Robert Stehwien
Lua Alchemy is a port of the Lua programming language for ActionScript using Alchemy. Using v0.1a inside Flash/Flex you can create any ActionScript class available at runtime, call functions, get/set properties on ActionScript objects and use Lua functions as an ActionScript function (including

RE: [flexcoders] txtbx focus at login

2008-12-11 Thread Robert Byrne
name=wmode value=opaque / and    embed ... wmode=opaque .../embed But none of this is working with FF.  I may have to let this go and thank my lucky stars my clients are all internal and most of them use IE! Thanks for all the support. -Robert --- On Fri, 12/5/08, Tracy Spratt [EMAIL PROTECTED

[flexcoders] Error 2032, but only in IE with php session_start

2008-12-11 Thread Ramsey, Robert L
Hi, I have an app that makes http requests to a php script on the server. If I have session_start() in the back end file so I can use session variables in php, I get the following error: [RPC Fault faultString=HTTP request error faultCode=Server.Error.Request faultDetail=Error:

[flexcoders] txtbx focus at login

2008-12-05 Thread Robert Byrne
? Thanks - Robert. Here's some code: MXML: mx:Label text=@Resource(key='loginId', bundle='Labels') fontWeight=bold width=60 / mx:TextInput id=usernameInput width=140 / AS: override protected function init():void{   super.init();   this.logger.debug(init);   this.loginForm.defaultButton

Re: RES: [flexcoders] Flex : Execution of Alert.show() starts for the last one

2008-12-05 Thread Robert Byrne
Flex does not work like javascript.  Javascript would wait for a response from alert 1 before executing alert 2.  Flex executes them all as Luciano points out.  It is the same thing with confirmation boxes.  You will need to bind events to them where as in JS you might put them inside of 'if'

RE: [flexcoders] txtbx focus at login

2008-12-05 Thread Robert Byrne
I'm looking into this now, but won't get back to it for a while: http://www.igorcosta.org/?p=179 There also a bit about it here: http://www.htmlforums.com/archive/index.php/t-64150.html Thanks for the pointers. -Robert --- On Fri, 12/5/08, Tracy Spratt [EMAIL PROTECTED] wrote: From: Tracy

RE: [flexcoders] Flash being cached

2008-12-04 Thread Robert Byrne
In IE: Tools - General - Settings (Temporary Internet Files) - Every visit to the page (first radio option) Personally I liked the HTML wrapper option best as a solution for developers and clients.  --- On Tue, 12/2/08, Wildbore, Brendon [EMAIL PROTECTED] wrote: From: Wildbore, Brendon

Re: [flexcoders] Re: ItemRenderer, mislabels scrolling

2008-12-03 Thread Robert Byrne
solved.  Thank you all so much for helping me with this.  I've been reading some of the other threads and find it alluminating.   Thanks again. -Robert --- On Wed, 12/3/08, ross_w_henderson [EMAIL PROTECTED] wrote: From: ross_w_henderson [EMAIL PROTECTED] Subject: [flexcoders] Re: ItemRenderer

[flexcoders] ItemRenderer, mislabels scrolling

2008-12-02 Thread Robert
When scrolling, the labels on the grid turn into those that the recycled item renderer used. I tried using this.data to overwrite the values every time. The new listData object has the correct label and so I thought it was working, but there is a url I need in the current rows' XML for the

Re: [flexcoders] Re: ItemRenderer, mislabels scrolling

2008-12-02 Thread Robert Byrne
change event that is dispatched to update my values.  Any other ideas?   Thanks, -Robert   --- On Tue, 12/2/08, ross_w_henderson [EMAIL PROTECTED] wrote: From: ross_w_henderson [EMAIL PROTECTED] Subject: [flexcoders] Re: ItemRenderer, mislabels scrolling To: flexcoders@yahoogroups.com Date

[flexcoders] Flex/Flash news needed for TechNewsFetcher.com

2008-10-29 Thread Robert Walters
Anyone know of any good Flash/Flex news sites that we can add to TechNewsFetcher.com? Thanks...Rob

[flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Ramsey, Robert L
Hi, I am working on a scheduling application and need some help working with dynamically created clickable objects. I've been using linkbuttons, but anything that is clickable will work. I have an array that may contain 0-N items, where N can be any number. If N0, I need to create

RE: [flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Ramsey, Robert L
take time to read about event handling in Flex/AS3 as it's a basic and very important concept! On Thu, Sep 25, 2008 at 4:33 PM, Ramsey, Robert L [EMAIL PROTECTED] wrote: Hi, I am working on a scheduling application and need some help working with dynamically created clickable objects

RE: [flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Ramsey, Robert L
://livedocs.adobe.com/flex/3/html/events_01.html On Thu, Sep 25, 2008 at 5:12 PM, Ramsey, Robert L [EMAIL PROTECTED] wrote: I have looked through the examples, and that's what is confusing me. All of the examples show exactly what you have written: myFunction(event:MouseEvent) { Alert.show

[flexcoders] Trees for Every one

2008-09-10 Thread Robert Thompson
Since the left pane metaphor of a tree organizing hierarchical information is such a widely used controls. Is there a way we can all pull together and turn the Adobe Component Explorer into an application that supports Drag and Drop. I still do not see a Download .ZIP for this particular

[flexcoders] Webinar tommorrow at 11am PST, 1pm EST (directly related to FLEX)

2008-09-10 Thread Robert Thompson
Don't forget Webinar tomorrow, 11am PST, 1pm EST. Make sure you ask if FLEX is the interface, and Scene7 imaging technology (and cataloging) is just part of the FLEX design strategy, and make sure you ask if you'll be competing against Against Adobe head to head potentially, in both Small

Re: [flexcoders] Hi

2008-09-09 Thread Robert Thompson
Nancy, We might be talking about different things. (1) Under the FLEX 2.0 examples, you could, for example, go to the FLEX Style Explorer, http://www.adobe.com/devnet/flex/samples/style_explorer/ (2) Then click on Experience the application which leads you to here,

Re: [flexcoders] Hi

2008-09-09 Thread Robert Thompson
talking about the bottom right pane of the explorer that displays the source of the selected control. The sources of the explorer are available with Flex Builder. They are under sdks\version\samples\explorer. On Tue, Sep 9, 2008 at 8:24 AM, Robert Thompson [EMAIL PROTECTED]wrote: Nancy, We

Re: [flexcoders] Can't remember the name of the application.

2008-09-09 Thread Robert Thompson
You might want to get a Mac for your next computer. The Spyglass search beats Google Desktop and Mickeysoft's new Search hands down. I found the explorer applications in the sdk's (see post: Re: Hi) just by typing sdk The results came up as I typed and I just clicked on the folder. I

Re: [flexcoders] Hi

2008-09-09 Thread Robert Thompson
Hello Narayana, There are no kings on this list so feel free to ask a question. I have had contact with someone at Adobe about an upcoming portal so some of issues people have will go away hopefully. In ActionScript 2.0, I don't have a file open but just from memory, you access the actual

Re: [flexcoders] Hi

2008-09-08 Thread Robert Thompson
That's a great example alright...many applications lend themselves well to this kind of structure. HOWEVER: There does not appear to be a Right-Click VIew Source which brings up a left pane and then allows you to download source. With a lot on most people's plate, this is a good starter

Re: [flexcoders] Hi

2008-09-08 Thread Robert Thompson
Yes I've noticed that for nearly every other app. But not this one, http://examples.adobe.com/flex3/componentexplorer/explorer.html I've tried in on Firefox and Safari. -r On Sep 8, 2008, at 5:11 PM, Paul Andrews wrote: - Original Message - From: Robert Thompson To: flexcoders

Re: [flexcoders] SEO and Flash content

2008-09-08 Thread Robert Thompson
Josh could you detail the googlebot and expand on what you write below? -r On Sep 8, 2008, at 10:19 PM, Josh McDonald wrote: Google most definitely re-indexes from various different data- centres (read: class B addresses) and I'm sure also occasionally using random real user-agents, and

[flexcoders] Re: Not receiving BrowserChangeEvent.BROWSER_URL_CHANGE in app - only in IE 7

2008-09-04 Thread Robert Lee
In the end, the problem was with history.js. There is a fix posted with flex bug SDK-14370. I did have to fix the posted history.js - a curly brace position problem. Both IE and Firefox work fine now. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Make sure you are

[flexcoders] Re: FlexMDI Window help wanted

2008-09-02 Thread Robert Mangold
Lynn, I haven't used Cairngorm, so I can't comment on its effect. Like you, the only documentation I found is on the Google site. I would very much like to contribute toward the documentation effort, just as soon as I get out from under crunch time with this project. RobM Thanks, I used

Re: [flexcoders] Flexstore license?

2008-09-02 Thread Robert Thompson
including that kind of information in a post send to flexcoders@yahoogroups.com instead of directly to my e-mail address. -r On Sep 2, 2008, at 4:51 AM, Tom Chiverton wrote: On Monday 01 Sep 2008, Robert Thompson wrote: I've reported you to Yahoo Abuse and Google Abuse for your cursing

Re: [flexcoders] Who is Robert Thompson?

2008-09-02 Thread Robert Thompson
for the long term future. I hope this explains the matter, and please, only the OWNER OF THE FORUM contact me PERSONALLY by e-mail, PLEASE DO NOT let this escalate into a Forum vs. Robert. That was never my intention, and Josh really let off some fire-works with that F___ off, regardless

Re: [flexcoders] Flexstore license?

2008-09-02 Thread Robert Thompson
healths best interest. -r On Sep 2, 2008, at 1:16 PM, Battershall, Jeff wrote: Robert, You're like the fox in the proverbial hen house just kickin' up a storm when all us chickens just want to lay some eggs (hopefully golden ones). You're a man with some strong opinions and I'll give you

Re: [flexcoders] Flex and Scene7, Flexstore license, List etiquette

2008-09-02 Thread Robert Thompson
with foul language (one need only hang out with me briefly) I think this forum is not the place for it, and ask that if you take the time to type it out, you take the time to take a deep breath and use those backspace and delete keys. OK, play nice, issue closed. Robert was saying

Re: [flexcoders] Flexstore license?

2008-09-01 Thread Robert Thompson
me (right now). A secret petition says a lot about you, not me. -r On Sep 1, 2008, at 6:29 AM, Michael Schmalle wrote: I think your comment below is level headed and good, and here's where I stop. You know how many times you said your going to stop? Robert, your alone and you know

Re: [flexcoders] Flexstore license?

2008-09-01 Thread Robert Thompson
, it says I'm on the other side. Mike On Mon, Sep 1, 2008 at 12:01 PM, Robert Thompson [EMAIL PROTECTED]wrote: You are among a group. I have received some e-mails discussing the nature of bullies on the list. If there is any reason I don't stop it's because it's wrong to let a message like

[flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Robert Thompson
Just as a note on ActionScript 3.0 Editing in FLEX. Papervision3D just posted news of their contest, endorsed FDT Enterprise Edition as their preferred ActionScript Editor. From Papervision3D.org, quote, 2nd Place- VectorVision - Winner of FDT Enterprise Edition (our preferred

Re: [flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Robert Thompson
it is that keeps offending your peeps. -r On Sep 1, 2008, at 3:47 PM, Paul Andrews wrote: Robert loads of people already know about FDT, many people here and on flashcoders use it. Nobody here wants anyone acting like some public service announcer here on the forums. It's highly

Re: [flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Robert Thompson
that. Hypocrisy. -r On Sep 1, 2008, at 3:47 PM, Paul Andrews wrote: Robert loads of people already know about FDT, many people here and on flashcoders use it. Nobody here wants anyone acting like some public service announcer here on the forums. It's highly patronising to list. It'all going

Re: [flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Robert Thompson
it.” So, Robert, my suggestion to you (and it’s just a suggestion – I would never presume to tell you what to do) is to just let it go. If you have an issue with Josh, please take it off-list. After all, it is just between you and Josh. Also, just as a last little observation, Robert, “thou

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Robert Thompson
I think those posts have ended, at least by me. I said very clearly in one post to that I would make an effort to stay focused on [flexcoders] which is why i've been using that name when referring to something. my last post was on FDT Enterprise - that's all. and then the ball came

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Robert Thompson
Aussies... Australian swimmers are pretty awesome. The track team I was on in college and the swim team used to hang out a lot. I dated an all- american swimmer (best looking girlfriend I've had up to that point), and I saw some of the swim team members at some of last few Olympics and

Re: [flexcoders] Flexstore license?

2008-08-31 Thread Robert Thompson
To answer your question about any purchaser of Adobe products having to license an example they put out for use. Microsoft, Adobe, nearly every company puts (C) Copyright statements in it's examples. This is to prevent competitors from outright distributing code they have no right to.

Re: [flexcoders] Re: download many files at a time

2008-08-31 Thread Robert Thompson
There is one out there I remember seeing it. It's a Flash Downloader also and looks similar to the Safari Download Dialog in that it stacks the progress bars on top of each other. I'll look for it and see if I can post a link to it for you on this forum. Just remember me as that guy

Re: [flexcoders] Flexstore license?

2008-08-31 Thread Robert Thompson
is technically Adobe Flash. 4)Papervision plug-in? What are you talking about? - Original Message - From: Robert Thompson To: flexcoders@yahoogroups.com Sent: Sunday, August 31, 2008 12:17 PM Subject: Re: [flexcoders] Flexstore license? To answer your question about any purchaser of Adobe

Re: [flexcoders] Flexstore license?

2008-08-31 Thread Robert Thompson
, or come talk to the Sheriff in my town. I take your comment as a direct threat. -r On Aug 31, 2008, at 6:36 PM, Josh McDonald wrote: Look buddy, everybody in here's been real polite so far. Fuck off. -Josh On Mon, Sep 1, 2008 at 3:17 AM, Robert Thompson [EMAIL PROTECTED]wrote: To answer

Re: [flexcoders] Flexstore license?

2008-08-31 Thread Robert Thompson
:37 AM, Robert Thompson [EMAIL PROTECTED]wrote: Listen, I didn't post the question but was answering it. And told the person it's the best thing to do to contact them and that it's standard to (C) samples so they aren't misused. So get off my back. As for your your expletive, I'll make

Re: [flexcoders] Flexstore license?

2008-08-31 Thread Robert Thompson
Because of your cursing, I won't respond to any more questions on this thread. However, take the we out of your statement telling me to F___ O___ and calling my detailed responses schizophrenic paranoid delusional. All others, attend the Webinar and try to protect your future by simply

Re: [flexcoders] Flexstore license?

2008-08-31 Thread Robert Thompson
was perhaps ill-advised to put that in writing, but frankly, he just wrote what others are by now no doubt thinking. Josh contributes MUCH more useful stuff to this list than you do Robert, so if you really have other people's interests at heart you'd not be trying to get him kicked off this list

Re: [flexcoders] Flexstore license?

2008-08-31 Thread Robert Thompson
. Josh contributes MUCH more useful stuff to this list than you do Robert, so if you really have other people's interests at heart you'd not be trying to get him kicked off this list. The fact that you are suggests to me that your ego has outgrown your common sense. Guy On 01/09/2008, at 9

Re: [flexcoders] Flexstore license?

2008-08-31 Thread Robert Thompson
there is no point in keeping this going. - Original Message - From: Robert Thompson To: flexcoders@yahoogroups.com Sent: Sunday, August 31, 2008 9:17 PM Subject: Re: [flexcoders] Flexstore license? I'm simply responding to the F___ O___ statement. There's no ego here. Everyone contributes different

Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-30 Thread Robert Thompson
get away with more. Robert, I don’t think we’ve met, and I haven’t gone back to see your past history with Flex, but I would like to ask you to think twice about the way you are trying to get your message across before hitting send. Sending high priority messages, and maybe not having

Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-30 Thread Robert Thompson
development to product management and therefore must now choose his words carefully. I'm still in development so maybe I can get away with more. Robert, I don't think we've met, and I haven't gone back to see your past history with Flex, but I would like to ask you to think twice about

Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-30 Thread Robert Thompson
and therefore must now choose his words carefully. I'm still in development so maybe I can get away with more. Robert, I don't think we've met, and I haven't gone back to see your past history with Flex, but I would like to ask you to think twice about the way you are trying to get your message

Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-30 Thread Robert Thompson
Microsoft and Sun and increase the viability of using Flex in corporations. For me, at my company we were choosing between Silverlight, JavaFX, Doja and Flex. It was the fact that Microsoft had released Photoshop Express that helped to sell Flex. That is my .02. Robert Thompson wrote: I agree

Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-30 Thread Robert Thompson
to be room for everyone. Paul That is my .02. Robert Thompson wrote: I agree. Let's see what happens. Everyone here is an individual that can judge for themselves. I myself and quite concerned. I hope to be more informed than the Press Releases, White-paper and list of Clients already served

Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-30 Thread Robert Thompson
, that's amost 20% of Apple's market cap. Also, I really don't want them to ruin everything, i dont wana end up saying IFlash , IFlex, IPhotoshop :) - Original Message - From: Robert Thompson To: flexcoders@yahoogroups.com Sent: Saturday, August 30, 2008 9:40 PM Subject: Re

[flexcoders] Re:FlexMDI Window help wanted

2008-08-29 Thread Robert Mangold
Greetings, I am not on my development machine at the moment to verify my memory, but I recall having a similar problem when using an MDIWindow as a drop target. When dropped, the widget (a Datagrid in my case) would stubbornly snap to the upper left corner of the MDIWindow. My solution was

Re: [flexcoders] Re: end/ Q: What is Flexcoders? A: All of us in this together who have purchased FLEX

2008-08-29 Thread Robert Thompson
get my contracts in, who have spent tens of thousands of dollars on FLEX. -r On Aug 28, 2008, at 6:32 PM, Tim Hoff wrote: Cool Robert, Hopefully, we can just put this to rest. Thanks, -TH --- In flexcoders@yahoogroups.com, Robert Thompson [EMAIL PROTECTED] wrote: I think the simple answer

Re: [flexcoders] LMBFAO

2008-08-29 Thread Robert Thompson
Do you mean, LMBFAO ??? On Aug 29, 2008, at 11:34 AM, Tim Hoff wrote: LMAO

[flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-29 Thread Robert Thompson
OpenLaszlo.org supports Flex, Flash, Silverlight, AJAX, soon Quicktime First of all to the gentlemen suggesting I'm slamming the list. I am not and I take offense at that. Don't accuse me when I am responding to someone else. I posted only 2 original posts and they were in the best

Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-29 Thread Robert Thompson
for encouraging the ranting, I just couldn't not reply when this amazing email came into my inbox. Robert, I'll address each paragraph one at a time and tell you exactly why this message, as well as the ones you have been sending in the last day or so, are in fact complete spam and worthy of the comments you

Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-29 Thread Robert Thompson
, Aug 29, 2008 at 5:59 PM, Doug McCune [EMAIL PROTECTED] wrote: God forgive me, for I have sinned. I am responding to a thread I know I absolutely should not have replied to. Sorry for encouraging the ranting, I just couldn't not reply when this amazing email came into my inbox. Robert, I'll

Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-29 Thread Robert Thompson
Stop making personal comments, okay. Stop painting me black...it IS about options. You'll find out if you take the blinders off. Just leave it alone and stop making it personal. On Aug 29, 2008, at 7:17 PM, Paul Andrews wrote: - Original Message - From: Robert Thompson [EMAIL

Re: [flexcoders] Relevant and Helpful :: Scene7.com Webinar

2008-08-28 Thread Robert Thompson
, which is ain't, which you still use apparently from the loss of brain cells from your self admitted smoking. On Aug 27, 2008, at 9:53 PM, Jon Bradley wrote: On Aug 27, 2008, at 5:56 PM, Robert Thompson wrote: Will they go too far? Microsoft did. Do you own research on that if you

[flexcoders] Results of Direct Phone Call to Scene7.com

2008-08-28 Thread Robert Thompson
First of all, this is very relevant to the FLEX coders development community. I have just talked some another person at Scene7.com and the indication I seemed to have gotten is that there will be a resulting complication in the area of eCommerce and Product Catalog Development to the

Re: [flexcoders] Results of Direct Phone Call to Scene7.com

2008-08-28 Thread Robert Thompson
I agree on the iPhone issue, I'd never go with ATT either because they are the ultimate Greed. But the iPhone pricing thing I think was a mistake. Apple does not personify greed at all to me -- Quality. I have both MacPro and a DELL, develop in XCode and Vista for FLEX and Flash CS3. The

Re: [flexcoders] Thanks

2008-08-28 Thread Robert Thompson
sure Adobe does not fall victim to what we all as human being can, Power. And the Flash Player is now more powerful in an abstract since than even Windows was in the 90's. I'll leave it all at that. -r On Aug 28, 2008, at 5:14 PM, Guy Morton wrote: Hi Robert I agree

  1   2   3   4   5   6   7   >