[Flashcoders] File upload with PHP example

2006-01-20 Thread Judah Frangipane
Anyone know of a good to great File Upload example using PHP? Or does anyone have any of their own working examples they can send me? If it supports Remoting (amfphp) that would be even better. Judah PS I'd be willing to buy something if it has been in a production enviornment and works

Re: [Flashcoders] Documenting my code

2006-01-19 Thread Judah Frangipane
Let's all get on MM-Adobe wish list and ask for this! This has been such a huge issue in every project I've worked on that it puts me back months to do documentation. http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishform Judah Johan Lopes wrote: Another thing to note is that

Re: [Flashcoders] Documenting my code

2006-01-19 Thread Judah Frangipane
work on releasing a good product than building stuff like editors(zorn is nice however) and documentation applications when there are a aready numerous things out there. On 1/19/06, Judah Frangipane [EMAIL PROTECTED] wrote: Let's all get on MM-Adobe wish list and ask for this! This has been

Re: [Flashcoders] Documenting my code

2006-01-19 Thread Judah Frangipane
Hi Jobe, I just wrote up a document for using this. Here it is below: Email me offlist to get the template file I created. *** Packaging a component can be quite troublesome. Here are some steps to help you get the most out of it. -

[Flashcoders] Scope Chain in AS2

2006-01-16 Thread Judah Frangipane
was invoked. http://labs.macromedia.com/wiki/index.php/ActionScript_3:overview#Delegation Can someone please put this into context? Best Regards, Judah Frangipane ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com

[Flashcoders] Flash Component for use in Dreamweaver

2006-01-06 Thread Judah Frangipane
I didn't know this was possible but I think that you can take your Flash component and use it in Dreamweaver. Has anyone made an extension to package their components for use in Dreamweaver? I have no idea where to start on this. I'm also wondering if Dreamweaver will inherit the property

Re: [Flashcoders] Remote Debugging + Flash Remoting = Frozen Browser. FP8 Bug?

2005-12-30 Thread Judah Frangipane
to detect remote client service activity? H On 12/30/05, elibol [EMAIL PROTECTED] wrote: Thanks for your reply Judah, I accually use service capture myself! Well, I will see to it that this debugger bug (the irony) is acknowledged... H On 12/29/05, Judah Frangipane [EMAIL PROTECTED] wrote

[Flashcoders] Flash Class Array bug - Please verify

2005-12-29 Thread Judah Frangipane
It seems like Flash is creating static members out of public arrays that are initialized in the class declaration. Can someone confirm this? Is this not legal, is it implied behavior or a bug? // create a class called myClass class myClass { // initialize the array in the declarations

Re: [Flashcoders] Flash Class Array bug - Please verify

2005-12-29 Thread Judah Frangipane
); this.myArray.push(20); } } // end class Run your code again, I think it'll execute the way you're expecting it to at that point... Peace... -- Dok Skyymap, Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Judah Frangipane Sent: Thursday, December 29

Re: [Flashcoders] Flash Class Array bug - Please verify

2005-12-29 Thread Judah Frangipane
- From: Judah Frangipane [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, December 29, 2005 3:30 PM Subject: [Flashcoders] Flash Class Array bug - Please verify It seems like Flash is creating static members out of public arrays

Re: [Flashcoders] Flash Class Array bug - Please verify

2005-12-29 Thread Judah Frangipane
); // MyClassName trace(bar.prototype_name); // MyClassName foo.prototype_name = MegaFoo; // after trace(foo.prototype_name); // MegaFoo trace(bar.prototype_name); // MyClassName - Original Message - From: Judah Frangipane [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders

Re: [Flashcoders] Remote Debugging + Flash Remoting = Frozen Browser. FP8 Bug?

2005-12-29 Thread Judah Frangipane
I'm not using cf but in my remoting endevors Service Capture has helped many times (http://www.kevinlangdon.com/phpBB2/). It is well worth it compared to the time spent tracking down bugs. Judah PS No, I do not work for them :) elibol wrote: Hi everyone, I use the remote debugger all the

Re: [Flashcoders] Can an object delete itself?

2005-12-23 Thread Judah Frangipane
Mark Burvill wrote: public function die():Void { trace (deleting); removeMovieClip (baddie_mc); delete this; trace (Am i still alive?); } The movieclip is successfully removed, but I would expect the second trace Am I still alive NOT to appear as the object

[Flashcoders] Draw a bitmap on a path

2005-12-22 Thread Judah Frangipane
I have the task of drawing an image or movieclip along a path. So for example, I have the task of drawing a rainbow, ideally I would get a 10x 60 image of 3 colors. Next I would want to draw that movieclip along a path. But the question is I have no idea where to start or if this is even

Re: [FlashCoders] game slowing down - eventListener

2005-12-21 Thread Judah Frangipane
Hi Dimirtrios, I've had a couple issues with intervals in the past. I'm not sure why but sometimes they would not get deleted. This would cause build up as they kept getting created. I have a enumerator class that has a process timer on it. This would trace out the time in milliseconds from

Re: [Flashcoders] Faster code?

2005-12-21 Thread Judah Frangipane
This happens all too often. As common as this is, it is something you *must* do. Especially if you are the person that has to go back and change stuff at a later date. I dont know how many times I have gone back and looked at my code and I was like, what the (explicitive deleted) was I doing.

[Flashcoders] Live Preview Woes

2005-12-14 Thread Judah Frangipane
I am working on a component that attaches a movieclip. When I drag it to the stage it attaches multiple copies of this movieclip skipping my checks and balances. But when I test the movie it works fine and only shows one instance like i designed it to. Is there anyway to find out in my

Re: [Flashcoders] Live Preview Woes

2005-12-14 Thread Judah Frangipane
such as this yourself. Derek Vadneau - Original Message - From: Judah Frangipane [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, December 14, 2005 2:22 PM Subject: SPAM-LOW: [Flashcoders] Live Preview Woes I am working on a component

Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread Judah Frangipane
how come floats arent exact? jk will floats be exact in AS3? or will future versions of flash support big ints? judah John Dowdell wrote: Jason Rayles wrote: Has this been discussed? Flash player 8 trace(this._alpha); this._alpha -= 10; trace(this._alpha); Output: 100 89.84375 Not

[Flashcoders] Cancel Keypress

2005-12-13 Thread Judah Frangipane
I'm trying to restore the previous text in a text field if a user presses the Escape key. I set up a listener for the key down event. I have got it to restore the previous value but I cannot find a way to cancel the escape key from entering a  symbol. You can see this symbol by adding a

Re: [Flashcoders] Book sequence...

2005-12-12 Thread Judah Frangipane
You pick up a lot of good video tutorials (both beginner and advanced) from this site: http://www.flashextensions.com/ I recommend viewing it after your second book. Judah Flash guru wrote: Agreed 1. Essential ActionScript 2.0 2. Object-Oriented Programming with ActionScript 2.0 Garage

Re: [Flashcoders] These [EMAIL PROTECTED] Flash 8 Linkage Publish Errors

2005-12-09 Thread Judah Frangipane
Hi Varfoo, Somewhere in your library there is another symbol using the linkage id of BoundingBox. Best Regards, Judah varfoo wrote: What the *^%$ is this? **Warning** The linkage identifier 'BoundingBox' was already assigned to the symbol 'com/yellowjacketsoftware/ui/components/Flash UI

[Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Judah Frangipane
FAQ Adobe acquisition of Macromedia http://www.adobe.com/aboutadobe/invrelations/adobeandmacromedia_faq.html Interesting key points: *How long will it take to integrate Flash Player and Adobe Reader?* It will be a multiyear effort. Ultimately, our goal is to combine both in a single

Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Judah Frangipane
Hi Zoli, Can you send links? Judah Zoltan Csibi wrote: Hi Michael Don't know if this is in your timeframe but we are preparing the alpha release of the Fluorine .NET remoting gateway. This works like the MM one for .NET and additionally supports pageable recordsets and .NET custom

Re: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Judah Frangipane
It sounds like they will have for download Flash Player 8 and Adobe Reader for download for a while and eventually create a Flash Player X. Flash Player X = Flash Player 8 + Adobe Reader I wouldn't call it a central tho. Hopefully the file size will remain small or only marginally increase.

Re: [Flashcoders] Selection.setFocus()

2005-12-02 Thread Judah Frangipane
Hi Manuel, We are needing something like this as well. We set the tab order in code or use the accessability window. When we tab to a v2 button then the tabbing breaks. If it makes you feel any better I could not get this to work either. A thing to note is the help docs have qoutes around

Re: [Flashcoders] Martian Dataprovider confusion

2005-11-29 Thread Judah Frangipane
Cort, I've have often wanted to use the dataprovider on it's own in my projects as well. Would you post back to the list your findings. What you've got to work. Thanks! Judah PS When I was starting out I used the dataprovider in a list component and set the list invisible. Then as my

[Flashcoders] Flash Remoting with ASP.NET

2005-11-29 Thread Judah Frangipane
or an onFault event are triggered. My aspx pages work fine. Is there anyway to test Flash Remoting is working? Or does this sound familiar to anyone? Judah Frangipane ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

Re: [Flashcoders] Array Madness - test yourself

2005-11-21 Thread Judah Frangipane
i spoke too soon. the alternative methods listed here do not work inside my classes. they did work in tests on frame 1. i ran into this situation inside a class. does not work: array.slice(0) array.length = 0; array = []; works: //any loop array.pop()

Re: [Flashcoders] Array Madness - test yourself

2005-11-21 Thread Judah Frangipane
is read only array = []; Cos your only changing what the call parameter references not the underlying object So like I said before use splice(0) Rob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Judah Frangipane Sent: Sunday, November 20

[Flashcoders] Cannot change color on extended TextInput

2005-11-21 Thread Judah Frangipane
I have extended the TextInput class and I have not been able to set the color of the text. I can do it on the stage to a normal textInput with this code: red_btn.onRelease = function() { // works redTextInput_txt.setStyle(color, 0xFF); // does not work except if the text field is

[Flashcoders] Array Madness - test yourself

2005-11-20 Thread Judah Frangipane
I just want to bring to your attention a rare array problem that eluded me for years. I just realized what is going on. Whenever I tried to clear an array I would use a for loop, iterate through all the items and pop each one off. Every once in a while the arrays would still contain values

Re: [Flashcoders] Array Madness - test yourself

2005-11-20 Thread Judah Frangipane
i think that's why i couldn't use that (at the time). can you remember the situations this came up in? Mark Winterhalder wrote: On 11/21/05, JesterXL [EMAIL PROTECTED] wrote: Better yet, why not just: myArray = []; done? usually that's what i do, but other references to the array

Re: [Flashcoders] leaf name conflict

2005-11-20 Thread Judah Frangipane
; class com.T8.forms.formatting.NumberFormatter { } It wasn't obvious in the main class that this was going on. I also had empty MyClass.as files in the package directory. IE they were blank. not sure if that had anything to with it or not. HTH someone, Best Regards, Judah Frangipane Tom Lee

Re: [Flashcoders] embedFonts oddity

2005-11-18 Thread Judah Frangipane
symbols must be in the library (not named the same as the font). (see code) ** The example has code as well. Best Regards, Judah Frangipane Ian Thomas wrote: (MX2004) I'm having a bit of trouble with embedFonts (but not the usual 'can't find font' trouble!). I

Re: [Flashcoders] New Hire Resources list. Input needed.

2005-11-16 Thread Judah Frangipane
I really like this site. I would put someone through this to begin with. *School of ActionScript* These are video tutorials taking you from reading the book to real world usage. I recommend going through this ~2 day course. Broken down into sections. *ActionScript 2.0 Class Fundamentals*

Re: [Flashcoders] Offline/Online Security in FP8

2005-11-09 Thread Judah Frangipane
This issue has come up numerous times for us too. A few of us have read the articles and they are very confusing. If I understand this concept I would write up a helpful chart or article but I still get errors. Even following the advice of using System.security.allowDomain(http://localhost;);

[Flashcoders] Flash remoting - when is the service call made?

2005-11-09 Thread Judah Frangipane
We are using flash remoting and I am trying to figure out when the call is getting made. Is it at the time that I call the service method or after I create the Relay Responder object? Does the pending call object get and hold the data until a relay responder has been created or after it has

Re: [Flashcoders] passing a variable to a function

2005-11-09 Thread Judah Frangipane
That's what I was thinking too. This article may be helpful in this situation http://osflash.org/flashcoders/as2?s=delegate. Judah Glenn J. Miller wrote: My guess here is that your reference to _root is 'lost' in terms of scope, as you're handling the onLoad event locally (on the stack)

[Flashcoders] Cost of set interval

2005-11-03 Thread Judah Frangipane
Is there any noticable performance loss in using set interval? I've stayed away from them for years because I thought they might slow down an application but that was 5 years ago. I'm thinking of calling (to update) something every second. Maybe less maybe more. Any performance hit with watch?

Re: [Flashcoders] Flash capabilities

2005-11-02 Thread Judah Frangipane
To stream an mp3 all you need is a path to the file. The flash player will handle the streaming. For database interaction all you need is flash remoting. It is one of my favorite features of flash. It ROCKS! You can check out the free amfphp.com or the commercial versions for asp.net, cold

Re: [Flashcoders] DHTML and FLash Player 8 Bugs Fixed

2005-11-02 Thread Judah Frangipane
site where dynamic (ASP) pages create the menu's, it can't be used. On 01 Nov 2005, at 07:01, Helmut Granda wrote: Great work! By any chance Do you have a list of platforms you have tested this on? The main problem I have is with Linux. Thanks ...helmut Judah Frangipane wrote: Hi

Re: [Flashcoders] DHTML and FLash Player 8 Bugs Fixed

2005-11-01 Thread Judah Frangipane
. In a large site where dynamic (ASP) pages create the menu's, it can't be used. On 01 Nov 2005, at 07:01, Helmut Granda wrote: Great work! By any chance Do you have a list of platforms you have tested this on? The main problem I have is with Linux. Thanks ...helmut Judah Frangipane wrote

Re: [Flashcoders] blog presentation flash

2005-10-31 Thread Judah Frangipane
Hi dc, I started a Flash UI for drupal project a while ago. After my research I figured you could do a Flash front end to display data but it would be difficult to do the data entry. So the option would be a mixed site with Flash to display content and HTML to create it. I came to the conclusion

Re: [Flashcoders] Why Flex?

2005-10-28 Thread Judah Frangipane
right on. that's what i'm talking about. flash was about 80%-90% there for developers and then they forked the sucker. are they focus on developers in the next version of flash authoring since 8 was a designer oriented release? i like flex and where it can be used but i'd like to see the

Re: [Flashcoders] Job Offer :: employee search

2005-10-27 Thread Judah Frangipane
. Pay scale is based on portfolio and experience from $33k to $60k. Please email me for further details. Best Regards, Judah Frangipane ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] When migrate to Flash 8?

2005-10-27 Thread Judah Frangipane
I'd upgrade to Flash 8 even though you are doing Flash 6 and 7. It has a lot of little things that make development quicker. So even though you are exporting to Flash 7 you can still take advantage of the new text resizing handles (something I use everyday) and other neat little changes. Or

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Judah Frangipane
I'm all for making plugins and updates to FB but if this is a huge upgrade you might want to submit your feature requests to labs.macromedia.com first. They released FB2 as alpha so that the Flash community could talk about what needs to be added. I'm not sure how open MM will be about this

[Flashcoders] Creating a compiled component or compiled clip?

2005-10-21 Thread Judah Frangipane
We have created a calculator component for reuse but I am not sure if we should create it as a compiled clip or component due to the way it was built. On the stage we have a movieclip and inside of it it has multiple textinputs, buttons, radio groups and graphs. We didn't use a bounding box

[Flashcoders] Job Offers

2005-10-21 Thread Judah Frangipane
, CF, etc.) SQL Server XML C# Flex Javascript Fluent in English When contacting us please include resume and portfolio (with links). You need to be able to work on-site in Cedar Falls, Iowa. Pay scale is based on portfolio and experience. Please email me for further details. Best Regards, Judah

Re: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread Judah Frangipane
and functions and by the time you learn it and get it down you will have to throw it out because AS3 is vastly different. It's just a personal opinion but this late in the game it might just end up confusing you to learn AS2 now. Judah Frangipane Merrill, Jason wrote: Pretty much everything you'll

[Flashcoders] When can we deploy Flex Builder 2 apps?

2005-10-20 Thread Judah Frangipane
, tweens, fades and effects. Thanks, Judah Frangipane ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] More on JSFL

2005-10-20 Thread Judah Frangipane
Hi Danny, It's hard to say without being able to look at your loop code. The times that my JSFL scripts have stopped were usually due to trying to access a locked or hidden layer. I don't think I got an error (but I don't remember for sure). So check that thats not the case. Also, you might

[Flashcoders] Will ActionScript 3 require me to rewrite my apps to use it?

2005-10-19 Thread Judah Frangipane
need to do in this release rather than making a change in the future. I feel if that is the case to not hold off now (like adding reflection) if later on it will cost us developers, type of thing. Best Regards, Judah Frangipane ___ Flashcoders mailing

Re: [Flashcoders] localToGlobal ?

2005-10-07 Thread Judah Frangipane
Giles, Thank you for this excellent explanation. I'd get confused by this too from time to time. Especially because there were different ways to use it. Now I have another good way to explain it. If you are in HTML you already know what localToGlobal is. Just different terms. Local to

Re: [Flashcoders] Flash player 8.5 and ActionScript 3.0

2005-10-07 Thread Judah Frangipane
I wish this would make sense to me. Either this is really obvious or I'm baffled. Flash 8 just came out Flash Alpha (next version NOT allowed to be called Flash 9 for some reason) is coming out in the spring of 2006 and will be available free to the public or current Flash 8 users Flash Alpha