[flexcoders] Performance feedback PLEASE

2010-04-09 Thread Allan Pichler
features: Subpixel positioning (1/4 pixel on both x y) Antialiasing Ambient light Specular light Best regards and have a wonderful day! Allan Pichler RIA Architect - ColdFusion/Flex/Ajax/UI Email: dreamc...@gmail.com Phone DK: +45 22 68 08 88 Phone

[flexcoders] Scanning documents

2010-02-24 Thread Allan Pichler
Anyone know if this is possible and if so, have any examples? Best regards and have a wonderful day! Allan Pichler Brewmaster - ColdFusion/Flex/AJAX/UI Email: dreamc...@gmail.com Skype: apichler Yahoo: allan_pichler

Re: [flexcoders] AIR - Ascynchronous file deletion - fixed order ?

2009-11-25 Thread Allan Pichler
You could hold a list (in this case with 2 filenames) that you delete from one by one... just pop an element and refire until the list is empty.. That would also facilitate a progess bar using the original / current length of the array. Best regards and have a wonderful day! Allan Pichler

[flexcoders] Datagrid with rotated headers

2009-11-16 Thread Allan Pichler
Does anyone have a simple example of a datagrid where the column header labels are rotated so they take up minimum space horizontally? Thanks in advance --Allan

[flexcoders] Weirdest error ever!

2009-11-08 Thread Allan Pichler
Hi All I am currently getting the weirdest error. It comes and goes quite randomly. For instance, it have showed up from me adding a comment to the code or disappeared from deleting blank lines in the source. I have tried it in both FB3 and FB4b2, but to no avail. Could someone

[flexcoders] Sandbox Bridge Help!

2009-08-13 Thread Allan Pichler
Hi all and thank you for a great mailing list. I'm trying to use the parentSandboxBridge, but I can't really find any good explanations of it. Here is what i'm trying to do. I have an AIR application where the users can create overlays on a video file. One example of this would be to place a

Re: [flexcoders] Re: Flying text or passing text??

2009-06-17 Thread Allan Pichler
I have a more outrageous hippie version of a marquee on my experimental site. And as a sidenote the term marquee is probably the right one, but the fact that my coding career started back in 1982 and I used to be part of the C64/Amiga demo scene I will insist that it's a 'scroller'... In

[flexcoders] Ideas / input greatly appreciated

2009-05-29 Thread Allan Pichler
about customization of the user interface and adding new pods. Any help You can give is much appreciated! Best regards and have a nice day! Allan Pichler Brewmaster - ColdFusion/Flex/Ajax/UI

RE: [flexcoders] Ideas / input greatly appreciated

2009-05-29 Thread Allan Pichler
://www.adobe.com/devnet/acrobatconnect/articles/intro_sync_swf.html Cheers, Rick Winscot On 5/29/09 12:53 PM, Allan Pichler dreamc...@gmail.com wrote: Hi all. I'm trying to find a low cost solution to do 1-1 screen sharing/remote control, preferably inside a flex application, alternatively

RE: [flexcoders] Ideas / input greatly appreciated

2009-05-29 Thread Allan Pichler
for the remote viewing / control and then create a flex app that does all your custom pod stuffs. Cheers, Rick Winscot On 5/29/09 1:13 PM, Allan Pichler dreamc...@gmail.com wrote: But I was under the impression that connect pro is pretty expensive ??? Anyone know of an AIR app for the screen

RE: [flexcoders] Ideas / input greatly appreciated

2009-05-29 Thread Allan Pichler
?source=ighl=enrlz==q=customize+Connectbtn G=Google+Searchaq=foq= hl=enrlz==q=customize+ConnectbtnG=Google+Searchaq=foq= Allan Pichler wrote: Hi all. I'm trying to find a low cost solution to do 1-1 screen sharing/remote control, preferably inside a flex application, alternatively as a popup

RE: [flexcoders] Ribbon in FLEX

2009-03-15 Thread Allan Pichler
in question. I apologize for the trouble and wish everyone a great Sunday night! Allan Pichler Brewmaster - ColdFusion/Flex/Ajax/UI Email: dreamc...@gmail.com Phone: (415) 683 0313 Skype: apichler Yahoo: allan_pichler LinkedIn: http

RE: [flexcoders] Re: Ribbon in FLEX

2009-03-13 Thread Allan Pichler
for all your kind words Best regards and have a nice day! Allan Pichler Brewmaster - ColdFusion/Flex/Ajax/UI Email: dreamc...@gmail.com Phone: (415) 683 0313 Skype: apichler Yahoo: allan_pichler From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf

[flexcoders] Creating multiple images and save

2008-12-10 Thread Allan Pichler
image files, make rounded corners and apply a drop shadow to them. Finally I need to send the created back to the server, but I'm not quite sure how to accomplish that.. Any help is appreciated Best regards Allan Pichler

[flexcoders] Posting extended Flexlib component?

2008-10-01 Thread Allan Pichler
to comment/question me directly if you like, so we don't overload the mailing list! Thank you all in advance! Best regards Allan Pichler Brewmaster - ColdFusion/Flex/Ajax/UI Email: [EMAIL PROTECTED] Skype: apichler Yahoo: allan_pichler

RE: [flexcoders] Class file in flex

2008-08-12 Thread Allan Pichler
This would probably work as well.. Without changing the AS class. --A ?xml version=1.0 encoding=utf- 8? mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml http://www.adobe.com/2006/mxml xmlns:inc=includes.* layout=absolute mx:Script ![CDATA[ import Includes.ClassTesting; import

Re: [flexcoders] Re: a simple question of BitmapData

2008-05-18 Thread Allan Pichler
I believe this should work. private var bitmapDataCopy:BitmapData; private var sourceBitmap:BitmapData; private function init():void { var imgLoad:Loader=new Loader(); imgLoad.contentLoaderInfo.addEventListener(Event.COMPLETE,init2); imgLoad.load(new

Re: [flexcoders] Re: a simple question of BitmapData

2008-05-18 Thread Allan Pichler
URLRequest(assets/imagename.png)); } private function init2(e:Event):void { sourceBitmap = e.target.content.bitmapData as BitmapData; bitmapDataCopy = sourceBitmap.clone(); } On Sun, May 18, 2008 at 4:55 PM, Allan Pichler [EMAIL PROTECTED] wrote: I believe this should work

Re: [flexcoders] layout question

2008-05-14 Thread Allan Pichler
verticalAlign=middle On Wed, May 14, 2008 at 12:42 AM, Maciek [EMAIL PROTECTED] wrote: Hi. I've been doing a fair amount of Actionscript, and am now getting to do some mxml layout. I I have a component with a login control (this is the only child in the component, and the parent is a

[flexcoders] Call DLL functions from actionscript

2008-05-13 Thread Allan Pichler
Does anyone know if one can call functions from arbitrary dlls in actionscript? I know it's highly non-cross platform, but still? Thanks --Allan http://www.unzipmenow.com