RE: [flexcoders] newline in a tooltip?

2007-09-21 Thread Merrill, Jason
Make the text htmlText and then use or sometimes you may need two tags Jason Merrill Bank of America GT&O Learning & Leadership Development eTools & Multimedia Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nath

RE: [flexcoders] Are you going to MAX?

2007-09-21 Thread Merrill, Jason
I'm there! Jason Merrill Bank of America GT&O Learning & Leadership Development eTools & Multimedia Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Friday, September 21, 2007 9:44 A

RE: [flexcoders] Can I write to a file from FLEX Application

2007-09-21 Thread Merrill, Jason
Local - no - unless you export to AIR or use a third party tool like Zinc. Server - yes - with server-side scripting like .NET or PHP. Jason Merrill Bank of America GT&O Learning & Leadership Development eTools & Multimedia Team From: flexco

RE: [flexcoders] Actionscript sprite within the Flex framework

2007-09-19 Thread Merrill, Jason
x27;t be, appcomplete is way late, long after host is ready. Can I see what your code looks like now? Both the app and the TestSprite. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Wed

RE: [flexcoders] Actionscript sprite within the Flex framework

2007-09-19 Thread Merrill, Jason
>>Change the extends Sprite to UIComponent nope - same error message - thanks though. Jason Merrill Bank of America GT&O Learning & Leadership Development eTools & Multimedia Team

RE: [flexcoders] Actionscript sprite within the Flex framework

2007-09-19 Thread Merrill, Jason
Alex, thanks, but changing to your code suggestion, I still get an error, Main Thread (Suspended: ReferenceError: Error #1069: Property host not found on MyTestApplication and there is no default value.) and I think it is because EntryClass.main() gets called on the event applicationComplete,

RE: [flexcoders] Actionscript sprite within the Flex framework

2007-09-19 Thread Merrill, Jason
Alex, thanks, but changing to your code suggestion, I still get an error, Main Thread (Suspended: ReferenceError: Error #1069: Property host not found on MyTestApplication and there is no default value.) and I think it is because EntryClass.main() gets called on the event applicationComplete, s

RE: [flexcoders] Actionscript sprite within the Flex framework

2007-09-19 Thread Merrill, Jason
DisplayObject although this probably isn't the correct way to fix it. mxmlApp.addChild(testSprite as DisplayObject); Steve On 9/19/07, Merrill, Jason <[EMAIL PROTECTED] <mailto:jason.merrill%40bankofamerica.com> > wrote:

RE: [flexcoders] Actionscript sprite within the Flex framework

2007-09-19 Thread Merrill, Jason
'should' work. I would try casting it as a DisplayObject although this probably isn't the correct way to fix it. mxmlApp.addChild(testSprite as DisplayObject); Steve On 9/19/07, Merrill, Jason <[EMAIL PROTECTED] <ma

[flexcoders] Actionscript sprite within the Flex framework

2007-09-19 Thread Merrill, Jason
I'm trying to do a primarily Actionscript 3 written Flex app writing within the Flex framework. Following Moock's Actionscript 3.0: The Essential Guide examples, I have set up a simple 3 file project, all files in the same folder. The app attempts to draw a circle on the stage. See code and erro

[flexcoders] Re: Will Microsoft's new Sliverlight Player Kill our beloved Flex?

2007-04-27 Thread Merrill, Jason
One person wrote: > Everybody uses Windows, almost all the workstations are windows. Macs > have IE working OK. Another responded: >>Think again. "Think again?" What kind of an argument is that? People keep brining up certain technlogies not working on Mac OS or Linux as a bad thing. Personall

RE: [flexcoders] Re: Programmatically create MovieClip frames?

2007-03-30 Thread Merrill, Jason
to include the appropriate bitmapData. Pretty simple stuff... > > So, to address the original poster: MovieClip is just a mirage! Think of it > like its got a scarier name like "CompiledSWF" and treat it like a blackbox. > It'll make your l

RE: [flexcoders] How do I read Response after FileReference uploads a file?

2007-03-30 Thread Merrill, Jason
Stupid Outlook hotkeys. What I meant to say was: In Flash 8 AS2 it was just: listener_obj.onComplete = function(file:FileReference):Void { } Where file was the complete file object on the result which had all the info you needed. Should be something similar in AS3. Jason Merrill Bank of

RE: [flexcoders] How do I read Response after FileReference uploads a file?

2007-03-30 Thread Merrill, Jason
It shouldn't be. In Flash 8/AS2 it was just: Jason Merrill Bank of America GT&O Learning & Leadership Development eTools & Multimedia Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thegators_2002 Sent:

RE: [flexcoders] Re: Make a component 'modal'

2007-03-30 Thread Merrill, Jason
I don't know as much about Flex architecture yet - just the basics, but I know in Flash 8 the PopupWindow component, when not enabled, is completely modal. I used that a lot for achieving modal windows. Don't know if that helps any in this case... I know you're looking to make your own component

RE: [flexcoders] Re: Programmatically create MovieClip frames?

2007-03-29 Thread Merrill, Jason
Matt, So Paul and I discussed our pointless bickering offlist and hugged it out. We're good now. Both of us however were just wondering about this question you have (me, so I could you, him for academic reasons) since we ironically agreed offlist neither of us could figure a good use case for

RE: [flexcoders] Re: Programmatically create MovieClip frames?

2007-03-29 Thread Merrill, Jason
>>Once you get more experience you will be able to understand better... only kidding, my 10 years of Flash experience is no match for your 6. Ok, you upped me there by 4 years. You must know more than me so I should just shut up. >>Seriously if you are only going to poo-poo his question then ma

RE: [flexcoders] Re: Programmatically create MovieClip frames?

2007-03-29 Thread Merrill, Jason
--- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Merrill, Jason" <[EMAIL PROTECTED]> wrote: > > You can use the Flash 9 AS3 preview to output AS3 compatible .swf > animations. - I guess I don't see what you need the

RE: [flexcoders] Re: Programmatically create MovieClip frames?

2007-03-29 Thread Merrill, Jason
Paul, if you're saying I need to re-read the thread, well I took your advice and I did, and yet nobody has really explained why adding frames programatically and adding instances of object to it would be useful. I guess I just don't see it when you can control instances of objects separately and u

RE: [flexcoders] Re: Programmatically create MovieClip frames?

2007-03-29 Thread Merrill, Jason
Does anyone have ideas, a trick, anything? //Matt --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Merrill, Jason" <[EMAIL PROTECTED]> wrote: > > Why would you want to? It seems whate

RE: [flexcoders] Can I catch an onRelease event from a swf file in Flex

2007-03-29 Thread Merrill, Jason
You need to know the button's instance name - then it's just a matter of addressing to capture the event: myFlashClip.myFlashButton.onRelease = function(){ dosomething } Jason Merrill Bank of America GT&O Learning & Leadership Development eTools & Multimedia Team __

RE: [flexcoders] Programmatically create MovieClip frames?

2007-03-28 Thread Merrill, Jason
Why would you want to? It seems whatever you're trying to do could be accomplished in some other way. Jason Merrill Bank of America GT&O Learning & Leadership Development eTools & Multimedia Team From: flexcoders@yahoogroups.com [mailto:[EMAI

RE: [flexcoders] Registration point woes

2007-03-26 Thread Merrill, Jason
You could adapt this for use: http://www.darronschall.com/weblog/archives/54.cfm Jason Merrill Bank of America GT&O Learning & Leadership Development eTools & Multimedia Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] OS X Dock implemented in Flex

2007-03-23 Thread Merrill, Jason
Cool - yeah, tell him to post the code. Been done lots in Flash/Actionscript before over the years - not Mac OS flavor necessarily, but menus that scale when the mouse gets closer. Regardless, I'd love to see the source as his implementation is quite nice. Jason Merrill Bank of America GT&O

[flexcoders] Apollo question here or there (was: Re: using itemRenderer with List, how can I set the icon?)

2007-03-20 Thread Merrill, Jason
an apollo list http://tech.groups.yahoo.com/group/apollocoders/ <http://tech.groups.yahoo.com/group/apollocoders/> - Original Message ----- From: "Merrill, Jason" <[EMAIL PROTECTED] <mailto:jason.merrill%40bankofamerica.com> > To: mailt

RE: [flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-20 Thread Merrill, Jason
've waited fairly patiently for a reply... On 3/19/07, Merrill, Jason <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: >>Anyone know where I can go and actually maybe get a response fr

RE: [flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-19 Thread Merrill, Jason
>>Anyone know where I can go and actually maybe get a response from >>someone? good grief.. http://en.wikipedia.org/wiki/The_Whiners From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis Sent: Monday, March 19,

RE: [flexcoders] O'Reilly's Programming Flex 2 book

2007-03-19 Thread Merrill, Jason
But it is still only a word document on my local machine. :-( It is due out in May as well. Rich On 3/16/07, Merrill, Jason < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: Does anyon

RE: [flexcoders] Re: O'Reilly's Programming Flex 2 book

2007-03-16 Thread Merrill, Jason
Amazon sent me a notification recently that the publication date has changed to May 15th. Paul --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Merrill, Jason" <[EMAIL PROTECTED]> wrot

[flexcoders] O'Reilly's Programming Flex 2 book

2007-03-16 Thread Merrill, Jason
Does anyone have this book yet? O'Reilly Press Programming Flex 2: The Comprehensive Guide to Creating Rich Media Applications with Adobe Flex by Kazoun, Lott (watch the wrap) http://www.amazon.com/Programming-Flex-Comprehensive-Creating-Applicatio ns/dp/059652689X/ref=pd_bxgy_b_img_b/002-80

RE: [flexcoders] standalone exe

2007-03-14 Thread Merrill, Jason
Autorun on Windows works with any .exe if the user has autorun enabled. Zinc provides a lot of added functionality to do things like change the registry, create files locally, create installers, screensavers, etc, but I don't know how easily you could use a Flex-created .swf with Zinc, or if you

RE: [flexcoders] Re: DB access in Apollo

2007-03-10 Thread Merrill, Jason
>>I don't it should be that difficult to built database connectivity like zinc uses. >>That way it can communicate with stand alone dbs like ms access, etc... But then you have to deal with setting up & installing that database on the user end. If it was built in to Apollo, it would be much eas

RE: [flexcoders] Passing complex objects (e. g. collection of name-value pairs) to server via either URLLoader or HTTPService using POST method

2007-03-09 Thread Merrill, Jason
SOAP webservices can do that. You don't have to convert to XML first, you can send your complex Actionscript object directly to the WDSL method and it transfers via SOAP (XML) protocol. You can receive in the same way. Jason Merrill Bank of America Global Technology & Operations Learning &

RE: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Merrill, Jason
Yeah, I know about those, but you're talking about creating files and reading them back - just seems like more work - so perhaps writing something like an XML file out and reading it back would have to do. I was thinking of something more native that didn't require as much serialization. Jason M

RE: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Merrill, Jason
>>SharedObject. You mean those little tiny 128k or whatever Shared Objects like from the Flash player or do you mean Apollo will have a more robust & larger Shared Object? Jason Merrill Bank of America Global Technology & Operations Learning & Leadership Development eTools & Multimedia Team

RE: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Merrill, Jason
How much data could Apollo store locally when offline? I think this is where some of the concern lies around not having an integrated database availble in Apollo. Does anyone know? Shared objects at least in Flash player 9 are pretty limited in size. Does Apollo plan to store data locally in a

RE: [flexcoders] Drawing in a Scrollable Canvas

2007-03-07 Thread Merrill, Jason
able Canvas, you probably need to adjust your coordinates by horizontalScrollPosition and verticalScrollPosition. But I haven't tried it to make sure this fixes the problem. - Gordon From: flexcoders@yahoogroups.com [mailto:

RE: [flexcoders] Drawing in a Scrollable Canvas

2007-03-07 Thread Merrill, Jason
I'm new to Flash 9/Flex AS3, but I know that in previous version of the Flash player and actionscript, the draw API would draw directly on the screen - in the indicated movieclip/sprite, so you would likely need to instead draw into a sprite container and move than with the panels instead of drawin

RE: [flexcoders] Fire effect

2007-03-02 Thread Merrill, Jason
Google is your friend. Google Actionscript Fire Effect and it comes up with this: http://www.flash-db.com/Tutorials/fire/ And this: http://www.sitepoint.com/article/flash-script-fire-effect Easy to adapt to AS3 and Flex Jason Merrill Bank of America Global Technology & Operations, Learn

RE: [flexcoders] Save a BitmapData as a local file

2007-03-01 Thread Merrill, Jason
Even if you could, you'd run into SharedObject size restrictions for most users as per their player default settings. Jason Merrill Bank of America Global Technology & Operations, Learning & Leadership Development eTools & Multimedia Team From

RE: [flexcoders] Announcing FlexLib - open source flex component library

2007-02-28 Thread Merrill, Jason
Awesome! I hope this grows into something really great. Jason Merrill Bank of America Global Technology & Operations Learning & Leadership Development eTools & Multimedia Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Beh

RE: [flexcoders] compiler behaviour question

2007-02-23 Thread Merrill, Jason
>>Time to move my cube to the basement...geesh. BILL Uh, we're gonna need to move your desk downstairs into Storage B. MILTON No...I...I... BILL Uh, we have some new people coming in and we need all the space we can get. MILTON No...no...no...no...but...but...but...I, I, I - BILL And if you

RE: [flexcoders] Can't we access MovieClips contained in embedded SWF's?

2007-02-16 Thread Merrill, Jason
>>My understanding from looking around is that with the document class in Flash 9, >>you can only add items to the stage through code. That seems to negate a lot of the >>advantage of using a graphical interface.. Remember, it's not really Flash 9, it's really just Flash 8 with a preview of AS

RE: [flexcoders] Re: should i convert pngs to jpegs before embedding them in a flash movie?

2007-02-13 Thread Merrill, Jason
>>The SWF compiler when it embeds them should be flattening them. The Fireworks PNG files are layered, but the Flash Player does not support layered PNGs. yes it does. We have a Flash 8 app that shows layered Fireworks .pngs just fine. We even open the graphics back up in Fireworks, make edits

RE: [flexcoders] Re: should i convert pngs to jpegs before embedding them in a flash movie?

2007-02-13 Thread Merrill, Jason
Behalf Of jpc14_99 Sent: Tuesday, February 13, 2007 2:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: should i convert pngs to jpegs before embedding them in a flash movie? --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoo

RE: [flexcoders] should i convert pngs to jpegs before embedding them in a flash movie?

2007-02-13 Thread Merrill, Jason
>>PNG is a compressed format. Which flavor of PNG? Some PNGs are, but try an unflattened Fireworks PNG, it's huge and does not compress that I am aware of. Even so, Fireworks PNGs are much larger than regular flat PNG files or JPGs. Jason Merrill Bank of America Learning & Organizational Effe

RE: [flexcoders] On E4X Programming

2007-02-13 Thread Merrill, Jason
There's a lot in the Flex help docs... or do you mean outside of the Flex docs? Try this: http://life.neophi.com/danielr/2006/04/flex_2_beta_2_actionscript_3_a.ht ml Jason Merrill Bank of America Learning & Organizational Effectiveness

RE: [flexcoders] Do I *REALLY* need Flex Data Services for WebServices?

2007-01-29 Thread Merrill, Jason
Don't let the price of FDS scare you if your core question is simply, "Do I need FDS to use Webservices in Flex?" Then the answer is no. Jason Merrill Bank of America Learning & Organizational Effectiveness

RE: [flexcoders] Convert Videos to FLV via Web

2007-01-27 Thread Merrill, Jason
can find some examples on FFMPEG site and on some blogs. Hope that helps.. -abdul On 1/25/07, Merrill, Jason <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: If I could tap on to thi

RE: [flexcoders] Help me find the Amazon book spider example

2007-01-26 Thread Merrill, Jason
This isn't quite the same link, but it is a Flex app that uses Amazon's webservices API: http://d-p.com/Internet-Development-Services/ria/amazon.cfm For how to do, You can start reading here: http://jeff.mxdj.com/using_amazons_itemsearch_webservice_from_flex.htm http://www.amazon.com/gp/brows

RE: [flexcoders] Re: Flex 3.0 - What happened to letting Flex 2 bed in?

2007-01-25 Thread Merrill, Jason
"We need to do a better job of being more open about releases and allowing our customers to participate openly in shaping the products." I agree - I haven't heard much from Adobe on Flashcoders lately re: the Flash 9 IDE (Flash CS3?) - JD @ Adobe did respond to an unrelated question I had yester

RE: [flexcoders] Convert Videos to FLV via Web

2007-01-25 Thread Merrill, Jason
If I could tap on to this thread, anyone know of anything that does the same using .NET? Jason Merrill Bank of America Learning & Organizational Effectiveness From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Flex 3.0 - What happened to letting Flex 2 bed in?

2007-01-25 Thread Merrill, Jason
Thanks David and Ted - great to see Adobe so active on this list - helps puts us as ease and helps with product buy-in. Makes you all seem so less evil ;). Jason Merrill Bank of America Learning & Organizational Effectiveness

RE: [flexcoders] HTTPService Vs WebService

2007-01-25 Thread Merrill, Jason
>>The simplest dinstinction is that one is SOAP and the other one is XML. not quite that simple - not to confuse anyone further, but SOAP is actually an XML-based protocol... :) Jason Merrill Bank of America Learning & Organizational Effectiveness

RE: [flexcoders] Flex 3.0 - What happened to letting Flex 2 bed in?

2007-01-25 Thread Merrill, Jason
>>I am literally picking up my F2 box today. Knowing F3 Beta is >>about to start is a bit f'd up. Any rumors/guesses as to when roughly we might see Flex 3? I'm getting ready to buy Flexbuilder 2 in the next month, but wonder if I should wait until the second quarter. Seems there are rumors Fla

RE: [flexcoders] Flex Example Sites online please

2007-01-24 Thread Merrill, Jason
http://www.adobe.com/devnet/flex/?tab:samples=1 Jason Merrill Bank of America Learning & Organizational Effectiveness From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Walters Sent: Tuesday, Janu

RE: [flexcoders] Flex plus GoogleMap integration

2007-01-24 Thread Merrill, Jason
"Thanks but I know that - Yahoo has limitation on amount of connected users" Do you mean "Yahoo! Maps Flash APIs are limited to 50,000 queries per IP per day"? That's the same for both Yahoo and Google as I understand each policy. Or what do you refer to? Can you post a link? Jason Merrill

RE: [flexcoders] Flex plus GoogleMap integration

2007-01-24 Thread Merrill, Jason
That's still Flex 1.5 though isn't it? Jason Merrill Bank of America Learning & Organizational Effectiveness From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pablo Sent: Wednesday, January 24, 2007 7

RE: [flexcoders] Get a FlexJob - http://tech.groups.yahoo.com/group/flexjobs/

2007-01-24 Thread Merrill, Jason
"My goal this year is to get everyone a serious Flex job. It is the best way to spread Flex and it helps developers and companies succeed. " ...Or make your current job a serious Flex job =:) Flex is starting to take off here at the Bank, and I'm working my way into more of it and trying to incr

RE: [flexcoders] Flex plus GoogleMap integration

2007-01-24 Thread Merrill, Jason
Try the Yahoo! Maps API - it's made with Flex. API documentation here: http://developer.yahoo.com/maps/flash/flexGettingStarted.html Jason Merrill Bank of America Learning & Organizational Effectiveness From: flexcoders@yahoogrou

RE: [flexcoders] Re: Please Help - Components, States, & Transitions

2007-01-22 Thread Merrill, Jason
>1st suggestion, since there is a LACK of flex 2 books, go onto lyndia.com, "Adobe Flex 2 Training from the Source" is really quite good IMO and it goes over states and transitions pretty well. Lynda.com is great, but I think this book is more extensive than the current Lynda courses. Jason

RE: [flexcoders] movie clip/sprite instances and items in repeaters

2007-01-22 Thread Merrill, Jason
er, you'd go: image.content.content, and cast that to what it is; in your case, I think Bitmap. The only time Image.content isn't a loader is if you pass it a class name (usually). On Jan 17, 2007, at 5:09 PM, Merrill, Jason wrote: Been tryin

RE: [flexcoders] How come my posts take hours to show up

2007-01-22 Thread Merrill, Jason
How do you get your account to not be moderated? My posts always seem to take hours and hours to post. Jason Merrill Bank of America Learning & Organizational Effectiveness

[flexcoders] movie clip/sprite instances and items in repeaters

2007-01-17 Thread Merrill, Jason
Been trying to post this all day, but no luck. How do I access the sprite/movieClip instance (not sure which it is, since this is in the image class) of an image loaded into image tag and then pass that to an actionscript method? Basically, I have a repeater that loads dynamic images (based on X

[flexcoders] Applying actionscript to

2007-01-17 Thread Merrill, Jason
How do I access the sprite/movieClip instance (not sure which it is in the image class) of an image loaded into image tag and then pass that to an actionscript method? Basically, I have a repeater that loads dynamic images (based on XML data) into an tag. That works fine

RE: [flexcoders] Export FLEX page to PDF

2007-01-12 Thread Merrill, Jason
It is possible, I searched a while back for a similar solution and found some .NET components that would do it (not from Flex/Flash, but from data inputs - you would send your app data to a script like c# which would send the required data to the .NET component which would spit out the PDF). You s

RE: [flexcoders] Re: Minimized Panel

2007-01-12 Thread Merrill, Jason
>>The "Flex2:Training From the Source" book has you develop an application that has panels with minimize/maximize buttons. Just to add to that, I bought that book a few days ago, and am going through the lessons and it's really great. It's expensive, but well worth it. Jason Merrill Bank of Am

RE: [flexcoders] any possible way to use flash ocx without installing?

2007-01-10 Thread Merrill, Jason
Wow, thanks for that - is it only desktop though or could it be used to deliver Flash through the browser? Thanks for the link! Jason Merrill Bank of America Learning & Organizational Effectiveness From: flexcoders@yahoogroups.com

RE: [flexcoders] Flex/Flash on The iPhone ?

2007-01-10 Thread Merrill, Jason
ng them apart zooms the image... Ian On 1/10/07, Merrill, Jason <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: The same way Safari does. (but are you sure there are multiple simutaneous mouse events in the iPhone?)

RE: [flexcoders] Flex/Flash on The iPhone ?

2007-01-10 Thread Merrill, Jason
The same way Safari does. (but are you sure there are multiple simutaneous mouse events in the iPhone?) Jason Merrill Bank of America Learning & Organizational Effectiveness From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

RE: [flexcoders] Re: POST not working

2007-01-10 Thread Merrill, Jason
Locally? Security restrictions won't allow you to do that. To do it on the web, you would have to use something like .NET or PHP, and then download the file to the local system. That would be pretty easy. Jason Merrill Bank of America Learning & Organizational Effectiveness

RE: [flexcoders] Re: basic architecture question

2007-01-10 Thread Merrill, Jason
l the user clicks on the tab. This helps the app load faster, and saves client resources generally. I'm not sure if this also applies to states. -Jim --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com>

RE: [flexcoders] Re: basic architecture question

2007-01-10 Thread Merrill, Jason
Thanks everyone for your help and ideas. Very useful. I have something working now, but not with a custom component, though Jim I will try out your ideas there. My next architecture question has to do with states and navigation. I have a TabBar I am trying to use to navigate between different

RE: [flexcoders] FileReference Upload Chunk The File into smaller chunks

2007-01-10 Thread Merrill, Jason
>>I need to split the file the user wants to upload into smaller chunks. >>Is this possible within the confines of the FileReference object? >From my experience with the FileReference, no - there are no methods to do partial binary streams. Jason Merrill Bank of America Learning & Organizatio

RE: [flexcoders] Flex Builder 2.0.1 Trial

2007-01-10 Thread Merrill, Jason
When I downloaded the trial a week ago, I got 2.0.1 - maybe they messed something up since then. Jason Merrill Bank of America Learning & Organizational Effectiveness From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Beh

RE: [flexcoders] odd script error - undefined property

2007-01-09 Thread Merrill, Jason
Ah, that makes sense. Thanks! Jason Merrill Bank of America Learning & Organizational Effectiveness From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Tuesday, January 09, 2007 11

[flexcoders] basic flex architecture questions

2007-01-09 Thread Merrill, Jason
Newbie to Flex, (but not Flash/AS 2.0) so for me it's like a skier learning to snowboard. I have dabbled with Flex in the past, and recently went through all the lessons in the help docs, as well as read a lot of other things in there. I'm designing a "Team Page" - a site that shows people of the

[flexcoders] Flex Builder 2 classpaths

2007-01-05 Thread Merrill, Jason
A pretty basic question: How do I set up my classpath like I did in Flash 8? I tried going to Project > Properties > Flex Build Path and then the "add folder" button, but this seems to have no effect. Can you set your classpath to somewhere outside your workspace? Or does it have to be within

RE: [flexcoders] Please Help :: Convert VOB to What for Best FLV?

2005-12-09 Thread Merrill, Jason
Uncompressed AVI has maintained pretty good quality for me.  Not that you can’t ask here, but for some really good replies, this is a good question for the Flashcomm list, if you would like to also ask there – chattyfig.figleaf.com   Jason Merrill   |   E-Learning Solutions   |  icfc

RE: [flexcoders] Macromedia Podcasts

2005-12-07 Thread Merrill, Jason
LOL – semantics.  Face it Mike, 6 month “break” means you’ve stopped, and now you are just starting up again. ;)   Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of M

RE: [flexcoders] Macromedia Podcasts

2005-12-07 Thread Merrill, Jason
Yeah, they did like three podcasts and then stopped.  Guess they just got too busy.   Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com NOTICE: This message is for the designated recipient only and may contain privileged or confidential informat

RE: [flexcoders] OT: Xpath and HTML problem

2005-12-07 Thread Merrill, Jason
onLoad and the like then XPATH.selectNodes(c,"./myNode") On 12/6/05, Merrill, Jason <[EMAIL PROTECTED] > wrote: Thanks.  Yes, I believe I will need to use CDATA in so Flash views the data correctly – when you say "normal" – I assume you mean the Flash native XML c

RE: [flexcoders] OT: Xpath and HTML problem

2005-12-06 Thread Merrill, Jason
into cdata tags, thus it had to be encoded, iotherwise the dom would be not parse it properly. do u need to use cdata for this? On 12/6/05, Merrill, Jason <[EMAIL PROTECTED]> wrote: The HTML is inside the XML, as in my example, and loading into Flash using Xpath.   Jason Merrill  

RE: [flexcoders] OT: Xpath and HTML problem

2005-12-06 Thread Merrill, Jason
The HTML is inside the XML, as in my example, and loading into Flash using Xpath.   Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Johannes Nel Sent: Tuesday, December 0

[flexcoders] OT: Xpath and HTML problem

2005-12-06 Thread Merrill, Jason
Hope nobody minds the OT, the chattyfig servers are down AGAIN, and I don’t know where else to turn – been searching Google for some time now.  I am using xfactorstudios’ Xpath classes to bring in XML node data which contains text and HTML tags to display in a Flash text area component in

RE: [flexcoders] how to disable browsers back button

2005-12-05 Thread Merrill, Jason
You’re evil.  ;) – BTW, it really bugs me when sites do that, hope you have a good reason.  ;)   I think you can use Actionscript with Flex to send a _javascript_ command in the browser clear the browser object’s window.history.    http://archive.midrange.com/web400/200401/msg00057.h

RE: [flexcoders] Re: Rich Internet Application (HaloGreen) Stencil for Microsoft Visio 2002

2005-12-02 Thread Merrill, Jason
d get rejected if there were any rules against it. Won't happen again. Darren By the way... NOT trying to be a wise guy or anything, but... if an RIA Development group is the wrong place to post an RIA development tool (whether it's for sale or not) where is the "right" pla

RE: [flexcoders] Re: Rich Internet Application (HaloGreen) Stencil for Microsoft Visio 2002

2005-12-01 Thread Merrill, Jason
I have to side with JesterXL and Jeremy, even though it’s related to coding in Flex, its not a Flex question you have, or even a Flex announcement,  - just a flex related product you’re SELLING here, and especially given your explanation below, it spamtastic.  I’m sure many of us on this

RE: [flexcoders] problem with arrays

2005-11-23 Thread Merrill, Jason
Behalf Of Merrill, Jason Sent: Wednesday, November 23, 2005 4:25 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] problem with arrays   Doing this:   testArray[0] within the loop will always insert the value in the 0 slot of the array, so your loop is pointless.  Use the num variable to

RE: [flexcoders] problem with arrays

2005-11-23 Thread Merrill, Jason
Title: problem with arrays Doing this:   testArray[0] within the loop will always insert the value in the 0 slot of the array, so your loop is pointless.  Use the num variable to increase the array postion targeted.  Also, addItem is not necessary.  To get the expected results, do this:

RE: [flexcoders] eval()

2005-11-22 Thread Merrill, Jason
Yeah, [].   And good riddance to eval(). Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Philippe Maegerman Sent: Tuesday, November 22, 2005 4:22 PM To: flexcoders

RE: [flexcoders] My Flex Site Mockup - considerations?

2005-11-17 Thread Merrill, Jason
>>Why not just set up a development server that could be used as the final production server as well, >>and develop your code on it?  Then you buy one license and use it for development and deployment.  >>You could still just deploy the SWFs.  Just develop on the client's servers to b

RE: [flexcoders] Re: Links to Nice-looking Flex Apps

2005-11-17 Thread Merrill, Jason
: [flexcoders] Re: Links to Nice-looking Flex Apps   --- In flexcoders@yahoogroups.com, "Merrill, Jason" <[EMAIL PROTECTED]> wrote: > > Yeah, thanks - seen both of those (HarleyD, Yahoo) too...  :-)   ...as I > mentioned, I have seen the ones on Macromedia.com - looking for

RE: [flexcoders] My Flex Site Mockup - considerations?

2005-11-17 Thread Merrill, Jason
Thanks.   So could someone confirm my reasoning on building an app for Flash 7, having to buy two licenses.    Do I really need two licenses?  One for development at my company and one for deployment on my client’s server? So I have to recommend purchasing two expensive Flex 1.5 lice

RE: [flexcoders] My Flex Site Mockup - considerations?

2005-11-17 Thread Merrill, Jason
same goes for the add/remove. Not sure if you were looking for critiques or not. Hope it helps... On 11/17/05, Merrill, Jason < [EMAIL PROTECTED]> wrote: I'm a Flash IDE guy and have only produced simple apps with the Flexbuilder 2 Alpha which use XML.  Anyhoo, I have 2 questi

RE: [flexcoders] My Flex Site Mockup - considerations?

2005-11-17 Thread Merrill, Jason
der 2 comes out?  The price difference could be key in some situations.. that is, unless you really see a need for Enterprise Services (which again is tough without having full disclosure on their features).   - Original Message - From: Merrill, Jason To: flexc

RE: [flexcoders] My Flex Site Mockup - considerations?

2005-11-17 Thread Merrill, Jason
deploy to. As you know, that is changing in Flex 2, but it's not retroactive.   Phil Costa Sr. Product Manager, Macromedia   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Merrill, Jason Sent: Thursday, November 17, 2005 11:34 AM To: flexc

[flexcoders] My Flex Site Mockup - considerations?

2005-11-17 Thread Merrill, Jason
I’m a Flash IDE guy and have only produced simple apps with the Flexbuilder 2 Alpha which use XML.  Anyhoo, I have 2 questions.  I have created a site mockup of a Flex app in Photoshop for one of my clients.  See it here:    http://cmt.icfconsulting.com/temp/navyHRPortal_2.jpg   Ques

RE: [flexcoders] Re: Links to Nice-looking Flex Apps

2005-11-15 Thread Merrill, Jason
Yeah, thanks – seen both of those (HarleyD, Yahoo) too…  J   …as I mentioned, I have seen the ones on Macromedia.com – looking for some other good ones if they are out there.  Thanks,   Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com From: flexco

[flexcoders] Links to Nice-looking Flex Apps

2005-11-15 Thread Merrill, Jason
My client wants some visual examples of some really nice portal pages, perhaps done with Flex – to demonstrate possibilities.   Anyone have some links to some really nice Flex applications that have multiple “sections” or “applications” – I need something really excellent in a visual s

<    1   2   3   4   >