RE: [Flashcoders] CHANGE style of Datagrid

2013-08-16 Thread Ted Lehr
on behalf of Ted Lehr Sent: Fri 8/16/2013 12:23 PM To: Flash Coders List Subject: RE: [Flashcoders] CHANGE style of Datagrid yeah - that's a good idea... I am creating like 10 grids so I was hoping I could just change the style when needed as opposed to having to create 20... -Original Message

RE: [Flashcoders] CHANGE style of Datagrid

2013-08-16 Thread Ted Lehr
nice... yes, changing the data does seem to help... thanks... going to chase that rabbit now... -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com on behalf of ktu Sent: Fri 8/16/2013 1:03 PM To: Flash Coders List Subject: Re: [Flashcoders] CHANGE style of Datagrid i

Re: [Flashcoders] IOS Flash question

2013-05-28 Thread Karl DeSaulniers
I have emailed with attachments, but it involved a PHP file that put the email together and attached the file as base64 then sent it on its way. Might be a good approach for you as well. Then you can just have your iOS app send just a form request. PDF attachments can get tricky though.

Re: [Flashcoders] IOS Flash question

2013-05-28 Thread Paul A.
On 28/05/2013 10:59, Karl DeSaulniers wrote: I have emailed with attachments, but it involved a PHP file that put the email together and attached the file as base64 then sent it on its way. Might be a good approach for you as well. Then you can just have your iOS app send just a form request.

Re: [Flashcoders] IOS Flash question

2013-05-28 Thread Hans Wichman
maybe this might help? http://flashsimulations.com/2011/11/30/ios-native-extension-for-adobe-air-in-app-mail-composer/ On 28-5-2013 14:36, Paul A. wrote: On 28/05/2013 10:59, Karl DeSaulniers wrote: I have emailed with attachments, but it involved a PHP file that put the email together and

Re: [Flashcoders] IOS Flash question

2013-05-28 Thread Paul A.
On 28/05/2013 13:42, Hans Wichman wrote: maybe this might help? http://flashsimulations.com/2011/11/30/ios-native-extension-for-adobe-air-in-app-mail-composer/ That's ideal. Thank you. I'm still hesitant to do it - the client also requested the ability to queue the emails until an internet

Re: [Flashcoders] IOS Flash question

2013-05-28 Thread Hans Wichman
extra cash for extra functionality seems like a good idea especially when dealing with new tech :) I think IF it works (composing mail using the native client) that queing will be handled automatically by the os (the mails will remain in your outbox until sent) good luck! H On 28-5-2013

Re: [Flashcoders] AS3 finally..

2013-05-27 Thread Paul A.
...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: maandag 27 mei 2013 1:22 To: Flash Coders List Subject: Re: [Flashcoders] AS3 finally.. Thanks Ktu. That actually makes sense. I was not looking for a reason necessarily to use a private class, but more so, saw this example and had

Re: [Flashcoders] AS3 finally..

2013-05-27 Thread tom rhodes
-bounces@**chattyfig.figleaf.comflashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: maandag 27 mei 2013 1:22 To: Flash Coders List Subject: Re: [Flashcoders] AS3 finally.. Thanks Ktu. That actually makes sense. I was not looking for a reason necessarily to use a private

RE: [Flashcoders] AS3 finally..

2013-05-27 Thread Cor
[mailto:flashcoders-bounces@**chattyfig.figleaf.comflashcoders-bounc e...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: maandag 27 mei 2013 1:22 To: Flash Coders List Subject: Re: [Flashcoders] AS3 finally.. Thanks Ktu. That actually makes sense. I was not looking for a reason

Re: [Flashcoders] AS3 finally..

2013-05-27 Thread Paul A.
On 27/05/2013 11:37, tom rhodes wrote: i generally use them for something teeny tiny that is only needed in the scope of the main class and doesn't feel right in it's own file as it's never used anywhere but the main class. Why wouldn't you just incorporate that functionality as part of the

RE: [Flashcoders] AS3 finally..

2013-05-27 Thread Cor
...@chattyfig.figleaf.com] On Behalf Of Paul A. Sent: maandag 27 mei 2013 12:50 To: Flash Coders List Subject: Re: [Flashcoders] AS3 finally.. On 27/05/2013 11:37, tom rhodes wrote: i generally use them for something teeny tiny that is only needed in the scope of the main class and doesn't feel right in it's own

Re: [Flashcoders] AS3 finally..

2013-05-27 Thread Paul A.
I have written a lot of AS3 code with classes and before that was mostly a Java developer and I have yet to have written an AS3 project that has used private classes for anything at all but singleton enforcement. I'm trying to get a handle on whether I've been missing out or people are using

RE: [Flashcoders] AS3 finally..

2013-05-27 Thread Rick Hassen
From: p...@ipauland.com To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] AS3 finally.. I have written a lot of AS3 code with classes and before that was mostly a Java developer and I have yet to have written an AS3 project that has used private classes for anything at all

Re: [Flashcoders] AS3 finally..

2013-05-27 Thread Paul A.
. Sadly, I'm not a subscriber, so I'll have to pass. I might sign up for a trial sometime and check out what he has to say. Date: Mon, 27 May 2013 12:05:44 +0100 From: p...@ipauland.com To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] AS3 finally.. I have written a lot of AS3

Re: [Flashcoders] AS3 finally..

2013-05-26 Thread Karl DeSaulniers
Ok, I am understanding things a little better I believe. Quick question to solidify some knowledge. In reference to my question about a private class, is the class CustomClient at the bottom an example of a private class? It was mentioned that even if you don't have the word private there and

Re: [Flashcoders] AS3 finally..

2013-05-26 Thread ktu
yes. this is an example of a private class. but as someone earlier mentioned, you shouldn't ever _need_ to use them. and it would be more appropriate not to use them in production code. using the internal namespace gives you some restriction, and you could even use your own namespace for

Re: [Flashcoders] AS3 finally..

2013-05-26 Thread Karl DeSaulniers
Thanks Ktu. That actually makes sense. I was not looking for a reason necessarily to use a private class, but more so, saw this example and had the though this must be a private class and wanted to verify for my own understanding. Which you have provided. I see and understand what you mean by

RE: [Flashcoders] AS3 finally..

2013-05-26 Thread Cor
- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: maandag 27 mei 2013 1:22 To: Flash Coders List Subject: Re: [Flashcoders] AS3 finally.. Thanks Ktu. That actually makes sense. I was not looking for a reason

Re: [Flashcoders] Mailing Lists and Tools

2013-05-24 Thread Kenneth Kawamoto
version of phpStorm (both by JetBrains): http://www.jetbrains.com/phpstorm/ From: kennethkawam...@gmail.com To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Mailing Lists and Tools Date: Thu, 23 May 2013 23:23:53 +0100 CC: Webstorm doesn't support PHP :( Kenneth

Re: [Flashcoders] Mailing Lists and Tools

2013-05-24 Thread Kurt Dommermuth
: if you really like Webstorm, some understand it to be a stripped down version of phpStorm (both by JetBrains): http://www.jetbrains.com/phpstorm/ From: kennethkawam...@gmail.com To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Mailing Lists and Tools Date: Thu, 23 May

Re: [Flashcoders] Projectors...

2013-05-24 Thread Paul A.
Mac projector is an option on the publish settings for CS6, or have I misunderstood the question? On 23/05/2013 17:54, Eric E. Dolecki wrote: Has anyone been able to generate a more current AS3 file as a projector? I'm not talking about AIR or captive runtime, talking about the old-fashioned

Re: [Flashcoders] AS3 Noise (Audio) Filter?

2013-05-24 Thread Karim Beyrouti
I have not seen anything that does that (how unhelpful was this !)… Having said that, this guy is a DSP specialist by the looks of it: http://gerrybeauregard.wordpress.com/2010/08/03/an-fft-in-as3/ maybe if you got in contact with him ? On 24 May 2013, at 15:20, Eric E. Dolecki

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Kurt Dommermuth
I don't know of any lists, but in the link below the guy comments of development tools. Over a year old, but still a great read. https://plus.google.com/u/0/109047477151984864676/posts/CVGJKLMMehs On Thu, May 23, 2013 at 9:50 AM, Bryan Thompson br...@swfmagic.com wrote: I know many

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Kerry Thompson
I've found Dreamweaver to be a good tool for HTML5. when you get JavaScript under your belt, take a look at JQuery. it will save you a lot of development time. Mailing lists are pretty quiet these days. I don't know where the programmers congregate, but my colleagues in the French Horn world have

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Oren B.
Enough with the fuckin spam!!! בתאריך יום חמישי, 23 במאי 2013, Kerry Thompson כתב: I've found Dreamweaver to be a good tool for HTML5. when you get JavaScript under your belt, take a look at JQuery. it will save you a lot of development time. Mailing lists are pretty quiet these days. I

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread James Merrill
I've been moving to StackOverflow for questions, and Reddit's coding subreddits for general programming discussion Here's a URL that bundles a bunch of good programming subreddits: http://www.reddit.com/r/webdev+web_design+html+css+programming+learnprogramming+design+ProgrammerHumor+html5 As for

RE: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Bryan Thompson
, 2013 8:17 AM To: Flash Coders List Subject: Re: [Flashcoders] Mailing Lists and Tools I've been moving to StackOverflow for questions, and Reddit's coding subreddits for general programming discussion Here's a URL that bundles a bunch of good programming subreddits: http://www.reddit.com/r/webdev

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Kerry Thompson
Take it easy, Oren. There is no spam I've seen. It looks like something got corrupted in my reply, but that's hardly spam. I'm posting from a Caribbean island, and there might be some transmission problems-- this is a small, less-visited island. Be cool, Oren. the closest thing to spam in this

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Dave Watts
Oren, what's your problem?? Apparently, he was unable to unsubscribe himself and unwilling to ask for help. I've unsubscribed him. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule,

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Hans Wichman
tbh he asked million of times, but tnx dave ;) one less spammer hehe. On 23-5-2013 17:51, Dave Watts wrote: Oren, what's your problem?? Apparently, he was unable to unsubscribe himself and unwilling to ask for help. I've unsubscribed him. Dave Watts, CTO, Fig Leaf Software

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Henrik Andersson
Kerry Thompson skriver: Take it easy, Oren. There is no spam I've seen. It looks like something got corrupted in my reply, but that's hardly spam. I'm posting from a Caribbean island, and there might be some transmission problems-- this is a small, less-visited island. Isn't TCP supposed to

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Kenneth Kawamoto
I know it's a long tradition to laugh at Dreamweaver as substandard tool, but I actually use it daily, for two reasons: 1. Comprehensive jQuery auto-completion/code-hint as well as PHP 2. Built-in FTP SVN client Obviously never touch the WYSIWYG editor. Please let me know if there are

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Dave Watts
Take it easy, Oren. There is no spam I've seen. It looks like something got corrupted in my reply, but that's hardly spam. I'm posting from a Caribbean island, and there might be some transmission problems-- this is a small, less-visited island. Isn't TCP supposed to prevent that? It will

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Jon Bradley
There are many better alternatives for professional coding that include automated building, unit testing, support for SCSS and LESS, grunt, etc. I wouldn't consider Dreamweaver a serious platform for building web applications. Useful for some, certainly, but there are many better options out

RE: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Marco Terrinoni
Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Kenneth Kawamoto Sent: 23 May 2013 17:15 To: Flash Coders List Subject: Re: [Flashcoders] Mailing Lists and Tools I know it's a long tradition to laugh at Dreamweaver

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Kenneth Kawamoto
-Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Kenneth Kawamoto Sent: 23 May 2013 17:15 To: Flash Coders List Subject: Re: [Flashcoders] Mailing Lists and Tools I know it's a long tradition to laugh

Re: [Flashcoders] Projectors...

2013-05-23 Thread Hans Wichman
Hey Eric, I recently was wondering about this myself, and found a bug post about it: https://bugbase.adobe.com/index.cfm?event=bugid=3363321 Check the attachments on that page, it contains a createprojector.zip which might help, or just build an air projector. best H On 23-5-2013 18:54,

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Kenneth Kawamoto
Webstorm doesn't support PHP :( Kenneth Kawamoto http://www.materiaprima.co.uk/ On 23 May 2013, at 17:35, Jon Bradley wrote: There are many better alternatives for professional coding that include automated building, unit testing, support for SCSS and LESS, grunt, etc. I wouldn't

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Jon Bradley
Need to step up to IntelliJ for that. On May 23, 2013, at 6:23 PM, Kenneth Kawamoto kennethkawam...@gmail.com wrote: Webstorm doesn't support PHP :( Kenneth Kawamoto http://www.materiaprima.co.uk/ On 23 May 2013, at 17:35, Jon Bradley wrote: There are many better alternatives

RE: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Rick Hassen
if you really like Webstorm, some understand it to be a stripped down version of phpStorm (both by JetBrains): http://www.jetbrains.com/phpstorm/ From: kennethkawam...@gmail.com To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Mailing Lists and Tools Date: Thu, 23 May 2013

RE: [Flashcoders] AS3 finally..

2013-05-21 Thread Cor
Karl, One: why doesn't ActionScript 3 allow private classes? A: They are useless because they couldn't be used, I guess. You can use a Class within a public class which then would be private to that class it self. Two: why is writing public class a best practice if private class does not exist?

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread Paul A.
On 21/05/2013 05:04, Karl DeSaulniers wrote: Thank you Ktu. That is what I was looking for. I'd say the problem with asking questions like this is that you're getting answers to questions you shouldn't be asking at this stage of your AS3 experience. While you may get a technical answer, you

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread Matt S.
You can get Moock's book for $26 on Powells: http://www.powells.com/biblio/1-9780596526948-6 Its been out for a while now though, so I would hit your local used bookstore, I'm willing to bet there's a few copies out there, you can probably score it for $10 or something. Not that Moock doesn't

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread mike g
$8.49 here: http://www.ebay.com/ctg/Essential-ActionScript-3-0-Colin-Moock-2007-Paperback-/59066703 On Tue, May 21, 2013 at 9:02 PM, Matt S. mattsp...@gmail.com wrote: You can get Moock's book for $26 on Powells: http://www.powells.com/biblio/1-9780596526948-6 Its been out for a while now

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread Karl DeSaulniers
Oh well hot dog I can afford that! :) Thanks all. Karl Sent from losPhone On May 21, 2013, at 11:44 AM, mike g mike.ogr...@gmail.com wrote: $8.49 here: http://www.ebay.com/ctg/Essential-ActionScript-3-0-Colin-Moock-2007-Paperback-/59066703 On Tue, May 21, 2013 at 9:02 PM, Matt S.

RE: [Flashcoders] AS3 finally..

2013-05-21 Thread Marco Terrinoni
...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: 21 May 2013 18:50 To: Flash Coders List Subject: Re: [Flashcoders] AS3 finally.. Oh well hot dog I can afford that! :) Thanks all. Karl Sent from losPhone On May 21, 2013, at 11:44 AM, mike g mike.ogr

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread Karl DeSaulniers
18:50 To: Flash Coders List Subject: Re: [Flashcoders] AS3 finally.. Oh well hot dog I can afford that! :) Thanks all. Karl Sent from losPhone On May 21, 2013, at 11:44 AM, mike g mike.ogr...@gmail.com wrote: $8.49 here: http://www.ebay.com/ctg/Essential-ActionScript-3-0-Colin

Re: [Flashcoders] Nested clip mouse over

2013-05-21 Thread Eric E Dolecki
clip.clip.addEventListener( ... Eric On May 21, 2013, at 5:17 PM, [ p e r c e p t i c o n ] percepti...@gmail.com wrote: Anyone know how to get the mouse over of a nested clip ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread Kevin Newman
Why? The answer has to do with Adobe's adherence to the ECMAScript working standard that they were basing AS3 on. At the time (before the ECMAScript 4 process fell apart), the body determined that private constructors were not needed, so adobe built this restriction into AS3. Private

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread Karl DeSaulniers
This is very interesting to me. I don't know how that all works in a real-case scenario yet, but I will. ;) When I get into design patterns I think I may revisit this post. Thanks Kevin. Best, Karl DeSaulniers Design Drumm http://designdrumm.com On May 21, 2013, at 5:51 PM, Kevin Newman

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread Karl DeSaulniers
: www.mularam.com -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: 21 May 2013 18:50 To: Flash Coders List Subject: Re: [Flashcoders] AS3 finally.. Oh well hot dog I can

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread Cédric Muller
For some more insights (though ... not much .. .and hey baby, is that Java over there ?) you can check this thread (they are speaking about private and protected classes, but the reading is interesting) http://www.coderanch.com/t/410134/java/java/private-protected-class hth, Cedric Why? The

Re: [Flashcoders] AIR

2013-05-20 Thread David Hunter
I'm still using it, and always get good feedback from clients. I'd recommend it, although I hadn't considered whether adobe might stop supporting it. David Hunter www.davidhunterdesign.com +44 (0) 7869 104 906 @DHDPIC On 19 May 2013 15:08, Hans Wichman hans.wich...@gmail.com wrote: Hi John,

RE: [Flashcoders] AIR

2013-05-20 Thread Paul Steven
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter Sent: 20 May 2013 09:42 To: Flash Coders List Subject: Re: [Flashcoders] AIR I'm still using it, and always get good feedback from clients. I'd recommend it, although I hadn't considered whether adobe might stop supporting

Re: [Flashcoders] AIR

2013-05-20 Thread Peter Ginneberge
content created today will still run in the future, independent of where air itself is going. Unless you're using the HTML component to load external (http) content which you have no control over. Webkit (the browser engine AIR uses) currently doesn't support HTML 5 very well. For instance,

Re: [Flashcoders] AIR

2013-05-20 Thread John R. Sweeney Jr.
Webkit is dragging its feet, is exactly why Google pulled away from Webkit and has gone over to their render engine Blink. Apple is not interested in pushing HTML5 acceptance in webkit, just like they didn't want Flash around either. They want you buying apps through the App/iTunes store and

Re: [Flashcoders] AIR

2013-05-20 Thread John McCormack
Thank you for responding. I had considered delivering educational content through PDFs as well but it looks as though AIR is a safer bet. John ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] AIR

2013-05-20 Thread John R. Sweeney Jr.
I have built approximately a dozen AIR apps for a educational publishing house that deliver on PC and MAC. With minimal changes, mostly fileIO (saving and loading previous game) it took me about a day to convert each app to run on an iPad, beta test and then submit to the iTunes store for

Re: [Flashcoders] AIR

2013-05-20 Thread John McCormack
That sounds very good. Is it hard to get the public's interest in them? I have sold CDs into the education market. Another is on the way: decimals fractions msi (beta)... http://www.easypeasy.co.uk/atm/ I really need to be selling cheaply to a wider market and AIR, rather than C++, will

Re: [Flashcoders] AS3 finally..

2013-05-20 Thread Karl DeSaulniers
Quick two part question. One: why doesn't ActionScript 3 allow private classes? Two: why is writing public class a best practice if private class does not exist? I could not find an explination in the books I am studying so I thought I'd ask here. TIA. Best, Karl DeSaulniers Design Drumm

RE: [Flashcoders] AS3 finally..

2013-05-20 Thread Rick Hassen
an api. Hope that helps. I don't know where you are getting your information, but you may want to consider getting a good AS3 book. Rick Subject: Re: [Flashcoders] AS3 finally.. From: k...@designdrumm.com Date: Mon, 20 May 2013 20:58:41 -0500 To: flashcoders@chattyfig.figleaf.com Quick

Re: [Flashcoders] AS3 finally..

2013-05-20 Thread John R. Sweeney Jr.
Or subscribe to http://www.lynda.com Excellent training tutorials on tons of software. Very in-depth, but you do pay for it. If you know AS2, check out www.gotoandlearn.com. Many free tutorials on specific tasks, but you'll see them working and their AS3 code, so you can start making the

Re: [Flashcoders] AS3 finally..

2013-05-20 Thread Karl DeSaulniers
Thank you John. Yes, I have already watched some really good tuts on gotoandlearn and plan to watch more when I start working on my project. My book is from lynda.com too. Going to invest in Moocks book as suggested earlier as well. Just need to gen some funds. :) Karl DeSaulniers Design

Re: [Flashcoders] AS3 finally..

2013-05-20 Thread Ktu
you can have public class, internal class (limited to package), and you can make pseudo private classes by declaring a class in the same file as another class, but outside the package. the main reason you write 'public class' is because the _default_ is internal. if you simply say class MyClass

Re: [Flashcoders] AS3 finally..

2013-05-20 Thread John R. Sweeney Jr.
Yeah, we all have the bad problem of paying the rent and eating. :) I know just what you mean. Good luck and like someone said before, we can't teach you AS3, but when you have specific problems or questions, feel free to ask the group. We've all needed help at one time or another and this

Re: [Flashcoders] AS3 finally..

2013-05-20 Thread Karl DeSaulniers
Thank you Ktu. That is what I was looking for. Much thanks, Best, Karl DeSaulniers Design Drumm http://designdrumm.com On May 20, 2013, at 10:58 PM, Ktu wrote: you can have public class, internal class (limited to package), and you can make pseudo private classes by declaring a class in

Re: [Flashcoders] AS3 finally..

2013-05-19 Thread Karl DeSaulniers
In place of void? so like... function someFunc():Number { //return a number } function someFunc():String { //return a string } Karl DeSaulniers Design Drumm http://designdrumm.com On May 19, 2013, at 12:26 AM, John R. Sweeney Jr. wrote: Void was AS2 and wasn't really

Re: [Flashcoders] AS3 finally..

2013-05-19 Thread Hans Wichman
Karl, no harm intended, but do yourself and us a favor and get something like Essential Actionscript 3 from Moock, it will save you lots and lots of unnecessary self inflicted punishment :). That said, AS3 is much more about (strong) typing than AS2 was. In that line of thinking, you need to

Re: [Flashcoders] AS3 finally..

2013-05-19 Thread Henrik Andersson
Hans Wichman skriver: That said, AS3 is much more about (strong) typing than AS2 was. In that line of thinking, you need to specify exactly what types of parameters go into a method/function and what it returns, even if that what is nothing. The type of Nothing is this respect is void.

Re: [Flashcoders] AS3 finally..

2013-05-19 Thread Paul A.
On 19/05/2013 09:18, Hans Wichman wrote: Karl, no harm intended, but do yourself and us a favor and get something like Essential Actionscript 3 from Moock, it will save you lots and lots of unnecessary self inflicted punishment :). Excellent advice. Don't try and get to grips with the

Re: [Flashcoders] AS3 finally..

2013-05-19 Thread mike g
Just wondering, has Colin Moock put forward any thoughts re. Flash/Actionscript's future direction? On Sun, May 19, 2013 at 6:02 PM, Paul A. p...@ipauland.com wrote: On 19/05/2013 09:18, Hans Wichman wrote: Karl, no harm intended, but do yourself and us a favor and get something like

Re: [Flashcoders] AIR

2013-05-19 Thread Hans Wichman
Hi John, content created today will still run in the future, independent of where air itself is going. I wouldnt worry too much bout it, but that might be just me :) best h Sent from my iPad On 19 mei 2013, at 14:39, John McCormack j...@easypeasy.co.uk wrote: Hi there. I would like to

Re: [Flashcoders] AS2: SWF Decompiler Recommendations

2013-05-18 Thread John McCormack
http://www.buraks.com/asv/ John ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] flickering buttons

2013-05-18 Thread Paul A.
On 18/05/2013 15:19, [p e r c e p t i c o n] wrote: Hi Gang, really stupid question. I have a movieclip that animates on. in it are several movieclips representing buttons. When the the containing movieclip animates on...the clips it contains flicker even thought they have instance names.

Re: [Flashcoders] flickering buttons

2013-05-18 Thread [ p e r c e p t i c o n ]
I guess what I mean is after the containing clip is finished animating the clips within it are cycling through their rollover states Thanks On May 18, 2013, at 10:29 AM, Paul A. p...@ipauland.com wrote: On 18/05/2013 15:19, [p e r c e p t i c o n] wrote: Hi Gang, really stupid question.

Re: [Flashcoders] flickering buttons

2013-05-18 Thread Paul A.
I guess they're still playing. They won't stop just because the parent has stopped. If they are movieclip acting as buttons, at some stage you've told them to play. You do have a stop() in them to stop then cycling, don't you? On 18/05/2013 17:16, [ p e r c e p t i c o n ] wrote: I guess

Re: [Flashcoders] flickering buttons

2013-05-18 Thread [ p e r c e p t i c o n ]
Yes, code in the button class should stop it. I just wondered if the animation was creating individual instances and that was causing it to hinder the buttons is all. On May 18, 2013, at 1:05 PM, Paul A. p...@ipauland.com wrote: I guess they're still playing. They won't stop just because

Re: [Flashcoders] AS2: SWF Decompiler Recommendations

2013-05-18 Thread Jim Duber
Thanks everyone for the suggestions. I should have mentioned that I'm on a Mac so Burak's ASV isn't an option for me. Based on your comments, I tried the demo version of 'SWF Decompiler Trillix for Mac'. After a quick test confirmed that it did exactly what I needed, I paid for a full license

Re: [Flashcoders] AS3 finally..

2013-05-18 Thread John R. Sweeney Jr.
Void was AS2 and wasn't really necessary. void is AS3 and since it uses strong typing, very necessary. void will not return anything. If you want back values (numeric) use Number (text) use String, etc. John R. Sweeney Jr. Senior Interactive Multimedia Developer OnDemand Interactive Inc

Re: [Flashcoders] (no subject)

2013-05-17 Thread natalia Vikhtinskaya
Yes, I saw this link and that does not help. In Metro mode only Adobe.com plays!. I read a lot of questions about that problem in Internet without any working solution. I also found another problem. Flash plays only in Desk mode and only from Internet. If the html with flash runs from my pc flash

Re: [Flashcoders] AS2: SWF Decompiler Recommendations

2013-05-17 Thread Ross Sclafani
sothink swfdecompiler i do not envy you. Ross P. Sclafani design / technology / creative http://ross.sclafani.net http://www.twitter.com/rosssclafani http://www.linkedin.com/in/rosssclafani [347] 204.5714 let go of even your longest held beliefs, the only truth is in observation. On May 17,

RE: [Flashcoders] AS2: SWF Decompiler Recommendations

2013-05-17 Thread Rick Hassen
I used Trillix a few years ago with AS3 and was impressed with it. Everything was there just like a normal flash file. http://www.flash-decompiler.com/ From: ross.sclaf...@gmail.com Subject: Re: [Flashcoders] AS2: SWF Decompiler Recommendations Date: Fri, 17 May 2013 17:20:23 -0400 To: j

Re: [Flashcoders] AS2: SWF Decompiler Recommendations

2013-05-17 Thread Karl DeSaulniers
...@gmail.com Subject: Re: [Flashcoders] AS2: SWF Decompiler Recommendations Date: Fri, 17 May 2013 17:20:23 -0400 To: j...@duber.com; flashcoders@chattyfig.figleaf.com CC: sothink swfdecompiler i do not envy you. Ross P. Sclafani design / technology / creative http://ross.sclafani.net

Re: [Flashcoders] IOS hooks

2013-05-16 Thread John R. Sweeney Jr.
Nobody on this list is doing IOS deliverables with navigation? I'm a little surprised. Bummer… :( John R. Sweeney Jr. Senior Interactive Multimedia Developer OnDemand Interactive Inc Hoffman Estates, IL 60169 On May 14, 2013, at 11:14 PM, John R. Sweeney Jr. wrote: Howdy, Does

Re: [Flashcoders] (no subject)

2013-05-16 Thread Oren B.
just fuck with that flshcoder shit, cant get rid of that group no metter what. how bout now? thanks. On Thu, May 16, 2013 at 12:43 AM, Kerry Thompson al...@cyberiantiger.bizwrote: It sounds like you need to upgrade to the latest Flash Player. I believe the latest version is 11.7.700.202, but

Re: [Flashcoders] (no subject)

2013-05-16 Thread Cédric Muller
fishcoder would have been a cool word in a cool world a godish thing to do just fuck with that flshcoder shit, cant get rid of that group no metter what. how bout now? thanks. On Thu, May 16, 2013 at 12:43 AM, Kerry Thompson al...@cyberiantiger.bizwrote: It sounds like you need to

Re: [Flashcoders] (no subject)

2013-05-16 Thread Bob Wohl
I dunno man, seems like it would be a bit fishy. =/ On Thu, May 16, 2013 at 12:34 PM, Cédric Muller flashco...@benga.li wrote: fishcoder would have been a cool word in a cool world a godish thing to do just fuck with that flshcoder shit, cant get rid of that group no metter what.

Re: [Flashcoders] Stolen Laptop: Adobe Support Laughable

2013-05-15 Thread Cédric Muller
Yep :( But the Cloud thing is quite interesting (I would consider the upgrade). Making users captive in a creative eco system. Cedric Le 15 mai 2013 à 05:51, John R. Sweeney Jr. a écrit : If they won't help you, that's probably your best bet. Just get CS4 disk or the digital files (which

Re: [Flashcoders] Stolen Laptop: Adobe Support Laughable

2013-05-15 Thread Karl DeSaulniers
Which do you need? Mac or PC? I think I may still have a CS4 DMG for powerMac (pre Intel). Best, Karl DeSaulniers Design Drumm http://designdrumm.com On May 15, 2013, at 1:22 AM, Cédric Muller wrote: Yep :( But the Cloud thing is quite interesting (I would consider the upgrade).

Re: [Flashcoders] Stolen Laptop: Adobe Support Laughable

2013-05-15 Thread Hans Wichman
Ah well, Adobe Support and Pricing where should I start :) http://www.innerdrivestudios.com/blog/miscellaneous/adobe-cs-6-error-code-5-exit-code-5 On 15/05/2013 08:33, Karl DeSaulniers wrote: Which do you need? Mac or PC? I think I may still have a CS4 DMG for powerMac (pre Intel). Best,

Re: [Flashcoders] Stolen Laptop: Adobe Support Laughable

2013-05-15 Thread Jim Duber
Thanks all for the replies and suggestions. I've contacted Karl offlist to see about that dmg. AR! Also, wanted to mention to Hans that after I described my problem to tech support (via text chat), one support tech replied, So, the problem is that you're seeing too many error messages?

Re: [Flashcoders] (no subject)

2013-05-15 Thread Kerry Thompson
It sounds like you need to upgrade to the latest Flash Player. I believe the latest version is 11.7.700.202, but I'm on Windows 7. I think it's unlikely, but there might be a different player for Windows 8. You can check it out at www.adobe.com. Just search on Flash Player. Cordially, Kerry

Re: [Flashcoders] (no subject)

2013-05-15 Thread Dave Watts
To all problems that Flash has I found new. I tested some flash sites in Windows 8 Metro and found that some pages with flash sites does not play. Adobe.com plays well. What reason can be for other sites? Some sites said you need to upgrate you Flash player if they use swfobject, some just

Re: [Flashcoders] (no subject)

2013-05-15 Thread Ross P. Sclafani
is the whitelist still in play? On May 15, 2013, at 3:59 PM, natalia Vikhtinskaya natavi.m...@gmail.com wrote: Hi To all problems that Flash has I found new. I tested some flash sites in Windows 8 Metro and found that some pages with flash sites does not play. Adobe.com plays well. What

Re: [Flashcoders] Stolen Laptop: Adobe Support Laughable

2013-05-15 Thread Jim Duber
I have a bit of good news with which to close out this thread. In frustration, I posted a brief rant on Adobe's Facebook page. I got immediate help (from Madison) and now have Flash CS4 installed, updated to Flash 10.0.02 and running. Lessons learned: (1) make frequent backups of all your

Re: [Flashcoders] Adobe Flash future

2013-05-14 Thread David Hunter
I think the fact that this list is pretty inactive says it all. I'm freelancing at an agency right now who I make AIR apps for. I used to make a lot of them for a few years, but recently I think they are looking more and more at html5/js solutions. A few years ago I used to make Flash websites

Re: [Flashcoders] Adobe Flash future

2013-05-14 Thread Karl DeSaulniers
This is probably a moot point, but being the platform flash is and its ability to manipulate objects and apply code to the interactions of the objects in an easy user friendly layout, it would seem that Adobe would look into enabling flash to pick if it used ActionScript or Javascript or even a

Re: [Flashcoders] Stolen Laptop: Adobe Support Laughable

2013-05-14 Thread John R. Sweeney Jr.
If they won't help you, that's probably your best bet. Just get CS4 disk or the digital files (which are about 6 or 7 gig) and use your serial number. Sorry. :( John R. Sweeney Jr. Senior Interactive Multimedia Developer OnDemand Interactive Inc Hoffman Estates, IL 60169 On May 14,

Re: [Flashcoders] Adobe Flash future

2013-05-10 Thread John McCormack
Alex Harui at Adobe had these interesting things to say: http://tech.groups.yahoo.com/group/flexcoders/message/165517 John ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

<    1   2   3   4   5   6   7   8   9   10   >