Re: [Flashcoders] FPS question

2009-03-31 Thread Anthony Pace
p but the whole movie. Hope that clarifies. Karl DeSaulniers Design Drumm http://designdrumm.com On Mar 30, 2009, at 8:47 PM, Anthony Pace wrote: First you say swf, and yes, controlling the frame rate for an swf is doable; yet, then you say movie... do you mean movie clip, or stream? Karl DeSaul

Re: [Flashcoders] FPS question

2009-04-01 Thread Anthony Pace
expert, so if anyone has any ideas that would make my statements look stupid, I hope he or she will speak up. Thanks, Anthony Pace Paul Andrews wrote: How would you equate bandwidth with FPS? Seems to me that a loading Movie will need to load different assets at different times, so You may nee

Re: [Flashcoders] FPS question

2009-04-01 Thread Anthony Pace
the player to say if its even possible. Anybody know something I don't about this, which wouldn't be hard, please tell me. Thanks, Anthony Pace Paul Andrews wrote: Karl, Despite what has been suggested, this will still only have a chance of working work for some flash Movi

Re: [Flashcoders] FPS question

2009-04-01 Thread Anthony Pace
Hello Taka, I agree with you; as well, with regard to the swf, it would take a ton of in depth knowledge and understanding about its file structure, and how it handles tweens, that I don't have right now, in order for me to say if its even possible. Thanks. Anthony Pace Taka Kojima

Re: [Flashcoders] FPS question

2009-04-01 Thread Anthony Pace
isplay content. I believe that's why people use preloaders. On Wed, Apr 1, 2009 at 1:03 PM, Anthony Pace wrote: Hello Taka, I agree with you; as well, with regard to the swf, it would take a ton of in depth knowledge and understanding about its file structure, and how it handles

[Flashcoders] field value theft from flash banners and xss exploited forms, or outright malicious websites

2009-04-04 Thread Anthony Pace
I was wondering if anyone here knew that this was possible and that it, according to some sources that this is one of the reasons it wasn't implemented in chrome: I thought of this over two years ago; yet, never did anything with it (lazy... really lazy... plus I am not criminal). Flash bann

Re: [Flashcoders] field value theft from flash banners and xss exploited forms, or outright malicious websites

2009-04-04 Thread Anthony Pace
< input type="text" name="email" autocomplete="off" > just realized that you would have to replace the text field in the submission form if it has autocomplete="off", and by redrawing the form getting autocomplete to work its magic and have your

Re: [Flashcoders] point in a circle

2009-04-10 Thread Anthony Pace
Although the question has already been solved, this is something I made for fun in case the origin is offset. It should work if you paste it into the actions panel for frame one and push ctrl+enter function pointOnCircle(degree:Number, hyp:Number, oX:Number = 0, oY:Number = 0):Point { /*

Re: [Flashcoders] Math: Is this correct?

2009-04-10 Thread Anthony Pace
What is the information that you know about the point? degree for x,y? degree for x,z? degree for y,z? Is the distance you are referring to the distance from the origin? I assume it is. Here is a site that has a presentation in japanese (I think); yet, just make it past the first 12 or so poi

Re: [Flashcoders] Math: Is this correct?

2009-04-10 Thread Anthony Pace
pin result_x = Math.cos (a) * x Math.sin (a) * y; result_y = Math.sin (a) * x + Math.cos (a) * y; ? a in radians Anthony Pace wrote: What is the information that you know about the point? degree for x,y? degree for x,z? degree for y,z? Is the distance you are referring to the distance from

Re: [Flashcoders] Nintedo experiencewii ( how did they do that ? )

2009-04-14 Thread Anthony Pace
You are only prompted with the messages if you have the debug player on, and in most cases, just getting it out there is the concern for the ad agency. Muzak wrote: Stephen, I think the answer is one word: Money. Well, not enough money apparently.. getting security errors and a bunch of "n

Re: [Flashcoders] How to smooth bitmap?

2009-04-15 Thread Anthony Pace
Can you put the bitmap inside a movie clip, and get pixel data from a parent to make a new bitmapdata object? It seems like that would enable you to get around that problem; yet, again, I haven't played with this, nor do I have time to unfortunately, so I am not sure. Pavel Repkin wrote: Th

Re: [Flashcoders] Favorite Flex book?

2009-04-15 Thread Anthony Pace
Hello, I have to put my 2 cents in with regard to security. Open source is safer; for, I can scrutinize every line of code without having to jump through hoops. If there is an issue with open source in the enterprise, this is usually caused by licensing factors, not security. (BS intellect

Re: [Flashcoders] Fake Preloading

2009-04-16 Thread Anthony Pace
What happens when your client wants a pretty preloader, and he wants it to play out entirely, but there is nothing to preload, and you have indicated it to him a thousand times? Everything is generated by code, and the file size is less than 40k. I can fake a preloader animation; however, it s

Re: [Flashcoders] Real-Time Captioning From FMS?

2009-04-16 Thread Anthony Pace
At the server - My guess is a typist with mad skills and speed, 80 to 100wpm with accuracy, (certified teletypist?)sending out the text data using AMF, as it is dictated; however, you could rely on vocal recognition software that has been trained for a thousand hours, monitoring mic input, and

Re: [Flashcoders] Best Tutorial Sites?

2009-04-16 Thread Anthony Pace
http://www.8bitrocket.com/ Glen Pike wrote: gotoandlearn.com adobe's devnet site http://www.adobe.com/devnet/ kirupa.com sephiroth.it are a few ones I use quite a bit. Aurek Brillowski wrote: Re-acquainting myself to Flash. Left off around v6 or the first MX. Can you possibly direct me

Re: [Flashcoders] Just a quick one

2009-04-18 Thread Anthony Pace
Use Flash Develop or Flex Builder Flash develop is free and great for as3; yet, Flex Builder for eclipse, with its insanely high price tag of $249, is better if you want to include capabilities to edit other languages like c++ or java. IMHO they should have just integrated all the code editin

Re: [Flashcoders] FPS question

2009-04-19 Thread Anthony Pace
; Karl DeSaulniers wrote: Perfect thank you... Karl DeSaulniers Design Drumm http://designdrumm.com On Apr 1, 2009, at 5:34 PM, Anthony Pace wrote: http://library.forum.nokia.com/index.jsp?topic=/Flash_Lite_Developers_Library/GUID-8EFDF519-AB3B-4FAC-804B-8FDFD08F9968.html Most of it shoul

Re: [Flashcoders] Feasibility of xml file for high score data storage

2009-04-22 Thread Anthony Pace
Hello Paul, Making good use of a que would be required for writing to the file without errors, so a database is the best and easiest way; as well, for high scores, you might want to use a public private key system for preventing xss exploits, as anyone that knows how to intercept and edit the

Re: [Flashcoders] Feasibility of xml file for high score data storage

2009-04-24 Thread Anthony Pace
on the client to monitor progress and report it, encrypted intermittent requests, even though they still leave wide open wholes on the client layer, will have to be enough. Good luck, Anthony Pace Ron Wheeler wrote: Paul Steven wrote: Thanks Ron - that is another great idea. So I guess I

Re: [Flashcoders] Feasibility of xml file for high score data storage

2009-04-24 Thread Anthony Pace
vel of security? Anthony Pace wrote: Hello Paul, IMHO If you were programming a real time internet chess application, you would need to send moves (hopefully through an encrypted request) and track/validate/authenticate origin, for everything at the server, or cheating would be very easy; however

Re: [Flashcoders] Feasibility of xml file for high score data storage

2009-04-24 Thread Anthony Pace
Instead of "so looking into mtasc might be a good idea", I meant to say look into server side swf generation in general. Anthony Pace wrote: I also want to add that when I say "encrypted request", I mean to say that you would have the swf encrypt the data before sending it

[Flashcoders] why is called Vector in AS3? why not "TypedArray"?

2009-04-27 Thread Anthony Pace
I think it is really stupid, and bothersome as hell with regard to code completion when working with the vector3d class. Just had to vent. Can anyone tell my why? vector is usually a point, combination, or an attack method in my books. ___ Flashcod

[Flashcoders] Regex

2009-05-03 Thread Anthony Pace
Is there anywhere I can get a complete and highly detailed spec for the AS3 implementation of Regular expressions? I know a enough to be pretty dangerous; yet, I am looking to get much better. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf

Re: [Flashcoders] Regex

2009-05-03 Thread Anthony Pace
Seriously... anyone? Anthony Pace wrote: Is there anywhere I can get a complete and highly detailed spec for the AS3 implementation of Regular expressions? I know a enough to be pretty dangerous; yet, I am looking to get much better

Re: [Flashcoders] Regex

2009-05-04 Thread Anthony Pace
http://actionscriptcheatsheet.com/blog/ Karl DeSaulniers Design Drumm http://designdrumm.com On May 3, 2009, at 9:48 PM, Karl DeSaulniers wrote: Are you talking about the as3 cheat sheet? I have that file or link somewhere. Sent from losPhone On May 3, 2009, at 8:11 PM, Anthony Pace wrote: Seri

Re: [Flashcoders] Recommendation for AS3 decompiler?

2009-05-05 Thread Anthony Pace
When I have deleted the fla, I only have my swf, and I need to reuse a bit of code, sothink has come to the rescue quite a few times; however, I am on windows. If it has to be a mac, even though it crashes, I think sothink is your best bet. Gerry Beauregard wrote: Does anyone have a recomme

[Flashcoders] OT - packet modification in firefox

2009-05-06 Thread Anthony Pace
I am looking to intercept get/post requests in firefox, and I remember there was an add-on for FF2 that could do both; yet, I can only find one that allows editing of POST data, but not GET. I know I could create a proxy and run a filter on each request; yet, this would not allow me to modify

Re: [Flashcoders] OT - packet modification in firefox

2009-05-06 Thread Anthony Pace
This is for a man in the middle attack where the attacker I theoretically wouldn't know the keys that the client and the server are exchanging. A proxy would only be able to monitor the stream, but it would not be able to decypher the data unless the handshake was faulty or the keys were smal

Re: [Flashcoders] OT - packet modification in firefox

2009-05-06 Thread Anthony Pace
I need to know; so if you have a doc that shows I am wrong about how FF3 encrypts the data, then, with all due respect and a hallelujah, it would be appreciated. Anthony Pace wrote: This is for a man in the middle attack where the attacker I theoretically wouldn't know the keys tha

Re: [Flashcoders] OT - packet modification in firefox

2009-05-06 Thread Anthony Pace
very much for the suggestion. Anthony Pace wrote: I need to know; so if you have a doc that shows I am wrong about how FF3 encrypts the data, then, with all due respect and a hallelujah, it would be appreciated. Anthony Pace wrote: This is for a man in the middle attack where the attacker I

Re: [Flashcoders] OT - packet modification in firefox

2009-05-06 Thread Anthony Pace
to be the client sending and receiving data to and from the real server; thus, enabling the man in the middle attack. Only one question remains... what if the server and client will only accept the use of known certificates? Anthony Pace wrote: Trying to think a little clearly here.

Re: [Flashcoders] OT - packet modification in firefox

2009-05-06 Thread Anthony Pace
Again, if you read my last message, I was thinking in terms that were overly overly complex. Didn't see the obvious. Thank you very much for pointing it out. Dave Watts wrote: From what you are saying, does FF3 not use its own implementation of ssl, and connects to the proxy first, where the

Re: [Flashcoders] OT - packet modification in firefox

2009-05-06 Thread Anthony Pace
I actually figured out what was necessary a few hours back, and thanks for your comments. I felt like I was slapped in the head for not seeing the obvious. In my mind it is a man in the middle, because the proxy is simulating the server in one direction and the client in the other; however, I

Re: [Flashcoders] OT - Running windows with bootcamp

2009-05-07 Thread Anthony Pace
Hi, I was at this dissatisfying "thing" a while back, and an Adobe sales rep was relying on Bootcamp to show me how adobe Audition Performed with some of my DirectX VSTs of choice, particularly Izotope Trash. It worked beautifully well, with very low latency, and she was able to install the

Re: [Flashcoders] Recommendation for AS3 decompiler?

2009-05-07 Thread Anthony Pace
Why would you want it to? Why not just learn the AS3? If you know as3, you can use what you have learned and apply it to other languages. SoThink is not the only de-compiler; I just Checked out swfscan, and its not bad at all. Dave Watts wrote: If you want to have your MXML back from a SWF

Re: [Flashcoders] Recommendation for AS3 decompiler?

2009-05-07 Thread Anthony Pace
Oops , I just realized they don't seem to have a Mac version, and that was probably what was meant by Sothink is the only option. Anthony Pace wrote: Why would you want it to? Why not just learn the AS3? If you know as3, you can use what you have learned and apply it to other lang

[Flashcoders] if only flash would incorporate these features

2009-05-07 Thread Anthony Pace
http://vimeo.com/1669862?pg=embed&sec=1669862 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] if only flash would incorporate these features

2009-05-08 Thread Anthony Pace
-Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Anthony Pace Sent: Thursday, May 07, 2009 4:31 PM To: Flash Coders List Subject: [Flashcoders] if only flash would incorporate these features http://vimeo

Re: [Flashcoders] if only flash would incorporate these features

2009-05-08 Thread Anthony Pace
math cannot be patented.* * The only thing I am worried about is that the flipping and intersects are done *automatically*, and that his *gestures* may be seen as new. . Kerry Thompson wrote: Anthony Pace wrote: Good work, but not so unique his patents should hold developers back from taki

Re: [Flashcoders] RegEx

2009-05-09 Thread Anthony Pace
http://help.adobe.com/en_US/AS3LCR/Flash_10.0/String.html#match() Anthony Pace wrote: I am reading the documentation, and it says that match and replace are only for air 1.0 and they have that nasty trilobal air logo. What the heck If that is the case then why are they running in the

[Flashcoders] RegEx

2009-05-09 Thread Anthony Pace
I am reading the documentation, and it says that match and replace are only for air 1.0 and they have that nasty trilobal air logo. What the heck If that is the case then why are they running in the flash player? ___ Flashcoders mailing list Fla

Re: [Flashcoders] RegEx

2009-05-11 Thread Anthony Pace
ngref/String.html#match() - Original Message - From: "Anthony Pace" To: "Flash Coders List" Sent: Sunday, May 10, 2009 12:54 AM Subject: [Flashcoders] RegEx I am reading the documentation, and it says that match and replace are only for air 1.0 and they have that nasty tril

[Flashcoders] best way to save as pdf from flash?

2009-05-12 Thread Anthony Pace
I would print directly to pdf; yet, I lose the effects I have placed on MCs; as well, saving it to illustrator directly is a problem, because flash will screw up the file header when a custom font that I use is required. Thus, because flash doesn't have a decent printer driver, and its file c

Re: [Flashcoders] best way to save as pdf from flash?

2009-05-13 Thread Anthony Pace
the FP Printer - you can draw into a bitmap first, then print the MC with that in - this means all your filters & fonts should have been rasterised. HTH - might have misunderstood your request... Glen Anthony Pace wrote: I would print directly to pdf; yet, I lose the effects I have plac

Re: [Flashcoders] is imported db text safe from decompilers?

2009-05-13 Thread Anthony Pace
If you are worried about the client accessing your data outside of the player, that you just have to live with it; for, if someone is good enough they will find a way. For example: -If you are using the browser's ssl capability, I would just create a proxy for the browser(thanks for the slap

Re: [Flashcoders] best way to save as pdf from flash?

2009-05-13 Thread Anthony Pace
able than flash for illustration.. Paul ----- Original Message - From: "Anthony Pace" To: "Flash Coders List" Sent: Wednesday, May 13, 2009 6:07 PM Subject: Re: [Flashcoders] best way to save as pdf from flash? I was referring to the ide; yet, even the flashplayer has the

Re: [Flashcoders] Is there an AS3 equivalent of AJAX Suggest (like Facebook autofill searchbox)? is it even possible?

2009-05-16 Thread Anthony Pace
A search form is very simple, and there is more than one way to do it. poll once and parse poll every single time letting the results be generated server side. poll, then check to see if there is any new data that corresponds to your search criteria in the db; if not, use what you have in the ca

Re: [Flashcoders] Is there an AS3 equivalent of AJAX Suggest (like Facebook autofill searchbox)? is it even possible?

2009-05-16 Thread Anthony Pace
I like that search; although, it is a bit slow because of having to download the pics, and because it looks like it is calling from the db every time. If you type in the letter "b", you will notice that it tries to find words in the title where the first letter is "b"; then if it doesn't have

[Flashcoders] anti-aliasing

2009-05-17 Thread Anthony Pace
Hello, I am trying to draw shapes using pixel manipulation, and I am pretty sure I understand most of the concepts; yet, as I am pretty new to this, I am unsure how to go about doing this most efficiently in code. Does anyone have any links, tutorials, commented code? Are there tried and tru

Re: [Flashcoders] anti-aliasing

2009-05-17 Thread Anthony Pace
Google is also your friend. Ron Anthony Pace wrote: Hello, I am trying to draw shapes using pixel manipulation, and I am pretty sure I understand most of the concepts; yet, as I am pretty new to this, I am unsure how to go about doing this most efficiently in code. Does anyone have any links

Re: [Flashcoders] anti-aliasing

2009-05-18 Thread Anthony Pace
I have heard of and looked at Xiaolin Wu's line algorithm, and I am wondering if there is a better way. Anthony Pace wrote: Hello, I am trying to draw shapes using pixel manipulation, and I am pretty sure I understand most of the concepts; yet, as I am pretty new to this, I am unsure h

Re: [Flashcoders] anti-aliasing

2009-05-18 Thread Anthony Pace
reate? It will be a lot faster at runtime than plotting a line pixel by pixel. Unless you have a specific need to do that! Cheers, Ian On Mon, May 18, 2009 at 4:48 AM, Anthony Pace wrote: I already know how to draw shapes using the built in tools. and the math for it is not a problem i

[Flashcoders] loving it!!! RTMPE spec

2009-05-26 Thread Anthony Pace
I found a link online that perhaps you may like to check out; for, it happens to have a rough version of the RTMPE Spec. http://lkcl.net/rtmp/RTMPE.txt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman

Re: [Flashcoders] how to reload swf in Flash IDE Player

2009-05-28 Thread Anthony Pace
I have noticed the same thing; however, all I can suggest is click simulate download on and off. Andrew Sinning wrote: To compile and play a movie within Flash, I use control-enter. But suppose I want to reload the local copy of movie within the Flash Player without recompiling. How do I do

Re: [Flashcoders] how to reload swf in Flash IDE Player

2009-05-28 Thread Anthony Pace
le as clicking recent; yet, the above should do. Anthony Pace wrote: I have noticed the same thing; however, all I can suggest is click simulate download on and off. Andrew Sinning wrote: To compile and play a movie within Flash, I use control-enter. But suppose I want to reload the local co

Re: [Flashcoders] ie 8 flash crashes

2009-05-29 Thread Anthony Pace
//Its a blue tooth webcam video capture filter, and it is not a part of the default windows or ie8 installation. Rename the dll and things should be fine. Hans Wichman wrote: Hi list, we're getting reports some of our flash sites are crashing in ie8, mostly player 10 it seems. Anyone experie

[Flashcoders] Re: would this work? I don't know enough about the handshakes.

2009-05-30 Thread Anthony Pace
Client swf connects to a locally hosted proxy server that waits for a remote client to connect to it as well. when a remote client swf tries to connect the proxy server, the server sends an okay response to the remote client, and sends the ip of the remote client to the local client swf at rou

[Flashcoders] would this work? I don't know enough about the handshakes.

2009-05-30 Thread Anthony Pace
Client swf connects to a locally hosted proxy server that waits for a remote client to connect to it as well. when a remote client swf tries to connect the proxy server, the server sends an okay response to the remote client, and sends the ip of the remote client to the local client swf at rou

Re: [Flashcoders] Loading images at the same time, bugs in Flash AS3

2009-06-03 Thread Anthony Pace
I would love to see what's going on, as it sounds crazy; yet, your site isn't coming up for me. Isaac Alves wrote: Hello fellowcoders, I've been experiencing some problems with an application I've made with AS3. It consists of an image gallery which loads images dynamically from an XML file.

Re: [Flashcoders] Loading images at the same time, bugs in Flash AS3

2009-06-03 Thread Anthony Pace
ority. Just guessing, Anthony Anthony Pace wrote: I would love to see what's going on, as it sounds crazy; yet, your site isn't coming up for me. Isaac Alves wrote: Hello fellowcoders, I've been experiencing some problems with an application I've made with AS3. It consists

Re: [Flashcoders] Unwanted Irregular Angles with Graphics.lineTo

2009-06-04 Thread Anthony Pace
//using your co-ordinates, this works fine, with no weirdness that I can see this.graphics.lineStyle(1,0x33,1,true,'none'); this.graphics.moveTo(4,0); // no need for this.graphics.lineTo(4,0); because you are already there this.graphics.lineTo(0,4

[Flashcoders] does as3 optimize functions called by the constructor?

2009-06-05 Thread Anthony Pace
Hello, I know that as3 does not compile, at least not in an optimized fashion, the constructor for a class; however, what about the function that is called in the constructor? is that too left to be jit compiled? Thanks in advance, Anthony ___ Fla

[Flashcoders] get raw bytes and computer spectrum access for the microphone

2009-06-05 Thread Anthony Pace
http://bugs.adobe.com/jira/browse/FP-1766 You just need to sign up seriously, it would enable to so many applications I have been dreaming of for the web. for more info: http://www.getmicrophone.com/?p=17 ___ Flashcoders mailing list Flashcoders@

[Flashcoders] does anyone use MonsterDebugger

2009-06-08 Thread Anthony Pace
I have used it and it seems okay; yet, would this ever be used in a professional development environment? I have been using the basic debugger in the flex 3 sdk for quite a while now, and I am looking for alternatives. ___ Flashcoders mailing list Fl

Re: [Flashcoders] Flash CS4 very slow

2009-06-09 Thread Anthony Pace
CS4 is totally slow and on a 2.2 ghz duo core laptop; yet, mx was lightening fast on a 633 mhz system. What the hell happened to all the great coders at Macromedia? did they get lost in the acquisition? Alan Neilsen wrote: Does Flash CS4 run very slowly for everyone, or might there be someth

Re: [Flashcoders] Flash CS4 very slow

2009-06-11 Thread Anthony Pace
Unless you have a High speed 16GB SD card and you are using it for readyboost, turn off super fetch, and turn off the windows search indexing service when you don't need it. Prefetch only really works to aid boot time and launching apps if you are using readyboost; otherwise, it causes a great

Re: [Flashcoders] Flash CS4 very slow

2009-06-11 Thread Anthony Pace
Oh yeah... I can't believe that I forgot to say turn off Aero or any other resource intensive theme or themes app and all effects. You may also want to shut down and restart flash once in a while to help speed things up; yet, it is still going to be a slow bastard. Anthony Pace

Re: [Flashcoders] pay with credit card through Flaxh frontend for online store?

2009-06-11 Thread Anthony Pace
Answers in order by question asked: -Yes; yet, that would take forever, so I will tell you to learn the how and why of separating business logic from the client, and never rely on the client for setting the amount to be charged or sending the request to the processor. -Usually the processing

Re: [Flashcoders] Re: Flash CS4 very slow

2009-06-12 Thread Anthony Pace
I installed it and it is still a slow bastard. Alan Neilsen wrote: Thanks Patrick Matte Installing the Flash CS4 update from http://www.adobe.com/support/flash/downloads.html has fixed the problem I had with Flash CS4 running slowly (and a few other thing). I recommend all Flash CS4 users do

[Flashcoders] Will an swf compiled with the swf builder just using as3 ever be as good as alchemy? can we use malloc?

2009-06-12 Thread Anthony Pace
Can we do memory allocation in alchemy? Will an swf compiled with the swf builder just using as3 ever be as good as alchemy? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] hacked? what's missing?

2009-06-19 Thread Anthony Pace
I just got an e-mail saying your were hacked and as a result lost some content. I have almost everything stored in for the past two years. Is there a date range you want? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfi

Re: [Flashcoders] hacked? what's missing?

2009-06-19 Thread Anthony Pace
oops wrong list Anthony Pace wrote: I just got an e-mail saying your were hacked and as a result lost some content. I have almost everything stored in for the past two years. Is there a date range you want? ___ Flashcoders mailing list

Re: [Flashcoders] mathematics of an elipse

2009-06-20 Thread Anthony Pace
Given your points, Ivan is correct; however, although what I am about to write is most likely not going to be your case, there is a way of deriving it based on known dependencies. Given your points, it is possible if: * if the angle you had mentioned was the angle between the lines as

Re: [Flashcoders] Determining probablity of a random pick.

2009-06-22 Thread Anthony Pace
An easy way is to if say you have 3 objects in a list given a weight options[0].weight = 1; options[1].weight = 3; options[2].weight = 4; instead of having it have three selections, you could add the weights and make it have 8 to choose from that point to the option. choice[0]=0; choice[1]=1;

[Flashcoders] renaming files with air

2009-06-29 Thread Anthony Pace
Am I mistaken, or do I have to use moveTo() to rename a file? it seems kind of stupid to me, that they wouldn't just put a rename function in; yet, if that is what I have to use then so be it. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf

Re: [Flashcoders] renaming files with air

2009-06-29 Thread Anthony Pace
you want to rename a file in Unix -- i.e. mv origFile newFile - Taka On Mon, Jun 29, 2009 at 5:11 PM, Nate Beck wrote: Why would they need to put in an rename function if they already have a move method..? They do the same thing. On Mon, Jun 29, 2009 at 11:49 AM, Anthony Pace wrote:

[Flashcoders] for the love of your own personal god... sign up and vote

2009-07-13 Thread Anthony Pace
to open the microphone, so we can use computer spectrum, sign up and vote please, please, please, please, please http://bugs.adobe.com/jira/browse/FP-1766 I can't believe there are only 85 votes for this; before Adobe takes the request seriously, they will need at least a few thousand IMHO.

Re: [Flashcoders] for the love of your own personal god... sign up and vote

2009-07-13 Thread Anthony Pace
this would open up for browser based and desktop applications; which, would translate into more jobs for, what is said to be, a very unstable economy. Eric E. Dolecki wrote: What do you need this access for, where activityLevel wouldn't serve you? On Mon, Jul 13, 2009 at 5:17 PM, An

[Flashcoders] other lists for compiler design, assembly, and machine code?

2009-08-03 Thread Anthony Pace
It is not that I don't want to write code for flash anymore; it is just that I am interested in expanding my horizons. Can anyone recommend a good mailing list for compiler design for newbies? I have books on it, and I know the basics of how to perform tokenization and lexical analysis; yet, even

Re: [Flashcoders] other lists for compiler design, assembly, and machine code?

2009-08-05 Thread Anthony Pace
turally than on to OOP/procedural > languages. > > HTH, >Ian > > On Mon, Aug 3, 2009 at 4:37 PM, Kerry Thompson wrote: > >> Anthony Pace wrote: >> >> >>> Can anyone recommend a good mailing list for compiler design for newbies? >>> >

Re: [Flashcoders] How to Exit/Close the Web Browser from Flash Applications?

2009-08-07 Thread Anthony Pace
Hello, http://www.actionscript.org/resources/articles/638/1/Basics-of-using-the-ExternalInterface/Page1.html http://www.actionscript.org/resources/articles/745/1/JavaScript-and-VBScript-Injection-in-ActionScript-3/Page1.html The above links may be useful to you; yet, keep in mind that with popup

[Flashcoders] secured pdf generation

2009-08-08 Thread Anthony Pace
Taking a break from compiler stuff for business. Can live pdf do secured pdf generation, or are there other open libraries that can do this? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/fl

Re: [Flashcoders] mac vs pc

2009-08-12 Thread Anthony Pace
(back to the original topic... PC costs less for the same amount of power) I have used the Flex IDE for free on an academic license, and I do like that I can use other eclipse plugins with it; yet, I really do like flashdevelop. There are only a few things I don't like about flashdevelop: 1. You

[Flashcoders] closures

2009-09-14 Thread Anthony Pace
I was wondering if anyone here uses closures in AS3? I like them a ton; yet, I am wondering if they are ever used in a real world development projects in AS3? Can you see an excuse for using them? I know it does make somethings easier to port to and from JS if coded right. __

Re: [Flashcoders] closures

2009-09-15 Thread Anthony Pace
JS style Function scope instead of classical oop. Steven Sacks wrote: AS3 is based entirely on closures. Not sure what you mean by it being an option. Anthony Pace wrote: I was wondering if anyone here uses closures in AS3? I like them a ton; yet, I am wondering if they are ever used in a

[Flashcoders] finally microphone raw data

2009-09-25 Thread Anthony Pace
http://theflashblog.com/?p=1426 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] finally microphone raw data

2009-09-25 Thread Anthony Pace
plus the ability to get the vector point data without a plugin) Anthony Pace wrote: http://theflashblog.com/?p=1426 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashc

Re: [Flashcoders] FOTB

2009-09-25 Thread Anthony Pace
I think the most interesting things are|: -the new text features -better code completion, including custom classes, in the flash ide. -better integration with flash builder (flex rebranded) -being able to create your own snippets http://www.youtube.com/watch?v=9-Jldkqr_J0 http://www.youtube.com/

Re: [Flashcoders] SMS with Flash Web App

2009-09-25 Thread Anthony Pace
Not really a flash question but who cares... This may not be the best way, but: Well, if you know the carrier, you can find out how to send an e-mail to a given number, and then have a server side script send an e-mail; for, most carriers, if not all, have this capability. It's free for the

Re: [Flashcoders] SMS with Flash Web App

2009-09-25 Thread Anthony Pace
rrier. Anthony Pace wrote: Not really a flash question but who cares... This may not be the best way, but: Well, if you know the carrier, you can find out how to send an e-mail to a given number, and then have a server side script send an e-mail; for, most carriers, if not all, have this capability.

[Flashcoders] Catalyst

2009-09-26 Thread Anthony Pace
Anyone try catalyst? Does it only output to flex style code that make babies cry, or does it output do pure AS3 too? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] shared objects as a sort of scratch disk file

2009-09-30 Thread Anthony Pace
-Now, if the user sets the local storage amount to unlimited, it is possible to save and modify heaps of data; yet, at what cost speed wise? -Is there a max size to a shared object, even if the user selects unlimited? -Is there something wrong with my idea, other than having to ask the user to s

Re: [Flashcoders] Catalyst

2009-09-30 Thread Anthony Pace
ineers, and outside experts in the borader multimedia community - join the Bank of America Flash Platform Community (note: this is for Bank of America employees only) -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com]

Re: [Flashcoders] shared objects as a sort of scratch disk file

2009-10-03 Thread Anthony Pace
you share anything about yours? Ktu [k-two] On Wed, Sep 30, 2009 at 3:39 AM, Anthony Pace wrote: -Now, if the user sets the local storage amount to unlimited, it is possible to save and modify heaps of data; yet, at what cost speed wise? -Is there a max size to a shared object, even if t

Re: [Flashcoders] jquer/flash issue in Firefox : PLEASE HELP

2009-10-05 Thread Anthony Pace
Do you have a link you can post? Rajiv Seth (Pixeldust) wrote: Hi, I am using jQuery and Flash AS3.0. There is a flash. Initially it shows one row of thumbnails, clicking on any of them makes player appear. This player is accommodated above the row of thumbs with a sliding effect. Now the DIV

[Flashcoders] as3 to iphone app

2009-10-07 Thread Anthony Pace
I will totally be buying Flash professional CS5 http://labs.adobe.com/wiki/index.php/Applications_for_iPhone Compiling for the iphone will work on windows systems too, and still be able to published on the app store. ___ Flashcoders mailing list Flas

Re: [Flashcoders] as3 to iphone app

2009-10-15 Thread Anthony Pace
I just read the post on Keith's site, as well as all the comments, and I have to say that all of this could be solved simply by allowing developers to inject native targeted code for compilation in order to boost performance; however, that is not to discount the need to continued development an

Re: [Flashcoders] as3 to iphone app

2009-10-16 Thread Anthony Pace
ccess? Kerry Thompson wrote: Anthony Pace wrote: I just read the post on Keith's site, as well as all the comments, and I have to say that all of this could be solved simply by allowing developers to inject native targeted code for compilation in order to boost performance That would be

Re: [Flashcoders] as3 to iphone app

2009-10-16 Thread Anthony Pace
#x27;t get access to inject inline assembly, then why doesn't Adobe just modify the way their apps are cross compiled to allow inline objective-c? Apple can still maintain its strangle hold but we get better performance because of the ability to have native access. Kerry Thompson wrote: Ant

<    1   2   3   4   >