Re: [flexcoders] Re: Take that Mr Jobs!

2010-05-14 Thread Mac Martine
Dmitri- Could you please provide a few more details as to what you're doing? 1) Did this happen when you migrated a FB3 project to FB4? 2) Did your AIR project rely on a library project? If so, how was it linked? -Mac On 5/11/10 10:16 PM, mitek17 mite...@gmail.com wrote: Hi Brendan,

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

2009-01-08 Thread Mac Martine
If you've added the swc to your project you should be able to access it as if the class is in the same project. Try bringing up code hints as you type 'Tracer' and see if it's listed. Otherwise try adding an import to the package that the class is in (assuming it's in a package). On

Re: [flexcoders] Drag-n-dropping images from Mac OS to AIR app

2009-01-07 Thread Mac Martine
Try this: if(Capabilities.os.search(Mac) = 0) img1.source = file:// + tempImg.nativePath;else img1.source = tempImg.nativePath; On 1/7/09 1:26 PM, Jeff Hindman jake...@cox.net wrote: AIR gurus, The

Re: [flexcoders] Mouse over event alert

2008-03-06 Thread Mac Martine
mx:Script![CDATA[import mx.controls.Alert; ]]/mx:Script mx:LinkButton x=127 y=58 label=Roll Over Me rollOver={Alert.show('rolled over!')}/ On 3/6/08 8:01 AM, ghus32 [EMAIL PROTECTED] wrote: Hello Everyone, How would I go about adding a mouse

Re: [flexcoders] how to prevent gap between grid rows?

2008-03-05 Thread Mac Martine
Try setting paddingTop and paddingBottom both to 0 Mac On 3/5/08 8:27 AM, Pan Troglodytes [EMAIL PROTECTED] wrote: Given the following example: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:DataGrid

Re: [flexcoders] how to prevent gap between grid rows?

2008-03-05 Thread Mac Martine
it in another control and used its padding property? On Wed, Mar 5, 2008 at 10:32 AM, Mac Martine [EMAIL PROTECTED] wrote: Try setting paddingTop and paddingBottom both to 0 Mac On 3/5/08 8:27 AM, Pan Troglodytes [EMAIL PROTECTED] wrote: Given the following

Re: [flexcoders] BindingUtils.bindProperty and mx:Binding trigger at different times! Bug?

2007-10-17 Thread Mac Martine
Hi Aman- This looks like a bug. Would you please log it in the bug base here: https://bugs.adobe.com/jira Thanks - Mac On 10/17/07 2:23 AM, cuddlygunchi [EMAIL PROTECTED] wrote: Hi, 1) I bind the selectedItem property of a List component to a variable 2) View the value of

Re: [flexcoders] security sandbox violations

2007-10-16 Thread Mac Martine
When you create a Flex workspace, that workspace path is then added to the list of directories ³trusted² by the Player (in flexbuilder.cfg). Therefore, on your machine any files that are in that directory (or a subdirectory of that folder) are trusted. When your friend is trying to run it, the

Re: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Mac Martine
If you are running out of memory in plugin, you can increase the memory for Eclipse with the additional VM argument: -Xmx768m, which lets it use up to 768MB of memory. If you have less free memory, adjust accordingly. More on that here:

Re: [flexcoders] Multiple Selections in a List

2007-01-05 Thread Mac Martine
Here¹s a simple example... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() mx:Script ![CDATA[import mx.collections.ArrayCollection;[Bindable]private var myCollection:ArrayCollection = new

Re: [flexcoders] Rotating mx:Label is not working for me...any ideas??

2007-01-05 Thread Mac Martine
Arial.ttf is not bold, so it is thrown off when you set fontWeight to bold. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Style @font-face { fontFamily:myfont; src:url(arial.ttf); }.myStyle { fontFamily:myfont; }

Re: [flexcoders] Re: Flex 2 Updater Available for Download

2007-01-05 Thread Mac Martine
I have reported the broken link. For now, go to the same page, then click ŒTrial Version¹ under ŒFlex Downloads¹ in the right-hand column. Thanks! Mac On 1/5/07 3:18 PM, DannyT [EMAIL PROTECTED] wrote: Can't seem to find a link to the SDK only download :( the link in the docs on

Re: [flexcoders] Can't view source code on Mac Martine's website

2006-09-13 Thread Mac Martine
Title: Re: [flexcoders] Can't view source code on Mac Martine's website Sorry about that. Its Beta code, so the Publish Source code changed as well. I just made the source code directories browseable, so you should be able to go see all the source code now. However, note that it is Beta code

RE: [flexcoders] Reusing code blocks

2006-06-28 Thread Mac Martine
Add the common Canvas to a base state. Then create two more states, and in the Create States dialog, choose Based on Base State. Your new state will then include all the components as your base state until you make changes to that state From: flexcoders@yahoogroups.com

RE: [flexcoders] Expand all items of a tree

2006-06-28 Thread Mac Martine
Its working for me. Heres an example. Im not sure what you are wanting to do, but in this example you have to select a tree item, then click the Expand All button. You can modify it as desired. ?xml version=1.0 encoding=utf-8? !-- Tree control example. -- mx:Application

RE: [flexcoders] Using HTTPService in a function

2006-06-17 Thread Mac Martine
Its because at the point that you do: myXML = http.lastResult.toString(); the result of the service has not yet been received. You need to create an event listener to let you know when the service has completed its call. The event listener will then trigger a result function that

RE: [flexcoders] List dataProvider bug?

2006-04-12 Thread Mac Martine
You need to implement IUID for the items to be given unique ids otherwise only the last item will be selected. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Oriol Gual Sent: Wednesday, April 12, 2006 4:49 PM To:

RE: [flexcoders] Re: how is this TabNavigator is done?

2006-04-06 Thread Mac Martine
I have just logged a bug on this. Thanks. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of ben.clinkinbeard Sent: Thursday, April 06, 2006 10:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how is this TabNavigator is done?

RE: [flexcoders] Re: ActionScript APIs

2006-04-06 Thread Mac Martine
Is this the kind of thing youre looking for? import com.macromedia.webapis.flickr.FlickrService; import com.macromedia.webapis.flickr.events.FlickrResultEvent; public var service:FlickrService; service.addEventListener( FlickrResultEvent.PHOTOS_SEARCH, handleSearchResults

RE: [flexcoders] Bug in list.selectedIndices

2006-03-23 Thread Mac Martine
Its number 162791 Its supposedly fixed now but I havent tried it. Tobias, The fix should be in the next public release. Thanks! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joan Tan Sent: Thursday, March 23, 2006 2:15 PM To:

RE: [flexcoders] Flex2 beta2 bug - Focus does not work on lists

2006-03-22 Thread Mac Martine
You need to implement IUID, because otherwise the renderers do not have unique ids. I have an example here: http://www.macmartine.com/blog/2006/03/binding_custom_objects_to_tile.html From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alisdair

RE: [flexcoders] Re: Tree itemRenderer - flex 2

2006-03-22 Thread Mac Martine
Theres an example here: http://www.macmartine.com/blog/2006/03/post.html Thanks to Joan for providing the foundation for this!!! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pasflex Sent: Wednesday, March 22, 2006 11:32 AM To:

RE: [flexcoders] Re: list.selectedIndices has the wrong values

2006-03-14 Thread Mac Martine
Tobias- I have just submitted this issue to the Flex team. Thanks! -Mac From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of tobiaspatton Sent: Monday, March 13, 2006 4:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

RE: [flexcoders] Flex 2.0 beta TextArea question

2006-02-09 Thread Mac Martine
: donderdag 9 februari 2006 8:29 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex 2.0 beta TextArea question There should be no need for callLater() or a Timer. These are workarounds from Flex 1.X that we want to banish in Flex 2. Mac Martine wrote: I believe you will find a detailed

RE: [flexcoders] Flex 2.0 beta TextArea question

2006-02-08 Thread Mac Martine
I believe you will find a detailed answer in the thread from Feb 1 with the Subject: [flexcoders] Scrolling a TextArea to the bottom? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonas Windey Sent: Wednesday, February 08, 2006 1:08

RE: [flexcoders] Flex Builder, auto-horizontal scrolling and Eclipse

2006-02-02 Thread Mac Martine
Regarding the scrolling behavior, this is a known issue for Beta 1, and will be fixed by Beta 2. -Mac From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Miranda Sent: Thursday, February 02, 2006 8:51 AM To: flexcoders@yahoogroups.com Subject: