[Flashcoders] Re: JSFL: folder names start with numbers

2007-06-15 Thread Helmut Granda
Well, i found out that actually browserForFileURL wont break the path, although browserForFileFolder still does :( Fixed my issue but I guess I can report this as a bug... On 6/15/07, Helmut Granda [EMAIL PROTECTED] wrote: For those who have used JSFL, have you run into the issue

[Flashcoders] Composition access

2007-06-08 Thread Helmut Granda
I am slowly moving from inheritance to composition for a specific project, one way to extend my classes is by creating a copy of them into the new created classes... class OriginalClass { var mc:MovieClip; function original(mc:MovieClip) { this.mc = mc; init(); }; function init() {

Re: [Flashcoders] Flash video graphic

2007-06-08 Thread Helmut Granda
I dont know if there a specific name for doing this but I would load the image on top of the player and add a listener so when the user clicks on the play button you can unload/hide/delete the image ...helmut On 6/8/07, Karl Schneider [EMAIL PROTECTED] wrote: I want to add a static

Re: [Flashcoders] Composition access

2007-06-08 Thread Helmut Granda
your logic in your CopyClass' init method. This is the one drawback to using Composition over Inheritance, but I would say it's worth it in the long-run. David -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Friday, June 08, 2007 10:27

Re: [Flashcoders] Composition access

2007-06-08 Thread Helmut Granda
hey David, your suggestion works perfectly, it was my implementation that was breaking the code. Thanks again. -h On 6/8/07, Helmut Granda [EMAIL PROTECTED] wrote: Thanks David, For some odd reason if I do in my coopy public function init():Void { trace(init in copy class); } it wont fire

Re: [Flashcoders] Composition access

2007-06-08 Thread Helmut Granda
be the main issue :( TIA On 6/8/07, Helmut Granda [EMAIL PROTECTED] wrote: hey David, your suggestion works perfectly, it was my implementation that was breaking the code. Thanks again. -h On 6/8/07, Helmut Granda [EMAIL PROTECTED] wrote: Thanks David, For some odd reason if I do in my coopy

Re: [Flashcoders] Composition access

2007-06-08 Thread Helmut Granda
Ok, figured out Main -method1 (calls method2) -method2 (calls method3) -method3 Copy method2 = this.method2 -method2 = calls main.method3; so you can make them talk to each other, I just was confused how to put it into code. Thanks -h On 6/8/07, Helmut Granda [EMAIL PROTECTED] wrote: One

Re: [Flashcoders] IE7 Crashing on FileReference.download()

2007-06-07 Thread Helmut Granda
Doesn't matter whether it's our site, or other sites that allow downloads that we've directed her to to test. It sounds to me like its her system more than a bug but I might be wrong. specially since she is the only one having this issue with all sites that allow downloads. Who knows what she

Re: [Flashcoders] loadVars not initialising first

2007-05-27 Thread Helmut Granda
John, create a function that has to be called once the information is being loaded. onload = yourfunction; or you can also do what you are doing currently... myMenuData.onLoad = function(success) { if (success) { yourfunction(); } now you can place all the information you need inside

Re: [Flashcoders] Easy game in flash

2007-05-18 Thread Helmut Granda
Hi Pedro, Take a look at this tutorial for a little more advanced collision detection http://www.kirupa.com/developer/actionscript/advanced_collision.htm Hope this helps. -h On 5/18/07, Pedro Kostelec [EMAIL PROTECTED] wrote: hi flash coders First of all scuse me for my English I'm quite

Re: [Flashcoders] Easy game in flash

2007-05-18 Thread Helmut Granda
I figured as much but he did commented that he wanted to do a similar game but not as complicated. So learning on how to do collision detection should be a good start :) On 5/18/07, Joshua Sera [EMAIL PROTECTED] wrote: That game's actually not as simple as you might think, unless you already

Re: [Flashcoders] tracking or receiving

2007-05-15 Thread Helmut Granda
://www.server.com/page.asp?var1=1x1.gif;); ? For other informations ask the person you get that info from :) greets, dr.ache Helmut Granda schrieb: Thanks, My other idea is to send the variables necessary with a regular sendandload method. my only concern is that the server might not recognize

[Flashcoders] tracking or receiving

2007-05-14 Thread Helmut Granda
I was asked to load a 1x1 pixel gif to one of my movies so I figured I would receive the following: http://www.server.com/thepixel.gif but I received this: http://www.server.com/page.asp?var1=avar2=bvar3=c... to me it looks more like I need to send some variables to the server rather than

Re: [Flashcoders] tracking or receiving

2007-05-14 Thread Helmut Granda
and asp/.net/php and such. On 5/14/07, dr.ache [EMAIL PROTECTED] wrote: hi. depends on what that server returns on that request. the asp file must return a gif in the response, otherwise the loadClip method fails. greets, dr.ache Helmut Granda schrieb: I was asked to load a 1x1 pixel gif to one

[Flashcoders] Class structure

2007-05-07 Thread Helmut Granda
I'm trying to figure out the best approach for my class structure. I have form valildation class that checks for different items (about 20 items), then I needed some items of the same class for a smaller form (only 4 items). I could extend the first class and use it with my smaller form but there

Re: [Flashcoders] is the Flash9/CS3 delivered to anyone yet?

2007-05-07 Thread Helmut Granda
CS3 has been in the wild for couple weeks now. On 5/7/07, dave matthews [EMAIL PROTECTED] wrote: hi all, Noticed Flash9/CS3 is offered as a separate download and/or upgrade($199) is on the Adobe site now. Has anyone purchased and received it yet, or is this just a preorder deal? thanks,

Re: [Flashcoders] Class structure

2007-05-07 Thread Helmut Granda
into a class. Thanks -h On 5/7/07, Pete Miller [EMAIL PROTECTED] wrote: Sounds like the second class should be the base class. Extend the larger from the smaller. P. -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Helmut Granda Sent

[Flashcoders] Extending Classes

2007-05-03 Thread Helmut Granda
I'm extending a class and for some odd reason it gets instantiated twice. I'm linking the class directly to a movieclip, so here it is my setup. Movieclip AS 2.0 Class = myExtendedClass Classes: myClass extends MovieClip; myExtendedClass extends MyClass

[Flashcoders] Re: Extending Classes

2007-05-03 Thread Helmut Granda
Figured out.. I needed to do the following: MasterClass (init) myClass extends MasterClass ( super.init() ); myExtendedClass extends MasterClass ( super.init() ); It works, but I wonder why the class gets instantiated twice in my original example :( On 5/3/07, Helmut Granda [EMAIL PROTECTED

[Flashcoders] Forms between JSP and Flash

2007-05-02 Thread Helmut Granda
Hello all, Im using to reading variables from PHP like this ? echo form=success; ? but I'm having some issues trying to read the same variables from JSP. If I access the file from within the browser I can see the variables but in flash with loadVars it shows as Undefined. Anyone knows if

[Flashcoders] CrossDomain and Forms

2007-05-01 Thread Helmut Granda
Is there anyway to go around the crossdomain for testing purposes besides testing locally (from flash IDE)? final files will be at Form: subdomain.zzz.com Processing form: differentsubdomain.zzz.com Testing is being done at yyy.com and of course me being at yyy.com dont have access tot

Re: [Flashcoders] CrossDomain and Forms

2007-05-01 Thread Helmut Granda
but the crossdomain.xml has to be in the client's machine not on my testing server. is that correct? On 5/1/07, Robert Brisita [EMAIL PROTECTED] wrote: Search for an example of a crossdomain.xml, which would sit on the root directory of your website. Hope this helps, Rob. Helmut Granda wrote

Re: [Flashcoders] CrossDomain and Forms

2007-05-01 Thread Helmut Granda
LocalConnection to get around it. Helmut Granda wrote: but the crossdomain.xml has to be in the client's machine not on my testing server. is that correct? On 5/1/07, Robert Brisita [EMAIL PROTECTED] wrote: Search for an example of a crossdomain.xml, which would sit on the root directory of your

[Flashcoders] Re: SendAndLoad

2007-04-30 Thread Helmut Granda
bounce... On 4/27/07, Helmut Granda [EMAIL PROTECTED] wrote: How long does the server waits before it returns an error message? Say I sent 40 variables to the server and the server receives the variables but doesn't process them correctly so it just hangs there, does flash has a time limit

Re: [Flashcoders] Re: SendAndLoad

2007-04-30 Thread Helmut Granda
); function onReceiveData (string:String):Void { //do something } On 4/30/07, Helmut Granda [EMAIL PROTECTED] wrote: bounce... On 4/27/07, Helmut Granda [EMAIL PROTECTED] wrote: How long does the server waits before it returns an error message? Say I sent 40 variables to the server

[Flashcoders] SendAndLoad

2007-04-27 Thread Helmut Granda
How long does the server waits before it returns an error message? Say I sent 40 variables to the server and the server receives the variables but doesn't process them correctly so it just hangs there, does flash has a time limit to wait for a response before spitting out an error message? TIA

[Flashcoders] SuperScript (R) with html dynamic content

2007-04-26 Thread Helmut Granda
Hi All, I have been trying to figure out a way to add the copyright symbol as superscript without success, some people have gone as far as duplicating the font and editing the copyright symbol to match the one in a superscript. This is for a dynamic textfield with HTML text. Anyone has any

Re: [Flashcoders] SuperScript (R) with html dynamic content

2007-04-26 Thread Helmut Granda
to deal with super-/subscripting other than the numbers 0-9, I've resorted to creating and embedding a custom font. -Original Message- From: Helmut Granda [mailto:[EMAIL PROTECTED] Sent: Thursday, April 26, 2007 1:36 PM To: Flashcoders mailing list Subject: [Flashcoders] SuperScript (R

Re: [Flashcoders] Job Posting: Glenwood MD (Baltimore/DC)

2007-04-26 Thread Helmut Granda
And as far as money goes, you'll get paid what I tell you you'll get paid. I like your options. Does it work the same with projects? ;) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Changing Green (halogreen) highlight color

2007-04-24 Thread Helmut Granda
Is there anyway to change the green highlight color for components without having to create a custom skin (The green/orange/blue highlight when the component has focus) ? TIA ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

[Flashcoders] Clear Set Interval Q:

2007-04-24 Thread Helmut Granda
Is there any specific reason why after calling clearInterval the variable with the interval returns 1 instead of undefined/null? Following the docs and creating a simple item we get different results (no different but no what our logic might expect) function callback() { trace(interval called:

Re: [Flashcoders] Clear Set Interval Q:

2007-04-24 Thread Helmut Granda
from running. delete intervalID; Helmut Granda wrote: Is there any specific reason why after calling clearInterval the variable with the interval returns 1 instead of undefined/null? Following the docs and creating a simple item we get different results (no different but no what our logic

Re: [Flashcoders] Clear Set Interval Q:

2007-04-24 Thread Helmut Granda
, Muzak - Original Message - From: Helmut Granda [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 24, 2007 11:18 PM Subject: [Flashcoders] Clear Set Interval Q: Is there any specific reason why after calling clearInterval the variable

Re: [Flashcoders] Clear Set Interval Q:

2007-04-24 Thread Helmut Granda
you could try clearInterval( intervalID); delete intervalID; and then wait for the garbage truck to drive by and pick it up... eric haha, nice... ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] flash and paypal

2007-04-23 Thread Helmut Granda
Have you gone to PayPal? I think they have a free component and tutorials on how to tie PayPal and Flash. On 4/23/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: i'm going to be producing a site which sells some exclusive, single and multiple (ie shopping cart) products which i'd like to do in

Re: [Flashcoders] Combined Classes fail Tween Class

2007-04-05 Thread Helmut Granda
/4/07, Helmut Granda [EMAIL PROTECTED] wrote: Thanks for the feedback guys, let me go back a little to explain why this behavior. I am trying to implement the MVC Design Pattern to a item. Trying to do it properly I am creating my Views as classes and now I wanted to integrate them into my layout

[Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Helmut Granda
I have a main class that will act as a holder for the rest of my classes, somethig like this: //start sample import com.views.*; class com.Application { var menuL: MovieClip; var contentLL: MovieClip; var footerL: MovieClip; var mc :

Re: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Helmut Granda
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Wednesday, April 04, 2007 5:14 PM To: Flashcoders mailing list Subject: [Flashcoders] Combined Classes fail Tween Class I have a main class that will act as a holder for the rest of my

Re: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Helmut Granda
Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Wednesday, April 04, 2007 5:14 PM To: Flashcoders mailing list Subject: [Flashcoders] Combined Classes fail Tween Class I have a main class that will act

Re: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Helmut Granda
Thanks for the feedback guys, let me go back a little to explain why this behavior. I am trying to implement the MVC Design Pattern to a item. Trying to do it properly I am creating my Views as classes and now I wanted to integrate them into my layout. View 1 Class = menu View 2 Class = content

[Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
I understand that when instantiating a class you can set the scope where the instance is going to run, but how about when we dont actually instantiate the class on the timeline but we just link the class directly to the items on the stage, how is the scope treated in this case? I assume the class

Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
- then they know what the other class does, but still don't have any scope reference). What are you trying to do? Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut

Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Tuesday, April 03, 2007 9:05 AM To: Flashcoders mailing list Subject: [Flashcoders] Delegate Class Scoping self instantiated I understand that when instantiating a class you can set the scope where the instance

Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
to the properties and methods within the class without having to say target.objectA._x = 130; but just have objectA._x = 130; Thanks -h On 4/3/07, Helmut Granda [EMAIL PROTECTED] wrote: Oh, and I forgot an important point, the reson why I want to find the scope of the class is because inside the class

Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
; Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Tuesday, April 03, 2007 9:30 AM To: flashcoders@chattyfig.figleaf.com Subject: Re

Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
; } } //end of sample On 4/3/07, Helmut Granda [EMAIL PROTECTED] wrote: You are correct, and it all seems clear now and working as expected, the only guy that I cant understand is the Tween class and the way i can pass a refrence of the main class inside it. I have learend that this works

Re: Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
is going on in the design of this code. I think you should explain what you want to do at a very high level so we can see if there is a better and simpler way to accomplish it. (I can't figure out where the Delegate mentioned in the subject line is coming from, either.) From: Helmut Granda [EMAIL

Re: [Flashcoders] Events for custom classes?

2007-04-03 Thread Helmut Granda
On 4/3/07, Helmut Granda [EMAIL PROTECTED] wrote: Jason, Were you able to figure this out exactly the way you wanted it? -h On 2/16/07, Merrill, Jason [EMAIL PROTECTED] wrote: Ah - nevermind - figured out I had removed the scope to my webservice and forgot to put it back in. Delegate

Re: [Flashcoders] Events for custom classes?

2007-04-03 Thread Helmut Granda
Learning Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Tuesday, April 03, 2007 12:35 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Events for custom classes? On 4/3/07

[Flashcoders] If statements combined into one

2007-04-03 Thread Helmut Granda
insted of : bigFunction() { once1 = true; if (once1 == true) { dothisonce(); once1 = false; } once2 = true; if (once2 == true) { dothisonce(); once2 = false; } once3 = true; if (once3 == true) { dothisonce(); once3 = false; } } What I am trying to do is take the if statements out into

Re: [Flashcoders] Events for custom classes?

2007-04-03 Thread Helmut Granda
Yeah, same here, trying to digest everything now that I have my mouth full :). Thanks again everyone! On 4/3/07, Merrill, Jason [EMAIL PROTECTED] wrote: Yes - thanks Muzak - I can't speak for Helmut, but I've got enough to go on now. Thanks, Jason Merrill Bank of America GTO Learning

[Flashcoders] Delegate Scope Class Issues

2007-04-02 Thread Helmut Granda
Hi All, I have a little bit of a dilemma here. I have some Tweens that Im scripting and when they are done I want to trigger something else. but for some reasons I cant get the Delegate class to talk directly to the rest of the app. I can talk to the rest of the class directly such as

Re: [Flashcoders] Delegate Scope Class Issues

2007-04-02 Thread Helmut Granda
, 100, 3, true); myTween.onMotionFinished = Delegate.create(this, record); } function record() { trace(recordReached); } } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Monday, April 02, 2007 5:52 PM

Re: [Flashcoders] Delegate Scope Class Issues

2007-04-02 Thread Helmut Granda
var mc:MovieClip public function MyClass(target:MovieClip) { mc = target; } } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Monday, April 02, 2007 6:31 PM To: flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Flash CS3 Announced

2007-03-28 Thread Helmut Granda
I dont think flash has public betas for Flash just private betas. On 3/27/07, Russell Sprague [EMAIL PROTECTED] wrote: So is this the next version of Flash, or is it just Flash 8 with AS3 support? It would seem odd to me if they released Flash 9 with out ever having a beta. Russ Ian Thomas

Re: [Flashcoders] another setInterval question

2007-03-26 Thread Helmut Granda
yourbutton.onRollOver = function clearInterval(autoID); } yourbutton.onRollOut = function() { setInterval(autoPilot, 5000); } On 3/26/07, Raphael Villas [EMAIL PROTECTED] wrote: I have got a setInterval like this: - var autoID = setInterval(autoPilot,5000); function

Re: [Flashcoders] OT - Installing PHP, MySQL?

2007-03-25 Thread Helmut Granda
How hard / not-hard is it to install PHP and MySQL on a remote server? Anything to be weary of? Is it something I should just skip attempting and hire an IT guy to do it? Security shouldn't be taking lightly, if you leave something open where your client's machine vulnerable and in fact gets

Re: [Flashcoders] setting a timer in flash 8

2007-03-25 Thread Helmut Granda
Gustavo, Duenas noches :) Search for setInterval in the help manual ;). ...helmut On 3/23/07, Gustavo Duenas [EMAIL PROTECTED] wrote: Hi, I'm trying to set a timer to trigger a event after 20 seconds or less, but so far i have this code, but with no results someone help me? . I don't know

Re: [Flashcoders] Q:remove returns in text string or in text strings in XML

2007-03-16 Thread Helmut Granda
Kind of hard to offer a solution for a third party utilities without having the name of the utility. ...helmut On 3/15/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi I'vm using a utility to convert my flash objects to xml. It works great except if one of my objects happens to be text

Re: [Flashcoders] loadMovie question

2007-02-02 Thread Helmut Granda
It sounds like you are not loading the JPG to the right target. Make sure your loadmovie is loading correctly. On 2/2/07, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: Hi Alain, I would think that would work too, but i tried that as well...not sure what's happening... in fact all of my

Re: [Flashcoders] loadMovie question -- better explaination

2007-02-02 Thread Helmut Granda
Hey Buddy, You dont have to start a new thread, you can just continue with the original post :) On 2/2/07, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: ok so i noticed that where i have the clip that i'm loading into matters... so here's how my movieclip is set up. there are about 20

Re: [Flashcoders] Need help with Keyboard events

2007-02-02 Thread Helmut Granda
Hey Mike, This should get you started: http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=2305.html On 2/2/07, Mike Anderson [EMAIL PROTECTED] wrote: Hello All, Could any of you help me with the logic, required to capture a

Re: [Flashcoders] fullscreen javascript

2007-02-01 Thread Helmut Granda
Gustavo, the fullScreen command only works in IE (I didnt know it did work in Safari). So you have to look for an alternative to launch a fullscreen in FF/Netscape/Moz On 2/1/07, Gustavo Duenas [EMAIL PROTECTED] wrote: hi guys Iknow this is not for javascript but I think you might know of

Re: [Flashcoders] Simple clip stop problem?

2007-02-01 Thread Helmut Granda
The way you described it should work, maybe there is something else that is triggering the loop. What else is happening on your stage after the explosion? On 2/1/07, Martin Scott Goldberg [EMAIL PROTECTED] wrote: Hey all, I'm having what should be a simple thing turn in to a problem. Have a

Re: [Flashcoders] Need a volunteer Flash Programmer

2007-01-31 Thread Helmut Granda
You will be added to my Contacts page as a member of the project How can some one pass this opportunity... ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Shorhand for if statement without else statement

2007-01-26 Thread Helmut Granda
does anybody knows if there is any short hand for if statement without the else statement? at the moment I am using object ? true : null; thanks... ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Shorhand for if statement without else statement

2007-01-26 Thread Helmut Granda
Mark Hawley From: Helmut Granda [EMAIL PROTECTED] Date: 2007/01/26 Fri PM 03:01:25 CST To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Shorhand for if statement without else statement does anybody knows if there is any short hand for if statement

Re: [Flashcoders] Shorhand for if statement without else statement

2007-01-26 Thread Helmut Granda
On 1/26/07, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote: does anybody knows if there is any short hand for if statement without the else statement? 1. You can remove the braces. I always use: if (true) something(); I like it... ___

Re: [Flashcoders] which tool to 3d rotate image?

2006-12-28 Thread Helmut Granda
This sounds like a request to Santa Claus. Did you say that all this has to be acomplished dynamicly? So nothing has to be pre-rendered? In that case have you considered just creating a box on the fly something like this: http://www.flashloaded.com/flashcomponents/3dbox/example3.html

Re: [Flashcoders] Tweaking Full-Screen Mode in Flash Player 8

2006-12-28 Thread Helmut Granda
Can we some code you are using at the moment? Maybe it just needs some tweaking rather than starting from scratch. On 12/27/06, Kelly Smith [EMAIL PROTECTED] wrote: Hello - I am building a video application which requires a full-screen mode for flash 8 players. I want to pass along some

Re: [Flashcoders] which tool to 3d rotate image?

2006-12-28 Thread Helmut Granda
Well, Fuse is more for linear animation with ActionScript, and for what I have seen PaperVision works only with Flash8 and 9 and you are targeting flash7 so that is out of the question. One thing that you have to keep in mind is that flash doesnt skew bitmaps as you want it but after looking at

Re: [Flashcoders] which tool to 3d rotate image?

2006-12-28 Thread Helmut Granda
another more extended explanation by senocular: http://www.senocular.com/flash/tutorials/transformmatrix/ On 12/28/06, Matthew Pease [EMAIL PROTECTED] wrote: This sounds like a request to Santa Claus. Heh. and i was a good boy this year too. Did you say that all this has to be

Re: [Flashcoders] Extracting file details

2006-12-06 Thread Helmut Granda
Thanks! I found that last night too and it is exactly what I was looking for. On 12/6/06, shang liang [EMAIL PROTECTED] wrote: http://www.phpclasses.org/browse/package/1653.html On 12/6/06, Helmut Granda [EMAIL PROTECTED] wrote: Maybe this is not the right list but I thought I would give

Re: [Flashcoders] Extracting file details

2006-12-06 Thread Helmut Granda
16072 The tricky thing is that the file difference is not constant so I cant say 33% of the file size is the difference it will always be so then the file is = to the site size - the %. Has anyone run into the same issue? -h On 12/6/06, Helmut Granda [EMAIL PROTECTED] wrote: Thanks! I found

[Flashcoders] Extracting file details

2006-12-05 Thread Helmut Granda
Maybe this is not the right list but I thought I would give it a shot. Is there anyway to get file details like FPS, BG Color and such from a SWF? with flash or with PHP? TIA for any ideas... helmut ___ Flashcoders@chattyfig.figleaf.com To change

Re: [Flashcoders] problem with combo box and array

2006-12-05 Thread Helmut Granda
What are you getting on your cb? It sure looks like my_schema[0] should work, unless you have to hack it like item1= my_schema[0] and then add item1 to your cb. just an idea. On 12/5/06, Fratiman Vladut [EMAIL PROTECTED] wrote: Hi! This is some example for simplicity. I have one combo box

Re: [Flashcoders] Breaking appart a class

2006-11-29 Thread Helmut Granda
to a square where he's not in check. The game starts by creating 2 players and a board. while neither player is checkmated it processes one player's turn then the other's. Helmut Granda wrote: I have a game class that is about 215 lines of code. Is not really big but i would like to divide

Re: [Flashcoders] Breaking appart a class

2006-11-29 Thread Helmut Granda
Thanks for the suggestion. Defenatelly a book i will look into. On 11/28/06, T. Michael Keesey [EMAIL PROTECTED] wrote: Read Refactoring: Improving the Design of Existing Code by Martin Fowler. On 11/28/06, Helmut Granda [EMAIL PROTECTED] wrote: I have a game class that is about 215 lines

[Flashcoders] Breaking appart a class

2006-11-28 Thread Helmut Granda
I have a game class that is about 215 lines of code. Is not really big but i would like to divide this class in smaller packages so I can re-use bits of pieces of code for new versions of the game. The question is what are the best practices to break this code into smaller bits and pieces? As

[Flashcoders] Stage Height Bug?

2006-11-17 Thread Helmut Granda
I am sure this has come up before but I couldnt find any specific answer to this bug. If i create a blank movie and post this scrit trace(Stage.height); it will give 100 less than the actual size. but if you do this: this.onEnterFrame = function() { trace(Stage.height); } it will trace the

Re: [Flashcoders] Stage Height Bug?

2006-11-17 Thread Helmut Granda
is being cropped for display. Is the bandwidth profiler open and cropping your SWF? Have you tried outputting your trace to the stage and previewing it in a HTML file? On 11/17/06, Helmut Granda [EMAIL PROTECTED] wrote: I am sure this has come up before but I couldnt find any specific answer

[Flashcoders] functions outside a class

2006-11-10 Thread Helmut Granda
I have several classes that will use a function. for scope reasons i have placed the function in a different file but i would like to be able to access that file from within the classes. If the function has been declared outside the class, what is the best way to accces those functions? sample:

[Flashcoders] Re: functions outside a class

2006-11-10 Thread Helmut Granda
ok, i figured it out. it works if i make reference to where the function is. this.function(); _parent.function(); if i just call the function: function(); it is where I was getting stuck, but it all works now. ... On 11/10/06, Helmut Granda [EMAIL PROTECTED] wrote: I have several classes

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-23 Thread Helmut Granda
or ask him to use a PC, there is a tool already developed that works on all browsers on PC. http://www.indev.no/?p=projects#flashmute I havent seen anything about the developer trying to create something for MAC. srry On 9/22/06, aaron smith [EMAIL PROTECTED] wrote: hahahahahahah. i have to

Re: [Flashcoders] SWF or MovieClip in an Email

2006-09-22 Thread Helmut Granda
you need to upload the SWF to a server and then link the SWF to your signature. Now, remember that not everyone will allow images or animated content to show in their email software (outlook and so forth). On 9/22/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is it possible to include a SWF

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-22 Thread Helmut Granda
if you are running FF this mmight be your answer: http://johnbokma.com/firefox/find-in-page-sound.html On 9/22/06, Merrill, Jason [EMAIL PROTECTED] wrote: keep in mind i'm not creating the flash site, so I can't jsut add this in to the site, it would be for muting the browser sound in

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-22 Thread Helmut Granda
Aaron is asking how to turn sounds off from pages he is browsing, no necessary SWF files he is working with. On 9/22/06, Mike Keesey [EMAIL PROTECTED] wrote: Well, can he load it into a holder SWF and set the global volume on that? ― Mike Keesey -Original Message- From: [EMAIL

Re: [Flashcoders] {OT} Job Postings?

2006-09-15 Thread Helmut Granda
You also have to remember to give the opportunity to those that are in the Mid Range but are eager to learn and move forward. I dont mean to make your team full of Wannabes but I hope more people were willing to give an opportunity to those who seem to not be quite there yet but have a chance.

Re: [Flashcoders] FLV size

2006-09-14 Thread Helmut Granda
You have to consider your comprerssion settings. You cant expect a different result if you are using the same Codecs or Compression Settings :) On 9/14/06, Dennis - I Sioux [EMAIL PROTECTED] wrote: Hey, I have a strange situation with converting avi's to flv. When I convert a 4 minute 720x576

Re: [Flashcoders] Tween Class with Set Interval deletion

2006-09-08 Thread Helmut Granda
Dias [EMAIL PROTECTED]: Try: myTimeTween .stop(); ;-) Telmo Helmut Granda wrote: I have a small piece of script that was passed down to me and I cant figure out how to stop it from executing: var interval:Number = 60; myTimeTween = new mx.transitions.Tween(pBar, _height

Re: [Flashcoders] Flv's playing in a projector from usb drive

2006-09-07 Thread Helmut Granda
the tricky part is to find what drive letter it is for the person that is using your app, as you know some people have more than 1 external drive runing. I wonder if a for loop would fix the case. On 9/7/06, Éric Thibault [EMAIL PROTECTED] wrote: If I understand correctly, I can use relative

Re: [Flashcoders] Tween Class with Set Interval deletion

2006-09-07 Thread Helmut Granda
/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Thursday, September 07, 2006 9:54 AM To: Flashcoders mailing list Subject: [Flashcoders] Tween Class with Set Interval deletion I have a small piece of script

Re: [Flashcoders] Special vars and Addition

2006-09-07 Thread Helmut Granda
rec2.text = Number(s0) + Number(s1); On 9/7/06, Laurent CUCHET [EMAIL PROTECTED] wrote: I import data from a db with flashsql and its ok for that. When I try to add the 2 values, a simple + funtion it concatene and not add ... var s0:Number = flashSQL.MoveNext.var80;// for exemple value =12

[Flashcoders] MovieClipLoader Reusage

2006-09-07 Thread Helmut Granda
Can the MovieClipLoader class be reused? I have the following code: var myMCL:MovieClipLoader = new MovieClipLoader(); var myListener:Object = new Object(); myListener.onLoadComplete = function(targetMC:MovieClip):Void { trace(loaded + targetMC); myMCL.loadClip(right2.swf, img2);//--This

Re: [Flashcoders] MovieClipLoader Reusage

2006-09-07 Thread Helmut Granda
like it should do the trick On 9/7/06, Helmut Granda [EMAIL PROTECTED] wrote: Can the MovieClipLoader class be reused? I have the following code: var myMCL:MovieClipLoader = new MovieClipLoader(); var myListener:Object = new Object(); myListener.onLoadComplete = function(targetMC:MovieClip

[Flashcoders] Advanced hitTest Detection

2006-08-31 Thread Helmut Granda
Hello, I have 10 items on screen and only 2 of them have to match. so there is no problem saying itemA.hiTest(itemB). But now I have to know if itemA.hitTest(itemB) + itemC. The only way i got it to work is by having itemC onEnterFrame check if the mouse is on top of it. The issue here is that

[Flashcoders] Class inheritance and scope

2006-08-29 Thread Helmut Granda
Hi, I have a class with 3 subclasses. in order for me to access a method from any of the subClasses they have to be static (or at least that is the error that the compiler gives me) so i have made my methods static and now when i try to access somethig out of those methods flash tells me that

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Helmut Granda
, They don't need to be static at all. In fact if you want to access the parent class you can use the key word super. super.myMethodName() for example. Take a look at the documentation on that and hopefully that gets you pointed in the right direction. Good Luck. -Chris On 8/29/06, Helmut

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Helmut Granda
(); initiate(); } you would have seen it twice, but i wouldn't know why you'd want to:) grtz Hans On 8/30/06, Helmut Granda [EMAIL PROTECTED] wrote: Thanks guys, I think i have to go back to the books because even simple code as the following wont give me the result I am looking

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Helmut Granda
Thanks! I found the book and going to give it a good read, I read twice Mook's book in essentials of AS2 but still I havent been able to grasp the consept as you can tell by my question. Anyhow, how do you go by decompiling some one else's code when there are items you dont understand? I have

<    1   2   3   4   >