[Flashcoders] Flex and Mouse up outside

2013-12-09 Thread Kerry Thompson
Flashbuilder 4.7, Mac OSX, Flex project (MXML AS3) I'm trying to catch a mouse up event when the mouse is released off the stage. AS3 has RELEASE_OUTSIDE in Flash Player 11.3 and up, but I'm getting an error in my FlashBuilder app--it doesn't recognize RELEASE_OUTSIDE. I'm using the default

[Flashcoders] RE: Modifying Sharepoint 2010 list from Flash

2013-11-29 Thread Merrill, Jason
Yes - you can call Sharepoint webservices from Flash. There are some libraries out there (or were) for calling Webservices from Flash you can use to do this. Been a while though, so can't give you any specific links, but yes, it can be done, we've done it for many projects. There are also

[Flashcoders] Modifying Sharepoint 2010 list from Flash

2013-11-27 Thread Ted Lehr
Anyone have any experience/guidance with how to modifying list entries in Sharepoint 2010 from Flash? Ted ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] mProjector experience?

2013-11-14 Thread Randy Tinfow
I've got a simple mProjector project, 2 Flash screens running video in sync. Anyone here have mProjector experience? I'd be happy to pay for a half hour consult or to farm it out. The documentation is not wonderful. Thanks! Randy Tinfow rtin...@gmail.com Sent from my iPad On Nov 6, 2013,

[Flashcoders] Colour rendition of imported assets

2013-11-05 Thread Paul A.
I'm working on a project that includes a number of panels upon which are images. These images have been imported from photoshop. The images are basically cut out from a solid background and have a crude border around them. The panel background is a solid colour. If you are looking well

Re: [Flashcoders] Colour rendition of imported assets

2013-11-05 Thread David Cohn
The solid color may be because you're sampling the color of the layer in photoshop, rather than the anti-aliased image as in Flash. Could you try exporting from photoshop as a jpeg-- that way you would at least see what's happening in the compression? I'm working on a project that includes a

Re: [Flashcoders] Colour rendition of imported assets

2013-11-05 Thread Paul A.
On 05/11/2013 19:13, David Cohn wrote: The solid color may be because you're sampling the color of the layer in photoshop, rather than the anti-aliased image as in Flash. Could you try exporting from photoshop as a jpeg-- that way you would at least see what's happening in the compression? I

[Flashcoders] Data storage for Flash/AIR apps (iOS in particular)

2013-09-27 Thread Joel Johnson
Hey everyone, I need to be able to save some game data and load it when the app is relaunched (either on browser or a mobile device, iOS in particular here...) I've been looking at shared objects, but I seem to come across info that it's not a reliable storage method for devices. The last thing

Re: [Flashcoders] Data storage for Flash/AIR apps (iOS in particular)

2013-09-27 Thread Mike Duguid
The SQLite local database functionality available within AIR works well: http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118666ade46-7d29.html On 27 September 2013 14:39, Joel Johnson joeljohnson.in...@gmail.comwrote: Hey everyone, I need to be able to save some game data and

[Flashcoders] Re: Flashcoders Digest, Vol 72, Issue 9

2013-09-27 Thread rtinfow
SQLite is built into iOS: https://developer.apple.com/technologies/ios/data-management.html RT Send Flashcoders mailing list submissions to flashcoders@chattyfig.figleaf.com To subscribe or unsubscribe via the World Wide Web, visit

Re: [Flashcoders] static const singleton GC?

2013-09-20 Thread ktu
anybody have any ideas? this is still shaking my boots. thanks :) On Mon, Sep 16, 2013 at 5:53 PM, ktu ktu_fl...@cataclysmicrewind.comwrote: hey all! I'm faced with an interesting question. in my codebase, we made the decision to use a few singletons. to implement those singletons we

Re: [Flashcoders] static const singleton GC?

2013-09-20 Thread Paul A.
What if you make the const a var? I don't build my singletons with an initialiser, but whether that makes any difference, who knows? I always make my singleton references explicit, ClassName.getInstance() and instantiate the instance in getInstance(). On 20/09/2013 14:18, ktu wrote:

Re: [Flashcoders] static const singleton GC?

2013-09-20 Thread Ross P. Sclafani
Singletons are a horrible design pattern and the fact that they're poorly implemented in as3 should steer you away from using them there. Sent from my iPhone On Sep 20, 2013, at 9:48 AM, Paul A. p...@ipauland.com wrote: What if you make the const a var? I don't build my singletons with an

Re: [Flashcoders] static const singleton GC?

2013-09-20 Thread Paul A.
It's not exactly the greatest programming sin and they work fine in AS3. If the OP has a project in place using them, he should continue to do so once the issue is solved. Singletons are hardly a maverick technique. On 20/09/2013 15:04, Ross P. Sclafani wrote: Singletons are a horrible

Re: [Flashcoders] static const singleton GC?

2013-09-20 Thread Henrik Andersson
There is no such thing as calling a constant. And static properties are only initialized once. Your approach only serves to delay the construction of the instance to the moment it is first accessed, as opposed to when the runtime decides to initialize the constant. What OP needs is a singleton

Re: [Flashcoders] static const singleton GC?

2013-09-20 Thread Peter Ginneberge
That's not a singleton, as every time you call the public static constant, it creates a new instance. The static var should be private and the class needs an access point method, usually called getInstance(); private static var INSTANCE:AppApi; public function AppApi():void { if

Re: [Flashcoders] static const singleton GC?

2013-09-20 Thread ktu
first, i must apologize for an error in my code. you cannot make a static package level var. the code should look like: package com.example { public const API:AppAPI = new AppAPI(); } Peter, this crazy method i am using does indeed only instantiate the object only once. i never get a runtime

[Flashcoders] static const singleton GC?

2013-09-16 Thread ktu
hey all! I'm faced with an interesting question. in my codebase, we made the decision to use a few singletons. to implement those singletons we used the static const trick: package com.example { public static const API:AppAPI = new AppAPI(); } package com.example { public class AppAPI

[Flashcoders] DoubleClick Studio

2013-09-13 Thread Paul A.
Just been discussing some flash work and have been told I'd need to use DoubleClick Studio. Anyone have any experience of this compared to Flash? Paul (Yes, I know it's almost Off-topic ) ___ Flashcoders mailing list

Re: [Flashcoders] DoubleClick Studio

2013-09-13 Thread Paul A.
OK, I see it uses flash in conjunction with Google tools and components - so on topic for sure! On 13/09/2013 13:21, Paul A. wrote: Just been discussing some flash work and have been told I'd need to use DoubleClick Studio. Anyone have any experience of this compared to Flash? Paul (Yes, I

Re: [Flashcoders] DoubleClick Studio

2013-09-13 Thread Roger Persson
Hi Paul, If it's for use with ads I suggest you ask the media bureau or if you can get a contact directly a google to send you the latest version of their files and a few demo-files to get you started. If I remember correctly it's an flash extension you need to install to have access to

Re: [Flashcoders] DoubleClick Studio

2013-09-13 Thread David Hunter
Think I have used them before. The docs should explain things well. You probably just need to download some components and then add them to the beginning of your banner. David Hunter www.davidhunterdesign.com +44 (0) 7869 104 906 @DHDPIC On 13 September 2013 13:44, Roger Persson

[Flashcoders] Change Background Color of Datagrid Cell

2013-09-05 Thread Ted Lehr
Is it possible to dynamically change the background color of an individual DG cell? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Change Background Color of Datagrid Cell

2013-09-05 Thread Kerry Thompson
Check this out. I haven't tried it, but it looks promising. http://stackoverflow.com/questions/14985504/change-background-color-of-datagrid-cell-based-on-more-than-one-condition-in-fle Cordially Kerry Thompson On Thu, Sep 5, 2013 at 8:40 AM, Ted Lehr t...@qvine.com wrote: Is it possible to

[Flashcoders] Re: Flashcoders Digest, Vol 71, Issue 5

2013-08-31 Thread Aly Mansour Aly Abdelaal
flashcoders-requ...@chattyfig.figleaf.com flashcoders-requ...@chattyfig.figleaf.com wrote: Send Flashcoders mailing list submissions to flashcoders@chattyfig.figleaf.com To subscribe or unsubscribe via the World Wide Web, visit

Re: [Flashcoders] Re: Flashcoders Digest, Vol 71, Issue 5

2013-08-31 Thread Kerry Thompson
The Flag player is sheer the support for bi-di text is, and I don't see Adobe removing it. They would lose most of their Israeli market, as well as the entire Arab, Persian, and Pakistan markets. It won't make any difference if you use Flex. It publishes a .swf which runs on the same player, and

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-28 Thread tom rhodes
Sorry Cedric, I didn't ever make the switch to TLF once I'd dabbled with it a bit, so I can't help you out there. Crazy they have dropped it from CC though and yeah I do remember flash 3 :) On 27 August 2013 23:01, John R. Sweeney Jr. jr.swee...@comcast.net wrote: Yep. Director 12 came out in

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-28 Thread Cédric Muller
:) I feel so alone with that TLF Sorry Cedric, I didn't ever make the switch to TLF once I'd dabbled with it a bit, so I can't help you out there. Crazy they have dropped it from CC though and yeah I do remember flash 3 :) On 27 August 2013 23:01, John R. Sweeney Jr.

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-28 Thread tom rhodes
http://sourceforge.net/adobe/tlf/svn/604/tree/ doesn't look like anyone has touched it for a couple of years. maybe you can create the method you want? On 28 August 2013 10:08, Cédric Muller flashco...@benga.li wrote: :) I feel so alone with that TLF Sorry Cedric, I didn't ever make the

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-28 Thread Cédric Muller
:D hi there.China Team Test Change http://sourceforge.net/adobe/tlf/svn/604/tree/ doesn't look like anyone has touched it for a couple of years. maybe you can create the method you want? On 28 August 2013 10:08, Cédric Muller flashco...@benga.li wrote: :) I feel so alone with that

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-28 Thread tom rhodes
ha. ok. that's me out of ideas! On 28 August 2013 11:05, Cédric Muller flashco...@benga.li wrote: :D hi there.China Team Test Change http://sourceforge.net/adobe/tlf/svn/604/tree/ doesn't look like anyone has touched it for a couple of years. maybe you can create the method you want?

RE: [Flashcoders] TLFTextField drowning me ...

2013-08-28 Thread David Cohn
So if CC no longer supports TLF, is there any long-term option in Flash for right-to-left text? Will Flex support TLF, and/or have other options for RTL support? This is something I haven't delved into yet, but may come up soon for a project. It would be good to start in with a long-term

[Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Cédric Muller
So I have this complex TLFTextField vortex where I try to let user format text with … Bullet Lists for example. So … so so …. I have got this overly complex and deep question to whether some did write this API or was it thrown together by some spaghetti monster ? (ok, this is some intentional

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Cédric Muller
further info, even though I suspect that I am the last one on earth using this framework ……… // init var fmt:TextLayoutFormat = new TextLayoutFormat(); var tmpInt:ISelectionManager = field.textFlow.interactionManager; var editManager:EditManager = new EditManager();

RE: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Rick Hassen
I think you are quite right that this is a problematic api. While I can't address your specific question, I had tons of problems with TLF in the past. It caused strange bugs that would break my movies(this was in CS5) At the time, there were a lot of complaints on the forums with TLF with the

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Cédric Muller
Thanks :) Yep, my application _requires_ TLF (left to right, right to left, top down (korean), ligatures, …. and so on, that's is a big circus). The worst part is that I managed implementing everything else. I think I may be off for a quick exit if I understand how I can get a 'fake'

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Cédric Muller
I noticed that Flash CC no longer supports TLF I bet all my TLF code that Flash CC 8 will come with a simple timeline to draw things on … remember Flash 3 ? Not far :) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread John R. Sweeney Jr.
TLF's have been a pain, since day one. Bailed on them pretty early on… Sorry, John John R. Sweeney Jr. Senior Interactive Multimedia Developer OnDemand Interactive Inc Hoffman Estates, IL 60169 On Aug 27, 2013, at 12:18 PM, Cédric Muller flashco...@benga.li wrote: I noticed that Flash

RE: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Rick Hassen
I bet all my TLF code that Flash CC 8 will come with a simple timeline to draw things on … remember Flash 3 ? Not far :) 'splain please! I started with Director 1 then went away till CS3, so I missed a bit there, so missing the joke.

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread John R. Sweeney Jr.
Director?? Did you mean Flash 1? John R. Sweeney Jr. Senior Interactive Multimedia Developer OnDemand Interactive Inc Hoffman Estates, IL 60169 On Aug 27, 2013, at 2:57 PM, Rick Hassen rickhas...@hotmail.com wrote: 'splain please! I started with Director 1 then went away till CS3, so

RE: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Rick Hassen
At the time, I was using Director. Flash 1 came out and I wasn't into banner ads and didn't know how powerful it would eventually become. Did you know that Director is still out with new updates??? I was shocked to find this and apparently has a userbase with HD people. From:

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread John R. Sweeney Jr.
Yep. Director 12 came out in February and has had its issues, to say the least. :) Since your from Director, your missing the joke because its based on earlier Flash, current Flash and future Flash. That's why your Director statement initially throw me. John R. Sweeney Jr. Senior

[Flashcoders] CHANGE style of Datagrid

2013-08-16 Thread Ted Lehr
Is it possible to change the style of a datagrid? I have a datagrid I am dg.setStyle 'ing when I create it... at a certain point I want to change the style of that grid... I am simply trying to setStyle again... I am guessing you cannot reset a style by simply setting a new style as it is not

RE: [Flashcoders] CHANGE style of Datagrid

2013-08-16 Thread Ted Lehr
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- From: flashcoders-boun...@chattyfig.figleaf.com on behalf of Paul A. Sent: Fri 8/16/2013 12:05 PM To: Flash Coders

RE: [Flashcoders] CHANGE style of Datagrid

2013-08-16 Thread Ted Lehr
So when I use getStyle to see if it is changing - it appears as though it is... like when I trace it - what is being returned on getStyle is correct - it's just that the actual style is not changing visually... -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com on

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

[Flashcoders] Pushing to existing multi dimensional array

2013-07-26 Thread Ted Lehr
So say I have a multi dimensional array like: main[0].name = Ted; main[0].hair = brown; and then I want to later, after this array already exists push a new value to it: main[0].shoes = dress; How would I go about that... I tried main[0].push({shoes:dress}); or some such - but that did

[Flashcoders] IOS Flash question

2013-05-28 Thread Paul A.
Maybe someone has a suggestion. A client has some iPads without 3G. The client wants to be able to email PDF files directly to a customer from the iPad (A bit difficult without a connection) and I've never really found a way to get flash to initiate an email with content already in place, or

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.
Out of curiosity, has anyone on the list actually used private classes for anything other than enforcing singleton creation? If you have, please tell us and say why it was the best solution. On 27/05/2013 06:50, Cor wrote: I think they can be usefull to create objects with a lot of its own

Re: [Flashcoders] AS3 finally..

2013-05-27 Thread tom rhodes
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. On 27 May 2013 12:24, Paul A. p...@ipauland.com wrote: Out of curiosity, has anyone on the list actually used

RE: [Flashcoders] AS3 finally..

2013-05-27 Thread Cor
I use this for objects only needed in the scope of that particular class. I don't know if this is the best solution... I guess this depends on what you are trying to achieve. It works for me. Regards Cor On 27 May 2013 12:24, Paul A. p...@ipauland.com wrote: Out of curiosity, has anyone on the

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
As for my usage: I create at any given moment one or more objects of the helper class within one or more functions in the containing class. excuse the poor English, I am Dutch. -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com

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
Thats a good question and well phrased. And I wish I could give you as good an answer, however, Collin Moocks Lost Weekend videos, which can be accessed through Safari Books, goes into why and when you'd use them, quite nicely with examples and a qa. Date: Mon, 27 May 2013 12:05:44 +0100

Re: [Flashcoders] AS3 finally..

2013-05-27 Thread Paul A.
On 27/05/2013 18:03, Rick Hassen wrote: Thats a good question and well phrased. And I wish I could give you as good an answer, however, Collin Moocks Lost Weekend videos, which can be accessed through Safari Books, goes into why and when you'd use them, quite nicely with examples and a qa.

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
I think they can be usefull to create objects with a lot of its own functionality. In fact the same as you use a public classes: create objects, and you can polymorphism the objects to your needs. I also think this will keep your code more readable and clean. HTH Cor -Original Message-

Re: [Flashcoders] Mailing Lists and Tools

2013-05-24 Thread Kenneth Kawamoto
For what I do phpStorm looks perfect - it supports JS/jQuery and SASS, and it has FTP/SVN client. I'll try it out. Thanks guys. Kenneth Kawamoto http://www.materiaprima.co.uk/ On 23 May 2013, at 23:35, Rick Hassen wrote: if you really like Webstorm, some understand it to be a stripped down

Re: [Flashcoders] Mailing Lists and Tools

2013-05-24 Thread Kurt Dommermuth
anyone using Zend? http://www.zend.com/en/products/studio/features Kenneth, thanks for bringing Dreamweaver up. I have been using it for years and have been happy enough, but I'm checking out phpStorm right now myself and so far, I would have to agree that it's an improvement. I'm always leery

[Flashcoders] AS3 Noise (Audio) Filter?

2013-05-24 Thread Eric E. Dolecki
I'm looking for something to attempt to remove noise (or hum/hiss) from a playing audio file in real-time. Thanks for any pointers. Google Voice: (508) 656-0622 Twitter: eric_dolecki XBoxLive: edolecki PSN: eric_dolecki Imagineric http://imagineric.ericd.net

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

[Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Bryan Thompson
I know many developers are migrating towards HTML5/CSS/JavaScript. Google reveals a multitude of results for mailing lists. I hope to take advantage of the experience on this list to get some advice on good quality lists like this one. I also would like recommendations for (Windows) IDE's for

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
Thanks much Kurt, Kerry, and James. Just the kind of information I was looking for. Oren, what's your problem?? Bryan -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of James Merrill Sent: Thursday, May 23,

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

[Flashcoders] Figleaf list for Javascript/HTML/CSS or other lists?

2013-05-23 Thread Merrill, Jason
Does Figleaf have a Javascript/HTML/CSS mailing list like this? I'd love to subscribe if there is. Or what lists are there out there for questions? I don't mean website forums, I mean e-mail lists - I find those easier to use, more accessible. Jason Merrill Instructional Technology Architect

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
Think Sublime Text 2 has a lot of those functions in the packages repo. You can also version control via github as well as SVN. Reason I switched from DW was due to the CSS pre-processor packages for SASS and LESS, and LiveReload makes authoring css so much easier. Tis an amazing text editor,

[Flashcoders] Projectors...

2013-05-23 Thread Eric E. Dolecki
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 projector for Mac? It's just gone from the IDE and the later players have this greyed out. Google Voice: (508) 656-0622 Twitter:

Re: [Flashcoders] Mailing Lists and Tools

2013-05-23 Thread Kenneth Kawamoto
Thanks for suggestions gentlemen. I don't think Sublime does jQuery? Jetbrains editors look good. Dreamweaver doesn't do SASS well so that's something I will definitely like in these editors :) Kenneth Kawamoto http://www.materiaprima.co.uk/ On 23 May 2013, at 17:39, Marco Terrinoni wrote:

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

[Flashcoders] Convert flash to mp4 video

2013-05-22 Thread natalia Vikhtinskaya
Hi I need to convert fla with highlighting text. Frs=12 in this fla. I exported it to mov file with settings 12 (and as test 25). Files plays fine. Then I converted to mp4 with Movavi convector. In that file animation(highlighting) plays faster than sound. Xilisoft convector has the same problem.

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
Check your junk mail Karl, sent you a PM but may have got filtered Cheers Marco Terrinoni - Director MULARAM  PRODUCTIONS web design // animation // illustration uk: +44 7876 652 643 e: ma...@mularam.com  w: www.mularam.com -Original Message- From:

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread Karl DeSaulniers
Thanks Marco. Got your email. Will check it when I get home tonight. Best, Karl Sent from losPhone On May 21, 2013, at 1:18 PM, Marco Terrinoni ma...@mularam.com wrote: Check your junk mail Karl, sent you a PM but may have got filtered Cheers Marco Terrinoni - Director MULARAM

[Flashcoders] Nested clip mouse over

2013-05-21 Thread [ p e r c e p t i c o n ]
Anyone know how to get the mouse over of a nested clip ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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