Re: [Flashcoders] How to smooth bitmap?

2009-04-17 Thread Karl DeSaulniers
You could try this one. This is an imageLoader class that smooths dynamic images. Dont know about the whole security issue though. This loads the initial image into a MC, then deletes it, then draws the bitmap into another MC. GL By martijndevisser.  Karl DeSaulniers Design Drumm

Re: [Flashcoders] Smart Preloading

2009-04-17 Thread Dennis - I Sioux
/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders __ NOD32 4015 (20090417) Informatie __ Dit bericht is gecontroleerd door het NOD32 Antivirus Systeem. http

Re: [Flashcoders] How to smooth bitmap?

2009-04-17 Thread Karl DeSaulniers
I am sorry I forgot I can not post files to the list. my apologies, I am new to the list... :D Here is the code. Make an .as file with this in it: //-- Start Code import flash.display.BitmapData; /** * Class to load images with that will be

Re: [Flashcoders] Just a quick one

2009-04-17 Thread Ian Thomas
myLoader.contentLoaderInfo.width myLoader.contentLoaderInfo.height HTH, Ian On Fri, Apr 17, 2009 at 6:09 AM, Karl DeSaulniers k...@designdrumm.com wrote: Hello all, Quick question. I am using a loader class to load some preview images and I am trying to make a couple of variables eq the

Re: [Flashcoders] Just a quick one

2009-04-17 Thread Karl DeSaulniers
That looked like it was going to work. Thanks for your response. It just told me there was no property called contentLoaderInfo in my class file. Karl DeSaulniers Design Drumm http://designdrumm.com On Apr 17, 2009, at 3:21 AM, Ian Thomas wrote: myLoader.contentLoaderInfo.width

RE: [Flashcoders] Best Tutorial Sites?

2009-04-17 Thread Cor
www.focusonflash.com -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Anthony Pace Sent: donderdag 16 april 2009 22:57 To: Flash Coders List Subject: Re: [Flashcoders] Best Tutorial Sites?

Re: [Flashcoders] Best Tutorial Sites?

2009-04-17 Thread allandt bik-elliott (thefieldcomic.com)
Glen Pike wrote: gotoandlearn.com 3 On Fri, Apr 17, 2009 at 10:59 AM, Cor c...@chello.nl wrote: www.focusonflash.com -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Anthony Pace Sent: donderdag

Re: [Flashcoders] Smart Preloading

2009-04-17 Thread allandt bik-elliott (thefieldcomic.com)
(20090417) Informatie __ Dit bericht is gecontroleerd door het NOD32 Antivirus Systeem. http://www.nod32.nl ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Smart Preloading

2009-04-17 Thread allandt bik-elliott (thefieldcomic.com)
/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders __ NOD32 4015 (20090417) Informatie __ Dit bericht is gecontroleerd door het NOD32 Antivirus Systeem

[Flashcoders] Interesting problem - doesn't work without call to trace.

2009-04-17 Thread Tim Hawkins
Hi, I've come across this a few times in my own code, but haven't seen it mentioned online - though it's a difficult thing to google for. In the following function, if the trace at the top is present, formData traces a load of XML and select1 also traces a load of XML. If I comment out the top

[Flashcoders] Interesting problem - E4X query doesn't work without call to trace.

2009-04-17 Thread Tim Hawkins
Hi, I've come across this a few times in my own code, but haven't seen it mentioned online - though it's a difficult thing to google for. In the following function, if the trace at the top is present, formData traces a load of XML and select1 also traces a load of XML. If I comment out the top

[Flashcoders] formal qualifications

2009-04-17 Thread allandt bik-elliott (thefieldcomic.com)
Hey guys I'm one of those flash coders that has come into the industry by starting as an enthusiast while doing print for a living and realising that i had more affinity with actionscript than many of the people i was talking to in digital departments and going full-time but I don't have any

Re: [Flashcoders] Interesting problem - doesn't work without call to trace.

2009-04-17 Thread Matt S.
Does it make a difference if you write the trace as : trace(formData=+formData); trace(select1:+ select1); On 4/17/09, Tim Hawkins tim...@googlemail.com wrote: Hi, I've come across this a few times in my own code, but haven't seen it mentioned online - though it's a difficult thing to google

Re: [Flashcoders] Just a quick one

2009-04-17 Thread Ashim D'Silva
If you're using Loader to load images, both wh of the image itself and that of the Loader should be the same. Sometime however, I do like taking out the data if I'm going to play with it at bitmapData level. Bitmap(loader.content).bitmapData If you get the wh of the resulting bitmap data, that's

[Flashcoders] [JOB] Temporary Flex/Flash Developer (onsite only - NYC)

2009-04-17 Thread Peyman Faratin
The innovation group at Strands Inc in NYC is looking for a gifted Flex / Flash developer to assist us in the redesign, implementation and optimization of current Flex application, which can be seen here (in Spanish version) http://www.actibvapredicciones.com The position is temporary (3

RE: [Flashcoders] Just a quick one

2009-04-17 Thread Merrill, Jason
It just told me there was no property called contentLoaderInfo in my class file. What Actionscript editor are you using? Jason Merrill Bank of America Global Learning Shared Services Solutions Development Monthly meetings on the Adobe Flash platform for rich media experiences - join

RE: [Flashcoders] formal qualifications

2009-04-17 Thread Merrill, Jason
I think it all depends on what type of company you want to work for. Some places will be looking for people with certain kinds of educational degrees, some will not. Since my group at Bank of America does multimedia for learning/training purposes, we look for formalized degrees in instructional

RE: [Flashcoders] Best Tutorial Sites?

2009-04-17 Thread Merrill, Jason
I like the Adobe Developer Connection http://www.adobe.com/devnet/ Jason Merrill Bank of America Global Learning Shared Services Solutions Development Monthly meetings on the Adobe Flash platform for rich media experiences - join the Bank of America Flash Platform Community

Re: [Flashcoders] How to smooth bitmap?

2009-04-17 Thread Pavel Repkin
Because of the very very security issue I cannot use this code. You are not allowed to use BitmapData.draw to retrieve pixels containing media from a domain other than your own. On Fri, Apr 17, 2009 at 10:41 AM, Karl DeSaulniers k...@designdrumm.comwrote: You could try this one. This is an

Re: [Flashcoders] Interesting problem - doesn't work without call to trace.

2009-04-17 Thread Glen Pike
Have you tried the toString or toXMLString for this - check the XML class for the proper function name... Glen Tim Hawkins wrote: Hi Matt, No, afraid not.. I actually use the select1 variable elsewhere, so it's not just that trace which is the problem. Thanks for the suggestion though!

Re: [Flashcoders] Interesting problem - doesn't work without call to trace.

2009-04-17 Thread Tim Hawkins
Well, it becomes a null - so if I do select1.toString() in the trace I just get a runtime error.. And I don't want to turn the results of my query into a string, because I need it as an XML ref. 2009/4/17 Glen Pike g...@engineeredarts.co.uk Have you tried the toString or toXMLString for this -

Re: [Flashcoders] Just a quick one

2009-04-17 Thread Karl DeSaulniers
Cs3 Sent from losPhone On Apr 17, 2009, at 8:19 AM, Merrill, Jason jason.merr...@bankofamerica.com wrote: It just told me there was no property called contentLoaderInfo in my class file. What Actionscript editor are you using? Jason Merrill Bank of America Global Learning Shared

[Flashcoders] AS 2.0, checking allowFullScreen inside action script

2009-04-17 Thread Pavel Repkin
Hey! Fullscreen mode feature can be enabled/disabled with allowFullScreen attribute of the embed/object tag. Is it possible to know inside action script code if the fullscreen mode is allowed . I want to hide fullscreen button in my app if fullscreen mode is not available.

Re: [Flashcoders] Just a quick one

2009-04-17 Thread Karl DeSaulniers
I am using martijndevsser ImageLoader Sent from losPhone On Apr 17, 2009, at 4:41 AM, Ian Thomas i...@eirias.net wrote: Let's try that again - perhaps I wasn't clear. I'm assuming - from your first email - you're using a flash.display.Loader? Look for the property called

Re: [Flashcoders] Just a quick one

2009-04-17 Thread Ian Thomas
Karl, Some more information up front would have helped - I was assuming you were using the Loader class in AS3, whereas it looks like you're using a third-party ImageLoader class in AS2! Really difficult to answer the question without knowing that! Looking at Martijn's source-code, it looks a

Re: [Flashcoders] formal qualifications

2009-04-17 Thread Pedro Kostelec
So it really depends on what kind of company/entity you want to work for. In many cases, you won't need it, but possessing degrees and certifications would never of course be a negative factor. The could never be a negative factor is country related. I most countries it is true, but in some (e.g.

Re: [Flashcoders] Favorite Flex book?

2009-04-17 Thread Charles Parcell
heh yeah your thread got hijacked. Charles P. On Thu, Apr 16, 2009 at 12:38 PM, Todd Kerpelman t...@kerp.net wrote: By the way, in case anybody was wondering, I ended up picking up the O'Reilly Flex Cookbook over the Training From the Source one, primarily because the O'Reilly site had a

RE: [Flashcoders] Just a quick one

2009-04-17 Thread Merrill, Jason
It just told me there was no property called contentLoaderInfo in my class file. What Actionscript editor are you using? Cs3 That could be why. I would recommend you switch coding over to an editor with better code hinting and other capabilities like the FlashDevleop, which is a free

RE: [Flashcoders] Favorite Flex book?

2009-04-17 Thread Merrill, Jason
By the way, in case anybody was wondering, I ended up picking up the O'Reilly Flex Cookbook heh yeah your thread got hijacked. Heh, yeah sorry Todd. And by the way, in case anyone was wondering, Dave Watts spend a lot of time with me off list helping me get my copy of Flexbuilder 3 working

Re: [Flashcoders] Just a quick one

2009-04-17 Thread Karl DeSaulniers
Sry about the up front info. I have tried using a blank movieClip, but it still doesn't work. The issue I think is that the class creates an MC called raw to load the bitmap data and then deletes it to create img where it draws the bitmap for smoothing. Some where between, I am not getting

[Flashcoders] [Flash eLearning] Introduction of a self-made programmer

2009-04-17 Thread Guillaume Malartre
Well Hi! I've been developing eLearning application for 5 years now (rigth after finishing my Electronical Conception degrees). I joined my brother in a startup company named Scolab and all we do 365 days a years is develop educational applications/exercises distributed through our platform. I

Re: [Flashcoders] LoadVariables - Pipe character is being URL Encoded?

2009-04-17 Thread Benjamin Wolsey
Am Freitag, den 17.04.2009, 12:58 -0400 schrieb Lou Klepner: ?values=1|2|3 When I call it using LoadVariables, the pipe symbol is being URL- encoded, and the web-service ends up receiving this request - ?values=1%7c2%7c3 Unfortunately the webservice is outside my control and I can't

Re: [Flashcoders] LoadVariables - Pipe character is being URL Encoded?

2009-04-17 Thread Lou Klepner
Thanks Ben - Its nice to know whats happening behind the scenes. Good point about fixing the web server - I've managed to convince the vendor they should clean up their web service, so the pipe character, which is encoded as %7c, is now being properly recognized - woo! Thanks again! Lou

[Flashcoders] flickr api as3

2009-04-17 Thread Preston Parris
Does anyone have a good example of loading thumbnails from flickr, and then once you click on that thumbnail, loading a larger version of the picture from flickr still in the flash. Everything i have found links to the flickr page after showing the thumbnails. thanks!

[Flashcoders] ShareThis issue..

2009-04-17 Thread artur
is there a way to dynamically set the Title or Content data for ShareThis? *ActionScript* *private* *function* onClick():*void* { ExternalInterface.call (*ShareThis_set,”Title”*); ExternalInterface.call (*ShareThis_share*); } *JavaScript* var ShareObj = SHARETHIS.addEntry({ },

Re: [Flashcoders] flickr api as3

2009-04-17 Thread Steven Sacks
http://tinyurl.com/d67kuy On Apr 17, 2009, at 1:02 PM, Preston Parris wrote: Does anyone have a good example of loading thumbnails from flickr, and then once you click on that thumbnail, loading a larger version of the picture from flickr still in the flash. Everything i have found links

Re: [Flashcoders] Interesting problem - doesn't work without call to trace.

2009-04-17 Thread Taka Kojima
Hey Tim, I have run into this before as well, with both ActionScript and using alert() in JavaScript. What I concluded was that the trace/alert basically adds a small pause or causes something to happen (i.e. skip a frame or something of the sort) so that the code below it works. I may be

Re: [Flashcoders] Just a quick one

2009-04-17 Thread Karl DeSaulniers
What about sepy? I'm on a mac. Sent from losPhone On Apr 17, 2009, at 12:29 PM, Merrill, Jason jason.merr...@bankofamerica.com wrote: It just told me there was no property called contentLoaderInfo in my class file. What Actionscript editor are you using? Cs3 That could be why. I

Re: [Flashcoders] How much bytes ActionScript classes take in SWF?

2009-04-17 Thread Pavel Repkin
Yes, but does not display how much does packages or individual classes take. Just tells how much ActionScript code takes. On Wed, Apr 15, 2009 at 2:55 PM, Glen Pike g...@engineeredarts.co.ukwrote: Sorry, misread your email and jumped the gun - the size report should tell you how big your

Re: [Flashcoders] How much bytes ActionScript classes take in SWF?

2009-04-17 Thread Pavel Repkin
Thanks, Juan, this is exactly what I'm looking for! Does flex compiler work with ActionScript 2.0? I forgot to mention that we are working with 2.0. On Wed, Apr 15, 2009 at 5:40 PM, Juan Pablo Califano califa010.flashcod...@gmail.com wrote: PS: a couple of notes since my last message could be