[flexcoders] How to fade from one image to another?

2007-04-18 Thread Ivo
the timer is restarted for another tick once again. This last one does not work but do not understand why. What I see happening is that the image fadeOut() once, the source var is updated, the visible property is set to true but the new image does not display again. What am I missing? Thanks, Ivo

Re: [flexcoders] FlexBuilder bug: failing to report location of errors, warnings and hints

2007-05-15 Thread ivo
I had this problem twice, once because the system was getting low on available memory. The second time I got some clues as to the problem files by looking at the eclipse Error Log. On my Mac it was under Window-Show View-Other-PDE Runtime-Error Log - Original Message From: Robert W

Re: [flexcoders] Trees and ActionScript

2007-05-17 Thread ivo
] = childNode; var targetNode:Object = hashOfNodes[node2.id] ; targetNode.children = [childNode]; So I would only set the dataProvider with the root nodes of the tree but manipulate the nodes thru the references kept under hashOfNodes . Hope this helps its clear enough, Ivo - Original Message

[flexcoders] Conditional formatting of tree node labels

2007-05-22 Thread ivo
(super.listData); if(treeListData.isDirty){ this.label.setStyle('fontStyle', 'italic'); } } } Thank you for any pointers, Ivo -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com

Re: [flexcoders] Tree edit item doubleclick

2007-05-24 Thread ivo
You have to set your Tree to editable and then listen for the event ListEvent.ITEM_EDIT_BEGIN . Your handler for this event can keep tabs for what was the last node that was clicked and at what time. If there were no previous clicks on the target node or the last click was more than x

Re: [flexcoders] Re: Conditional formatting of tree node labels

2007-06-04 Thread ivo
= TreeListData(super.listData); if(treeListData.isDirty){ setStyle('fontStyle', 'italic'); } I had one of those doh moments when I noticed it. Regards, Ivo --- barry.beattie [EMAIL PROTECTED] wrote: Ivo, did you find a solution? the tree controls' labelFunction (instead of labelField) could

[flexcoders] AIR DnD onto a Tree, how to use calculateDropIndex ?

2007-10-25 Thread Ivo
I want to evaluate over which node of a Tree a NativeDragEvent occurred. The fn calculateDropIndex() tho only accepts DragEvents. How do I go about getting this information? Thanks, - Ivo

[flexcoders] Re: AIR DnD onto a Tree, how to use calculateDropIndex ?

2007-10-26 Thread Ivo
clues as to the proper way to do this are greatly apprecited. Thanks, Ivo --- In flexcoders@yahoogroups.com, Ivo [EMAIL PROTECTED] wrote: I want to evaluate over which node of a Tree a NativeDragEvent occurred. The fn calculateDropIndex() tho only accepts DragEvents. How do I go about

[flexcoders] Re: AIR DnD onto a Tree, how to use calculateDropIndex ?

2007-10-26 Thread Ivo
So the solution was to extend the Tree and add a function that replicates the part of Tree::updateDropData() that sets the value of rowNum. The rowNum then is the index of the node on which the event occurs. Thanks, Ivo --- In flexcoders@yahoogroups.com, Ivo [EMAIL PROTECTED] wrote: Does

[flexcoders] API that encapsulates both Native DnD andDragEvents?

2007-10-29 Thread ivo
API? My app should be used both on the web and as an air app with little modifications so I am about to start looking into this. Thanks, - Ivo

[flexcoders] Re: API that encapsulates both Native DnD andDragEvents?

2007-10-30 Thread Ivo
the drag has crossed the application Window then turn it into a flash.desktop.DragManager ? Anyone have any experience with this? Ivo --- In flexcoders@yahoogroups.com, ivo [EMAIL PROTECTED] wrote: Hey all, I am trying to get Drag and Drop deals with both Drag and Drop from the local filesystem

[flexcoders] Borderless, no title bar splash screen...

2007-11-06 Thread Ivo
NativeWindowSystemChrome with a new instance of NativeWindow should do it but I am unable to figure how to properly use it. Any examples I can take a look at out there? Thanks, Ivo

[flexcoders] Re: Borderless, no title bar splash screen...

2007-11-06 Thread Ivo
. - Ivo --- In flexcoders@yahoogroups.com, Vadim Melnik [EMAIL PROTECTED] wrote: Hello Ivo, Does it help, (AIR Beta 2)? ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical width=400 height=300 click=exit

[flexcoders] Re: Borderless, no title bar splash screen...

2007-11-06 Thread Ivo
Hi, Adding a single image was just an example, I want to add more than just an image to the borderless Window. I recently noticed that the AIR sample PixelPerfect accomplishes what I am trying to do. I'll be looking at it more closely next. Regards, Ivo --- In flexcoders@yahoogroups.com

[flexcoders] Any chrome managers available?

2007-11-09 Thread Ivo
Is there a library available that will help manage moving, resizing, close, maximize, minimize of an application window whose chrome is set to none ? Seems moving and resizing are the move involved operations. I'm wondering if anyone has abstracted this in a reusable library. Thanks, - Ivo

[flexcoders] flash.desktop.DragManager documentation location

2007-11-26 Thread Ivo
The documentation at http://livedocs.adobe.com/labs/flex/3/langref/flash/desktop/DragManager.html#doDrag() makes reference to TransferableData which is not available when using Flex Builder. Where can I find the matching documentation to my current Flex Builder 3 installation? Thanks, - Ivo

[flexcoders] How can I tell if NATIVE_DRAG_COMPLETE was releases inside/outside of air app?

2007-12-04 Thread Ivo
How can I tell if the mouse was release outside of the app ( where) after a drag operation?

[flexcoders] Any additional details on NativeDrag to OS?

2007-12-05 Thread ivo
, - Ivo

[flexcoders] AIR figure Windows taskbar size position?

2007-12-07 Thread ivo
Hello all, Is it possible thru AIR to determine the placement and size of the Windows taskbar? Thanks, - Ivo

Re: [flexcoders] Adobe AIR Disconnected storage with Credit Cards

2008-01-15 Thread ivo
Air apps also have available an EncryptedLocalStore http://livedocs.adobe.com/labs/flex3/langref/flash/data/EncryptedLocalStore.html - Original Message From: Scott Mulder [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, January 15, 2008 10:55:37 AM Subject: RE:

[flexcoders] Drag Proxy doesnt appear when drag motion moves cursor over neighboring item too fast...

2008-01-21 Thread ivo
but not leave the parent canvas and when the proxy appears then you can drag over to the drop pane. It makes a common click drag operation useless. Has anyone experienced this and have a solution? Thanks, - Ivo

Re: [flexcoders] Re: mxmlc running out of heap space...

2008-02-12 Thread ivo
ahh...slick. Setting ANT_OPTS did the trickalso the build takes only a few seconds instead of a minute. - Ivo - Original Message From: rueter007 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 10:39:55 AM Subject: [flexcoders] Re: mxmlc running

[flexcoders] mxmlc running out of heap space...

2008-02-12 Thread ivo
the file flex3sdk_be_121207/bin/jvm.config so that the heap space is increased to 1GB but I still keep getting this error. Does anyone have any suggestions on how can I address this? I am trying to make builds outside of Flex Builder so they can be automated. Thanks, - Ivo

[flexcoders] Is setting custom headers on HTTPService for a GET possible?

2008-02-29 Thread ivo
2008] [error] Content-Length: 14 [Fri Feb 29 10:05:34 2008] [error] Content-Type: application/x-www-form-urlencoded If I switch method = 'POST' then I see: [Fri Feb 29 10:06:12 2008] [error] customHeader: foobar */ Thanks, - Ivo

Re: [flexcoders] Is setting custom headers on HTTPService for a GET possible?

2008-02-29 Thread ivo
to set custom headers on a GET? Short of opening a Socket connection and writing out the HTTP requests? Thanks, - Ivo - Original Message From: ivo [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, February 29, 2008 10:06:45 AM Subject: [flexcoders] Is setting custom headers

Re: [flexcoders] Is setting custom headers on HTTPService for a GET possible?

2008-03-01 Thread ivo
be possible (except for the blacklisted headers). Thanks, - Ivo - Original Message From: ivo [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, February 29, 2008 11:51:32 AM Subject: Re: [flexcoders] Is setting custom headers on HTTPService for a GET possible

Re: [flexcoders] Flex Builder 3 debug builds broken, breakpoints all wrong

2008-03-05 Thread ivo
You beat me to the post, was just about to ask the list if anyone knew a way around this issue. Just upgraded to FB3 release and this became immediately apparent. What works for me tho is after I update source files I delete their swf/swc from the bin folders. -Ivo - Original Message

[flexcoders] How to maintain a Tree opened/close state after removed/added to stage?

2008-03-05 Thread ivo
to trigger the display so it matched the internal open/closed state? Thanks, - Ivo

Re: [flexcoders] How to maintain a Tree opened/close state after removed/added to stage?

2008-03-05 Thread ivo
Dictionary but the debugger wont reveal what its contents are. What can cause this condition? - Ivo - Original Message From: ivo [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, March 5, 2008 11:47:01 AM Subject: [flexcoders] How to maintain a Tree opened/close state after

Re: [flexcoders] How to maintain a Tree opened/close state after removed/added to stage?

2008-03-05 Thread ivo
PROTECTED] ups.com [mailto: [EMAIL PROTECTED] ups.com ] On Behalf Of ivo Sent: Wednesday, March 05, 20081:42 PM To: [EMAIL PROTECTED] ups.com Subject: Re: [flexcoders] How tomaintain a Tree opened/close state after removed/added to stage? Not sure where to go withthis next. The following kinda

[flexcoders] is scripting AIR app uninstaller possible?

2008-03-06 Thread ivo
Is there a way to script an AIR app uninstaller? If I run the .air file for an already installed app and select 'Uninstall' I noticed that contents of the EncryptedLocalStore and the applicationStorageDirectory are left behind I'd like these blown away. Thanks, - Ivo

[flexcoders] Re: How to maintain a Tree opened/close state after removed/added to stage?

2008-03-06 Thread Ivo
Thanks, I posted the following with a test case http://bugs.adobe.com/jira/browse/SDK-14892 - Ivo --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Please file a bug with a test case or post a test case in the forum. From

Re: [flexcoders] compc java.lang.OutOfMemoryError: Java heap space

2008-03-25 Thread ivo
I hit this same thing some time ago the solutions was to increase the heap space for ant http://tech.groups.yahoo.com/group/flexcoders/message/102140 - Ivo - Original Message From: toofah_gm [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, March 25, 2008 2:06:03 PM

Re: [flexcoders] Re: need help capturing focus in a variable or using event to capture current target

2008-03-28 Thread ivo
like to be able to set the focus back to the canvas without using a click event that wasn't due to user interaction. - Ivo - Original Message From: Teresa Howington [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, March 28, 2008 7:14:15 AM Subject: [flexcoders] Re: need help

[flexcoders] convert MouseEvent into a DragEvent?

2008-04-01 Thread ivo
highlights the appropiate row. Thanks, - Ivo

Re: [flexcoders] convert MouseEvent into a DragEvent?

2008-04-02 Thread ivo
with an arbitrary sprite? - Ivo - Original Message From: Alex Harui [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, April 1, 2008 9:16:58 PM Subject: RE: [flexcoders] convert MouseEvent into a DragEvent? You should be able to use the stageX/Y and globalToLocal

[flexcoders] Loading socket policy files q

2008-04-14 Thread ivo
load the master policy file, yet the player still tries to load http://mysite.com:/crossdomain.xml And fails when it doesnt find one preventing me from communicating with the service. Is there a step I am missing? Thanks, - Ivo

Re: [flexcoders] Loading socket policy files q

2008-04-14 Thread ivo
That should have been...(http://mysite. com:843/crossdomain. xml). also, I dont have control of the server so I cannot place a socket policy file at port Thanks, - Ivo - Original Message From: ivo [EMAIL PROTECTED] To: FlexCoders flexcoders@yahoogroups.com Sent: Monday, April 14

Re: [flexcoders] Loading socket policy files q

2008-04-14 Thread ivo
-policy * Closing connection #0 So what am I missing? - Ivo - Original Message From: ivo [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, April 14, 2008 3:04:00 PM Subject: Re: [flexcoders] Loading socket policy files q That should have been...(http

[flexcoders] Re: Loading socket policy files q

2008-04-15 Thread Ivo
Thanks for the reply Jesús . Also, this article that appeared yesterday clarified things some, http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html - Ivo --- In flexcoders@yahoogroups.com, Jesús Iglesias [EMAIL PROTECTED] wrote: Hi!! You have to make a socket

[flexcoders] Why does iterating over an array of functions fail?

2008-04-21 Thread ivo
no typos, I am writing it as I remember) - Ivo

[flexcoders] Re: Loading socket policy files q

2008-04-28 Thread Ivo
. As noted in earlier messages I have the line Security.loadPolicyFile('xmlsocket://mysite.com:843'); Anyone had to set up a policy server and can give me ideas on how to pin the issue? Thanks, - Ivo --- In flexcoders@yahoogroups.com, Jesús Iglesias [EMAIL PROTECTED] wrote: Hi

[flexcoders] online docs seem to be unavailable

2008-05-01 Thread ivo
-vip.macromedia.com - Ivo

[flexcoders] Get rid of a Flex Builder button

2008-05-09 Thread ivo
Hello all, Is there a way I can hide the Profiler button on the Flex Builder tab bar? I keep clicking it when I mean to click on the debugger down arrow next to it. Thanks, - Ivo

[flexcoders] Exception on Minimize then Maximize AIR app Windows

2008-05-13 Thread ivo
\mx\core\UIComponent.as:8403] Thanks, - Ivo

[flexcoders] Issues uninstalling FP10 and installing FP9?

2008-05-22 Thread ivo
Hello all, I used the uninstall_flash_player.exe to remove the FP10 I had previously installed and am trying to install FP9.The active x version installs without problems but the plugin version crashes repeatedly. Has anyone experienced this and now how to get around it? Thanks, - Ivo

[flexcoders] what prevents a FlexEvent.CREATION_COMPLETE?

2008-05-29 Thread ivo
triggered. I imagine this would cause the empty component symptom since this is dispatched once drawing is complete. The CREATION_COMPLETE event for the parent is always triggered tho. Thanks, - Ivo

Re: [flexcoders] what prevents a FlexEvent.CREATION_COMPLETE?

2008-05-30 Thread ivo
the child subcomponents are not drawn it is not called. If I iterate over the children of the parent component it does list the subcomponents are being present. Thanks, - Ivo - Original Message From: Alex Harui [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, May 29, 2008 2

Re: [flexcoders] what prevents a FlexEvent.CREATION_COMPLETE?

2008-05-30 Thread ivo
the $visible property indicate? Thanks, - Ivo - Original Message From: Alex Harui [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, May 30, 2008 10:17:49 AM Subject: RE: [flexcoders] what prevents a FlexEvent.CREATION_COMPLETE? The order is commitProperties, measure

Re: [flexcoders] what prevents a FlexEvent.CREATION_COMPLETE?

2008-06-03 Thread ivo
around this issue by removing the undrawn subcomponent and re-adding it on the CREATION_COMPLETE handler for the parent component. Thanks, - Ivo - Original Message From: Alex Harui [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, May 30, 2008 9:20:57 PM Subject: RE

[flexcoders] Air 1.1 SDK Flex Builder update?

2008-06-18 Thread ivo
Hello all, Is the Air 1.1 sdk update to be done manually or will it be available thru the Flex Builder/eclipse update mechanism at some point? Dont want to mess up my FB installation by doing it manually if it will get picked up by a software update. Thanks, - Ivo

[flexcoders] AIR app shows duplicate status, bar, title bar when left idle

2008-06-22 Thread ivo
anyone seen this situation before? Thanks, - Ivo

Re: [flexcoders] Re: crossdomain with picasa

2008-06-30 Thread ivo
You can access their picasa data services thru http://photos.googleapis.com/data/ and load the crossdomain.xml at http://photos.googleapis.com/data/crossdomain.xml. - Original Message From: kenny14390 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, June 30, 2008 9:11:03

[flexcoders] Debugging off when having multiple FB3 workspaces?

2008-07-14 Thread ivo
. In the past I have never had to work on two workspaces simultaneously so this wasnt a problem but now I need to be able to switch back and forth rapidly (using svn switch takes too long). Does anyone know how to solve this issue? Thanks, - Ivo

[flexcoders] how do I read a hexadecimal number value correctly?

2008-07-17 Thread ivo
be the correct way of handling this value? I am attempting to covert it into a string so I can build a different URL. Thanks, - Ivo

[flexcoders] Proxy server for testing?

2008-08-07 Thread ivo
a proxy would do the job, where I point the app to the proxy and just configure the proxy at runtime to redirect the requests to different servers. Does anyone know of a good tool to achieve this? Thanks, - Ivo

Re: [flexcoders] Proxy server for testing?

2008-08-07 Thread ivo
Shortly after sending this message I fired up Fiddler2 (http://www.fiddlertool.com/Fiddler) and noticed that all the traffic from my AIR app goes thru it. By updating a simple js script file the behavior of the Fiddler proxy is modified at runtime. Very slick. - Ivo - Original Message

[flexcoders] How/What adds an entry for my app to the Mac KeyChain?

2008-08-15 Thread ivo
the message? I'd like to understand how often and under what circumstances our users might see that message. Also, I'll file a bug that all keychain entries for all AIR apps are named Adobe.APS instead of using the application name/id making the message rather obscure. Thanks, - Ivo

[flexcoders] Cairngorm article sources on Adobe.com corrupt?

2008-08-22 Thread ivo
docs verify the download? Thanks, - Ivo

Re: [flexcoders] Sqlite retrive to object

2008-08-25 Thread ivo
You probably need to use registerClassAlias() http://livedocs.adobe.com/flex/3/langref/flash/net/package.html#registerClassAlias() and for complex objects perhaps also implement IExternalizable http://livedocs.adobe.com/flex/3/langref/flash/utils/IExternalizable.html - Original Message

[flexcoders] Location of FlightReservation samples?

2008-08-26 Thread ivo
Hey all, Where can I find the Flex samples FlightReservation and FlightReservation2 mentioned here http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Runtime_Localization ? Thanks, - Ivo

Re: [flexcoders] How do I enter 2 arrays into one arraycollection

2008-08-27 Thread ivo
], children: new ArrayCollection([_kid])} var companyData:ArrayCollection = new ArrayCollection([__mom]); If you keep references to the ArrayCollection that makes up the children you can insert/remove other children - Ivo - Original Message From: Terry Allen [EMAIL PROTECTED] To: flexcoders

Re: [flexcoders] playerProductInstall doesn't show up in tiny window. Can I change that?

2008-08-27 Thread ivo
You might need to use SWFObject (http://code.google.com/p/swfobject/wiki/documentation) or create your own. - Ivo - Original Message From: whatabrain [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, August 27, 2008 11:49:54 AM Subject: [flexcoders

Re: [flexcoders] How do I remove the arrow for a node in the Tree

2008-08-27 Thread ivo
You might also need to set disclosureClosedIcon disclosureOpenIcon -Ivo - Original Message From: randalma2120 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, August 27, 2008 12:16:45 PM Subject: [flexcoders] How do I remove the arrow for a node in the Tree I

Re: [flexcoders] Drawing shapes with holes and applyng them as mask in AS3

2008-08-29 Thread ivo
I found this post very useful, perhaps you will as well http://www.insideria.com/2008/01/flex-graphics-tricks-part-1-ma.html - Ivo - Original Message From: gabriela.perry [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, August 29, 2008 7:45:13 AM Subject: [flexcoders

Re: [flexcoders] How to get selectedIndex from itemRenderer

2008-08-29 Thread ivo
You probably want to get the selectedItem and then look for it in your data provider using indexOf, getItemIndex,.. - Ivo - Original Message From: Howard Fore [EMAIL PROTECTED] To: Flexcoders flexcoders@yahoogroups.com Sent: Friday, August 29, 2008 7:24:29 AM Subject: [flexcoders

Re: [flexcoders] OutOfMemoryError when compiling my app with Ant

2008-09-01 Thread ivo
You might also need to set the Ant memory options http://www.mail-archive.com/flexcoders@yahoogroups.com/msg83489.html - Ivo - Original Message From: Mondain [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, September 1, 2008 11:11:29 AM Subject: Re: [flexcoders

Re: [flexcoders] unable to use debug mode

2008-09-19 Thread ivo
Is this a new workspace? I've found that on my Mac debugging only works from projects I create in the original workspace. Those I create in a new workspace can only be compiled/debugged once and further updates trace statements to the code are ignored. - Original Message From:

[flexcoders] Re: Tree Component openItems and refresh dataProvider issue

2008-09-25 Thread Ivo
Are you resetting the data provider or just updating it? I find that if I just update the data provider by inserting/removing elements the Tree reflects the change appropriately. One bug I've hit, which might be what you are experiencing, is that if I remove the Tree from the stage and add it

Re: [flexcoders] Re: AIR App disappears when resized too large

2008-10-05 Thread ivo
I have not run into this specific problem but I do have found the need to turn transparency off in a pretty complex app due to performance issues. - Original Message From: andrewwestberg [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, October 5, 2008 5:00:48 AM Subject:

[flexcoders] What classes are available to Flex applications vs AS3 applications?

2008-10-28 Thread ivo
.* are also not available. Thanks, - Ivo

Re: [flexcoders] What classes are available to Flex applications vs AS3 applications?

2008-10-28 Thread ivo
Ive found that I can import many classes under the packages below, but not all. The whole trial and error method of finding which classes are available got old rather quick. mx.core. mx.events. mx.managers. mx.modules. mx.resources. mx.utils. Thanks, - Ivo

[flexcoders] Flash player 10 required for my swf?

2008-10-31 Thread ivo
with the ''Flash Player Version Detection' along with my widget and I am now wondering how many users are seeing the dialog and not bothering to run the update. Is the lesson here not to use the 'Flash Player Version Detection' that ships with Flex Builder ? or am I running into a bug? Thanks, - Ivo

Re: [flexcoders] Flash player 10 required for my swf?

2008-10-31 Thread ivo
supplied in Flex Builder and no Flash Player 10 required dialog appears anymore so I am not sure what is going on. I think I will look into using swfobject instead. Thanks, - Ivo From: Daniel Freiman [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent

[flexcoders] Using NetStream for flv playback, getting sound but no video on Firefox

2008-11-17 Thread ivo
of the sound track (with no video still) Has anyone experienced this before? Pointers and solutions are greatly appreciated. Thanks, - Ivo

Re: [flexcoders] Using NetStream for flv playback, getting sound but no video on Firefox

2008-11-17 Thread ivo
until the NetStream class dispatches the first 'NetsStream.Buffer.Full' NetEvent and I immediately restart playback from the beggining 'm_netstream.play(url)' . The second play attempt then proceeds normally with both video and audio. Thanks, - Ivo From

[flexcoders] How do I rotate a transparent png maintain transparency?

2008-11-21 Thread ivo
(); displaySprite.graphics.beginBitmapFill(_newBitmap, null, false); displaySprite.graphics.drawRect(0, 0, sourceImage.width, sourceImage.height); Thanks, - Ivo

Re: [flexcoders] The Online Flex Builder!

2008-11-25 Thread ivo
This is probably what you are looking for http://flexible.riaforge.org/ but I have not been able to get it to work properly with Flex 3. From: Johannes Nel [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, November 25, 2008 2:23:16 AM Subject:

[flexcoders] Flash Modules?

2008-11-28 Thread ivo
is a modular architecture Flex AS3 but there are specific interactive behaviors that are best written in Flash. I would like to be able to incorporate them as I would with AS3 modules. Thanks, - Ivo

[flexcoders] ApplicationDomain, what is the difference between child and current?

2008-12-03 Thread ivo
object? Thanks, - Ivo

Re: [flexcoders] ApplicationDomain, what is the difference between child and current?

2008-12-03 Thread ivo
[mailto:flexcoders@ yahoogroups. com] On Behalf Of ivo Sent: Wednesday, December 03, 2008 8:22 AM To: FlexCoders Subject: [flexcoders] ApplicationDomain, what is the difference between child and current? Seems that they are the same, in either case the loaded module class definitions are ignored in favor

[flexcoders] changelog between Flex Builder versions?

2008-12-05 Thread ivo
and the Vista machine says 3.0.205647 . If I compile the exact same code on each on the XP machine I get a SWF that is 20k smaller. Any ideas what might account for the difference? Both are relatively new installations, less than a month old. Thanks, - Ivo

Re: [flexcoders] Re: Flex training

2008-12-10 Thread ivo
, - Ivo From: Anthony DeBonis [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, December 10, 2008 2:04:16 PM Subject: [flexcoders] Re: Flex training If you have a group I would recommend an Adobe Training Class If 1-2 people a custom class/mentoring

[flexcoders] Maintaining scale when resizing embed tag

2008-12-11 Thread ivo
then the content is scaled even further to like 45x75 Can anyone help me understand what is going on and how I can make the content scale correctly? Thanks, - Ivo

[flexcoders] Re: Maintaining scale when resizing embed tag

2008-12-12 Thread Ivo
and scaleY . Thanks, - Ivo --- In flexcoders@yahoogroups.com, ivo cervantes_v...@... wrote: Hello listers, I have a Flex App with scaleMode set to StageScaleMode.SHOW_ALL, the Application tag dimension set to 300x500 and it scaled perfectly when modifying the dimensions of the embed tag

Re: [flexcoders] French accents in resource bundles not showing up

2008-12-15 Thread ivo
I had a similar behavior but it cleared up after I verified that the target system had a font installed that could display the accented characters. - Ivo From: Wildbore, Brendon b.j.wildb...@massey.ac.nz To: flexcoders@yahoogroups.com flexcoders

Re: [flexcoders] File Explorer

2008-12-17 Thread ivo
child nodes to this var _parent:Object = {label: 'parent', children: _children} //this would be the parent object var _dp:ArrayCollection = new ArrayCollection([_parent]); //data provider for tree - Ivo From: Dan Vega danv...@gmail.com To: flexcoders

Re: [flexcoders] Strange #2147 error

2008-12-17 Thread ivo
I have noticed this as well but only on IE6. My solution was to move the background into a stylesheet, ex: .applicationStyle{ background-image: Embed('c:/we/assets/ skins/design- empty1.png'); } ... mx:Application styleName=applicationStyle .. - Ivo

Re: [flexcoders] Re: Tree and array data

2008-12-19 Thread ivo
that can be toggled on/off based on values in the node data object, like if your node object has a 'loading' attribute you can use it to toggle a loading animation. - Ivo From: Cato Paus ca...@brannsikring.no To: flexcoders@yahoogroups.com Sent: Friday, December

Re: [flexcoders] Tree problems

2008-12-20 Thread ivo
The way I have handled it is by getting a reference to the children array and update the array with the retrieved data, somethin akin to: private function listDirectories( event:ResultEven t):void { var _node:Object = event.currentTarget; _node.children = event.result as Array; } - Ivo

Re: [flexcoders] Tree problems

2008-12-20 Thread ivo
Vega danv...@gmail. com wrote: The current target of the event is that, I don't think that will work? mx.rpc.remoting. mxml.Operation (@2a9494c1) On Sat, Dec 20, 2008 at 11:01 AM, ivo cervantes_vive@ yahoo.com wrote: The way I have handled it is by getting a reference to the children array

Re: [flexcoders] - Tree Component Styling issue

2008-12-23 Thread ivo
(super.listData); var nodeData:NodeDescriptor= (tlData.item as NodeDescriptor); if(nodeData.icon != null){ tlData.icon = node.icon; } } the NodeDescriptor is a simple object that holds data specific to each node (icon, label, etc...) - Ivo From: Alan

Re: [flexcoders] Deselecting tree nodes based on some condition

2008-12-23 Thread ivo
To examine the node clicked you can listen for ListEvent.ITEM_CLICK in the Tree and check the event data. You can then use the scan selectedItems array and remove any that dont belong. - Ivo From: biosmonkey biosmon...@yahoo.com To: flexcoders

Re: [flexcoders] Any Developers on a Mac?

2008-12-29 Thread ivo
My 0.2 is that I love OS X Apple software but I found I can't rely on Apple hardware. Maybe its bad luck but I have always had hardware problems and more than once a warrantied, applecared machine still took more than a week to resolve. At one point I was heavily invested on Apple hardware but

Re: [flexcoders] mxmlc | Java heap space

2008-12-29 Thread ivo
Hi, This has come up before. You need to increase the memory available to Java and Ant. Search the archives for ANT_OPTS - Ivo From: ilikeflex ilikef...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, December 29, 2008 1:26:26 PM Subject: [flexcoders

Re: [flexcoders] Searching Multi Demensional arrays

2008-12-29 Thread ivo
since the path will be unique for each object it could serve as the key in a hash. mapPathToObj[obj1.path] = obj only works for exact matches tho, if you are looking for substrings then you will need to iterate over the nodes. From: Dan Vega

Re: [flexcoders] how to scale an entire flex application including text and images

2008-12-30 Thread ivo
I had an application that uses set width and height and when placed in an embed with different dimensions did not scale correctly. I was able to solve it by setting the property: stage.align = StageAlign.TOP_LEFT; then on resize or added to stage set the scaling myself: private

Re: [flexcoders] how to receive params from html .... in flash

2009-01-02 Thread ivo
You can access it thru the loaderInfo (http://livedocs.adobe.com/flex/3/langref/flash/display/LoaderInfo.html) var serverURL:String; var port:String; public function mySwf{ serverURL = String(loaderInfo.parameters['serverURL']); port = String(loaderInfo.parameters['port']); } - Ivo

Re: [flexcoders] AIR code signing certificate

2009-01-02 Thread ivo
Have you considered other vendors? (http://help.adobe.com/en_US/AIR/1.5/devappshtml/WS5b3ccc516d4fbf351e63e3d118666ade46-7ff0.html) Might just be not well thought out options from that particular one, you are denied a personal cert in your business name and you are also denied a corp cert for

[flexcoders] packing/unpacking binary data using as3

2009-09-09 Thread ivo
equivalent? Thanks, Ivo

  1   2   >