Re: [Flashcoders] Are you a help vampire?

2006-04-27 Thread Anggie Bratadinata
I believe this point is important to emphasize: This is autonomous behavior. Again, we shouldn't hate the Help Vampire. Or stake them. They know not what they do, only that they are driven to do it, and I believe they can be saved. Well said! I've been a member of a group , more strict than

Re: [Flashcoders] Are you a help vampire?

2006-04-27 Thread ryanm
I've been a member of a group , more strict than any other groups. It's a place for C/C++ programmers where Help Vampires more than often get these replies : Heh, that's old school. Back in the day, when all this kind of discussion took place on newsgroups, that was standard fare. Except

[Flashcoders] Problem with TextField.tabIndex

2006-04-27 Thread Andy Kirkham
Thanks. Excellent advice. However, the very simple Flash movie was just for illustration: my real problem is that I'm dealing with a legacy project that worked fine in Flash 6, but no longer works now that I've updated it to Flash 8. Changing all the TextFields to TextInputs may involve rather

[Flashcoders] Problem with TextField.tabIndex

2006-04-27 Thread Andy Kirkham
I've found the solution. Just set focusManager.enabled = false Andy - Original Message - From: Andy Kirkham [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, April 26, 2006 12:56 PM Subject: [Flashcoders] Problem with TextField.tabIndex I have a very simple

Re: [OBORONA-SPAM] RE: [Flashcoders] Are you a help vampire?

2006-04-27 Thread ????? ???????
Jim Tann ?: http://www.osflash.org/flashcoders/as2#handling_scope_in_event_handlers -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Berry Sent: 26 April 2006 23:53 To: Flashcoders mailing list Subject: Re: [Flashcoders] Are you a help

[Flashcoders] Is a colour stated as 0xFF00FF an object?

2006-04-27 Thread Kent Humphrey
Is a colour stated as 0xFF00FF an object? I am getting a colour from an xml attribute with XPath (colour=0xFF00FF), and then trying to use that colour with the mc tween class - my_mc.colorTo(bgColour, 1). But it always changes to black. If I trace() the bgColour, it has the correct

[Flashcoders] Luminicbox / xray

2006-04-27 Thread j.c.wichman
Hi peeps, I downloaded luminicbox in addition to Xray, which I have been using already for some time, but I thought it would be nice to just use m both, Xray for the introspection and luminicbox for the logging. I think I heard John mention at one point he was going to try to incorporate luminic

Re: [OBORONA-SPAM] RE: [Flashcoders] Are you a help vampire?

2006-04-27 Thread elibol
Shh back off man he's got it under control. On 4/27/06, ? ??? [EMAIL PROTECTED] wrote: Jim Tann ?: http://www.osflash.org/flashcoders/as2#handling_scope_in_event_handlers -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan

[Flashcoders] createClassObject with List Class funky

2006-04-27 Thread August Gresens
Trying to create a List Class instance and having trouble. The list shows up on the stage, but the variable returned from createClassObject is null, so I cannot change the format or reposition it. This code is based on an example in the Mook Essential ActionScript book. The List composnent is in

Re: AW: [Flashcoders] Is a colour stated as 0xFF00FF an object?

2006-04-27 Thread Kent Humphrey
slaps forehead of course... so the return from XPath is an object/array containing a string, and I need it as a number. trace(bgColour[0]) returns the correct value, but trace(Number(bgColour[0])) returns NaN - so how do I make it a real number? The help docs say that a string that

Re: [Flashcoders] createClassObject with List Class funky

2006-04-27 Thread Stefan Thurnherr
On 4/27/06, August Gresens [EMAIL PROTECTED] wrote: Trying to create a List Class instance and having trouble. The list shows up on the stage, but the variable returned from createClassObject is null, so I cannot change the format or reposition it. This code is based on an example in the Mook

Re: AW: [Flashcoders] Is a colour stated as 0xFF00FF an object?

2006-04-27 Thread Kent Humphrey
On 27 Apr 2006, at 15:00, Zeh Fernando wrote: trace(bgColour[0]) returns the correct value, but trace(Number(bgColour[0])) returns NaN - so how do I make it a real number? The help docs say that a string that starts with 0x will be treated as hexadecimal. Use parseInt() to convert a

Re: AW: [Flashcoders] Is a colour stated as 0xFF00FF an object?

2006-04-27 Thread Zeh Fernando
That is exactly what it does, eg 0x73 becomes 7558485, but that's not what I need. I need it to stay hexadecimal, but to be recognised as a number type. It shouldn't be converted, its type needs to be changed. Well, a number is a number - 0xff *is* 255. If you need it to be hexadecimal

[Flashcoders] Code-created textfield doesn't re nder À

2006-04-27 Thread Lieven Cardoen
I've created a textfield with embedded fonts. The Character 'À' doesn't appear. The font Frutiger is in my library. When I put a textfield on my stage, embed fonts, and add 'À', then in this textfield the À does appear, but still not in my code-created textfield. I've also put a

[Flashcoders] Solved Re: Problem with removeEventListener and Delegate

2006-04-27 Thread Manuel Saint-Victor
I found the anser through the docs and some blog posts http://blogs.katapultmedia.com/jb2/flash/ http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004file=2401.html Hope this helps someone else from suffering through this! Mani

[Flashcoders] Event listeners and memory waste...

2006-04-27 Thread Julien Vignali
Hi guys, I am getting memory problems when I remove and recreate all my objects several times (the flash player eats up RAM, and I have to minimize it and maximize to force the garbage collector).There must be something wrong in the way I destroy my objects :-( So I am wondering what is the

Re: AW: [Flashcoders] Is a colour stated as 0xFF00FF an object?

2006-04-27 Thread Kent Humphrey
Cool, thanks for that. It's strange the holes you find in your AS knowledge sometimes... On 27 Apr 2006, at 15:29, Zeh Fernando wrote: That is exactly what it does, eg 0x73 becomes 7558485, but that's not what I need. I need it to stay hexadecimal, but to be recognised as a number

Re: [Flashcoders] createClassObject with List Class funky

2006-04-27 Thread Stefan Thurnherr
On 4/27/06, August Gresens [EMAIL PROTECTED] wrote: No, that didn't work. Actually, I'm doing this within a non-movieclip extended class, so the syntax is like this: clip_mc.createClassObject(List, listText_lst, clip.getNextHighestDepth() ); clip_mc.listText_lst.setSize(550, 150);

Re: [Flashcoders] Event listeners and memory waste...

2006-04-27 Thread Manuel Saint-Victor
Here's an example I came across this morning that has helped me to cut back on my ram waste http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004file=2401.html On 4/27/06, Julien Vignali [EMAIL PROTECTED] wrote: Hi guys, I am

[Flashcoders] hideBuiltInItems and settings and about...hide everything

2006-04-27 Thread chattystan
Is there a work around that will let me get rid of the settings choice in the contextMenu for example when I right click on a particular movie clip. I would like to right click on an mc and be able to have complete control of what it says in the contextMenu. I have used hideBuiltInItems, but I

Re: [Flashcoders] Are you a help vampire?

2006-04-27 Thread Jonathan Berry
Thanks, Jim, but you didn't read my e-mail. On 4/27/06, Jim Tann [EMAIL PROTECTED] wrote: http://www.osflash.org/flashcoders/as2#handling_scope_in_event_handlers ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] Re: Flash Player 6 on PSP

2006-04-27 Thread Ryan Creighton
i work on the support site for a kids' TV station, and am watching Flash development on portable devices very, very closely. We put one of our most simple games from our site on the PSP yesterday and it was DOG slow. And the edges of the swf weren't masked, so you got to see all of the

Re: [Flashcoders] Re: Flash Player 6 on PSP

2006-04-27 Thread JesterXL
Most of the performance problems I've found with content is that people expect too much per frame. If you spread the damage, such as attaching 15 movieclips over 15 frames vs. 1, you'd be surprised how forgiving the player will be. I've been pretty impressed with Flash Lite 2 on my Nokia

[Flashcoders] Class Dropdowns in Flash

2006-04-27 Thread Doug Coning
I believe I read somewhere, but can't locate it, where you can add a feature that allows the properties of custom created classes to show in Flash when you are developing. I'd like to add some frequently used classes so that when I type the class out: myClass.myMethod, that the methods for the

Re: [Flashcoders] Test - ignore

2006-04-27 Thread Jordan Snyder
Mine never show up unless someone replies...so, do you see it now? Cheers On 4/27/06, Merrill, Jason [EMAIL PROTECTED] wrote: Test - ignore my messages don't seem to be getting through. Jason Merrill | E-Learning Solutions | ICF International

Re: [Flashcoders] Font jumping cross platform

2006-04-27 Thread Kevin Newman
Most of the fonts that I use are not free or come from Adobe Font Folio OpenType edition. It doesn't happen with all fonts, but it is definitely a problem with the Macromedia programs (I think this is a problem in Freehand and Fireworks also, though I haven't tested that in a while) since this

[Flashcoders] calculating dates based on a starting date.

2006-04-27 Thread matt ganz
hi. i'm building a scheduler app for people who need infusions over a 1 year period. a user selects the following info to begin: 1. a starting date for first infusion - day, month, and year 2. number of infusions - 1-4 3. frequency of infusions - every 1, 2, 3, or 4 weeks. i have to come up

Re: [Flashcoders] hideBuiltInItems and settings and about...hide everything

2006-04-27 Thread Ryan Matsikas
No. You can't. On 4/27/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is there a work around that will let me get rid of the settings choice in the contextMenu for example when I right click on a particular movie clip. I would like to right click on an mc and be able to have complete control

Re: [Flashcoders] Re: Flash Player 6 on PSP

2006-04-27 Thread clark slater
I have been testing side by side performance of SWF content on a pocket pc (Asus 636) versus PSP and the difference is stunning. Surprisingly the performance of the Flash 6 player on the PPC is much, much better than on the PSP. Not what I expected, comparing a device running the Windows PPC

Re: [Flashcoders] Font jumping cross platform

2006-04-27 Thread Julian 'Julik' Tarkhanov
On 27-apr-2006, at 18:59, Kevin Newman wrote: Most of the fonts that I use are not free or come from Adobe Font Folio OpenType edition. It doesn't happen with all fonts, but it is definitely a problem with the Macromedia programs (I think this is a problem in Freehand and Fireworks also,

[Flashcoders] HTML templates in Flash

2006-04-27 Thread Alejandro Diaz
Hello again everyone, Does anyone know of any documentation or explanation about some of the variables in the Flash HTML template files? For example, the actual name of the file is sent through a variable named $PO, but I seem to be unable to find anything regarding how to break this down

[Flashcoders] File upload: Reference to absolute path of file on hard drive?

2006-04-27 Thread Wade Arnold
I have a project where I need to perform a file upload. The file is displayed online for viewing. When an order happens I need to know the original file path of the file that was uploaded. This will all in an admin section so I can assume that the file exists on the clients computer. I can get

RE: [Flashcoders] calculating dates based on a starting date.

2006-04-27 Thread Karina Steffens
Hi Matt, If what you're looking for is a way to subtract two dates, then it's your lucky day... I just wrote an Age Counter component that displays how long it's been since a specific date (years, months, hours, minutes, and seconds). It's for a client who wants to show how long his pediatric

RE: [Flashcoders] File upload: Reference to absolute path of file on hard drive?

2006-04-27 Thread Dave Watts
I have a project where I need to perform a file upload. The file is displayed online for viewing. When an order happens I need to know the original file path of the file that was uploaded. This will all in an admin section so I can assume that the file exists on the clients computer. I

Re: [Flashcoders] HTML templates in Flash

2006-04-27 Thread Geoff Stearns
this page has a list of all the stuff: http://www.123flashchat.com/flash/20_publish16.html On Apr 27, 2006, at 1:57 PM, Alejandro Diaz wrote: Hello again everyone, Does anyone know of any documentation or explanation about some of the variables in the Flash HTML template files? For

Re: [Flashcoders] Event listeners and memory waste...

2006-04-27 Thread Julien
Thanks for the link Manuel! I guess I will have to create a reference to the delegated function for each of my events... I'll try to do it and see if my objects are now well destroyed in the memory. By the way I found this article about the scope chain and persistent activation of objects,

[Flashcoders] Listeners / ASBroadcasters / Event Dispatchers confusion

2006-04-27 Thread Mark Burvill
Hi group, AS2 newbie question here... I've been going round and round in circles trying to work out the best way of doing this, so maybe someone can help me. Let's say I have a movieclip on the main timeline of my fla called acrobat_mc which is an animation of a little man doing a

Re: [Flashcoders] HTML templates in Flash

2006-04-27 Thread Alejandro Diaz
Thanks! the explanation of some of those variables and a bit of thinking got me to do exactly what I wanted. In case anyone is interested, what I ended up doing is just doing away with using $PO and $PE and building the file name using $TI and adding .swf? plus the variables I am trying to pass.

Re: [Flashcoders] Re: Flash Player 6 on PSP

2006-04-27 Thread Alejandro Diaz
Disappointing. I was eagerly awaiting for this to add to my reasons for getting a PSP, but it seems that either it simply can't handle it (which I find hard to believe, after seeing the games it runs), or Sony is intentionally crippling things. The PSP seems to be the poster child of missed

Re: [Flashcoders] HTML templates in Flash

2006-04-27 Thread Geoff Stearns
you should use flashvars instead of the .swf? - that way your swf will be cached properly and you don't have any limits (or at least much higher limits) than the query string. On Apr 27, 2006, at 2:48 PM, Alejandro Diaz wrote: Thanks! the explanation of some of those variables and a bit

Re: [Flashcoders] HTML templates in Flash

2006-04-27 Thread Chris Hill
This information is in the help files, but pretty hidden: http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0824.html On a similar note I've got a flashObject template that I use: http://ubergeek.tv/article.php?pid=111 But I'd like

Re: [Flashcoders] calculating dates based on a starting date.

2006-04-27 Thread matt ganz
hi karina. that looks very useful. yes, please post it on your blog. i'm not sure it's an exact fit for my problem but i'm making some progess here. for example, i have a starting date as a date object and based upon what the user selects, i can calculate an increment. the only remaining

Re: [Flashcoders] HTML templates in Flash

2006-04-27 Thread Alejandro Diaz
Unfortunatelly, I am sort of forced to use .swf? as it is one of the requirements for the delivery of the flash movies I am working on (I deliver them using a couple of different values only, it always remain very short). But I will certainly take your advice when I am doing similar projects not

Re: [Flashcoders] HTML templates in Flash

2006-04-27 Thread Geoff Stearns
oh and you should use swfobject to embed your stuff anyway :) http://blog.deconcept.com/swfobject/ On Apr 27, 2006, at 3:41 PM, Alejandro Diaz wrote: y, it always remain very short). But I will certainly take your advice ___

RE: [Flashcoders] calculating dates based on a starting date.

2006-04-27 Thread Merrill, Jason
Here is a SuperDate class I wrote if it's of use to you. You can get a future date and also get the elapsed number of days since a date, get the ordinal date etc. /* Name: SuperDate Class Author: Jason Merrill Date: 1/10/2006 Description: Some

RE: [Flashcoders] Test - ignore

2006-04-27 Thread Merrill, Jason
Mine never show up unless someone replies...so, do you see it now? Yeah, I saw your reply, but not my post. In my list subscription options on chattyfig.figleaf.com, I have Receive your own posts to the list? set to be Yes but I still don't see my own posts. Anyone know how to fix this? Jason

RE: [Flashcoders] Test - ignore

2006-04-27 Thread Dave Watts
Yeah, I saw your reply, but not my post. In my list subscription options on chattyfig.figleaf.com, I have Receive your own posts to the list? set to be Yes but I still don't see my own posts. Anyone know how to fix this? I suspect this may be a configuration issue with your mail server.

Re: [Flashcoders] Re: Flash Player 6 on PSP

2006-04-27 Thread clark slater
Forgot to add that one of the reasons I am really surprised at the difference in performance of the same SWF content on PPC versus PSP is because I believe the PPC I am using has a very similar processor to the PSP (312MHz vs 333MHz). Then I found out the PSP processor is itself neutered to help

Re: [Flashcoders] calculating dates based on a starting date.

2006-04-27 Thread matt ganz
very nice. thank you very much. - Original Message - From: Merrill, Jason [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, April 27, 2006 4:27 PM Subject: RE: [Flashcoders] calculating dates based on a starting date. Here is a SuperDate

Re: [Flashcoders] Re: Flash Player 6 on PSP

2006-04-27 Thread John Dowdell
Ryan Creighton wrote: i work on the support site for a kids' TV station, and am watching Flash development on portable devices very, very closely. We put one of our most simple games from our site on the PSP yesterday and it was DOG slow. And the edges of the swf weren't masked, so you got to

RE: [Flashcoders] Test - ignore

2006-04-27 Thread Merrill, Jason
Hmm - yeah, well nothing I can do about that I guess. I've never had this problem before, but we recently changed our name to ICF International and our e-mail addresses changed as well. Now everything's wonky. Oh well, thanks. Jason Merrill | E-Learning Solutions | ICF International

Re: [Flashcoders] Re: Flash Player 6 on PSP

2006-04-27 Thread Weyert de Boer
You would expect the player is damn Flash, if you at games such as GTA. High-quality 3d gaming, I can't believe you can misuse the GPU of th device for the heavy lifting. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

Re: [Flashcoders] Listeners / ASBroadcasters / Event Dispatchers confusion

2006-04-27 Thread Manuel Saint-Victor
ASBroadcaster.initialize(acrobat_mc); I think you could add a method on your audience object that does acrobat_mc.addListener( this); and a method onTrickCompleted=function(){ applaud(); } from the acrobat_mc you would call a broadcastMessage(onTrickCompleted); The best explanation that I

Re: [Flashcoders] createClassObject with List Class funky

2006-04-27 Thread Fumio Nonaka
mx.core.ext.UIObjectExtensions class, which is initialized in the UIComponent symbol, do that. _ Jim Armstrong wrote: If memory serves, MovieClip is a dynamic class and createClassObject() is added to the MovieClip prototype by the V2 framework at runtime. class

[Flashcoders] TextField as Menu?

2006-04-27 Thread August Gresens
My client wants a list style menu with a transparent background - this doesn't seem possible with the (clunky looking) List component (right?). The TextField Class supports scrolling, and determining the mouse location within it's region. Is there any way to determine which line was clicked, and

Re: [Flashcoders] TextField as Menu?

2006-04-27 Thread Marc Hoffman
If you use HTML text, you can use a href='asfunction:... etc. to create hyperlinks that call an asfunction defined elsewhere, including one argument being passed (actually you can have multiple arguments but must use some delimiting character to split them apart). This might be easier than

[Flashcoders] Xray Trouble Shooting

2006-04-27 Thread Charles Parcell
Is there a document/web site that outlines specific issues revolving around Xray? I have encountered a project where the primary Flash file was developed by someone else. After adding the Xray component I am unable to get Xray to connect. I have gone through all of the code in this primary file

[Flashcoders] Green Keyline

2006-04-27 Thread Drew Foehn
Hello, I have built an application that uses extended Macromedia components (buttons), this application is loaded inside of another swf. In order to make sure that the _root targets are correct for the app I've used _lockroot (I know, it's a bad idea). The problem I am having is when the

Re: [Flashcoders] Xray Trouble Shooting

2006-04-27 Thread John Grden
labs.blitzagency.com - that's the official home / information source for xray Let me know if I can help out, JG On 4/27/06, Charles Parcell [EMAIL PROTECTED] wrote: Is there a document/web site that outlines specific issues revolving around Xray? I have encountered a project where the