Re: [Flashcoders] standalone+amfphp doesn't work

2006-01-08 Thread Gabriel
nope...windows JesterXL wrote: Is it a Mac projector? - Original Message - From: "Gabriel" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, January 05, 2006 2:37 AM Subject: Re: [Flashcoders] standalone+amfphp doesn't work What do you mean by "full path"? I have "

[Flashcoders] Flash 7 to 8 XML.load problem

2006-01-08 Thread David Garcia
I have a movie that was compiled using Flash 7. It is a swf that sits on my local disk and accesses a fit in the same directory using XML.load(). I run it by loading the swf into my browser. If the browsers are using the Flash 7 plugin, it works great on both Mac OSX and PC WinXP. But if the browse

[Flashcoders] tossable boxes and editing text

2006-01-08 Thread Lance Massey
Hey all, I'm working on yet another XSPF mp3 player for my site. A couple of the boxes are tossable (e.g. if you drag and let go, they float to a stop), but when I try to make the "Search" box tossable I can no longer enter text into the search field. Any ideas? (It seems to be an issue w

[Flashcoders] status bar humbug

2006-01-08 Thread Amanda Kuek
Hello Listites, I'm having a great deal of difficulty getting a message to show in the browser window status bar from my swf. I wanted the appropriate button rollovers to show the URL of the page they linked to. I thought the following code should do the trick: //On the button on (rollOver) {

[Flashcoders] MTASC with v2 components

2006-01-08 Thread Alan MacDougall
I have two MTASC issues: First, MTASC cannot compile MM's source for v2 components, because that source itself does not comply to pure, strict AS 2.0. The workaround is to use the -mx flag, which causes MTASC to use the precompiled .aso objects for v2 components. That's all well and good, bu

Re: [Flashcoders] is delegate the answer?

2006-01-08 Thread matt ganz
hey john. that did help. i've still got some remaining issues with retrieving the correct scope but eval() worked. thanks. -- matt. - Original Message - From: "John Grden" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Sunday, January 08, 2006 12:01 AM Subject: Re: [Flashc

Re: [Flashcoders] reducing build times

2006-01-08 Thread Mark Winterhalder
> Could anyone suggest a way to have the symbols' graphic vector data compiled > once, so that i can later change their AS2 class code without compiling the > vector data for them over and over again? have you had a look at mtasc yet? http://osflash.org/mtasc with mtasc you can compile your code

[Flashcoders] reducing build times

2006-01-08 Thread Uri
i'm trying to reduce build (publish) times for a project i'm working on. I have many vector symbols that have AS2 classes assigned to them. Since i'm working with complex vector symbols, it takes flash quite a while to publish the swf of the movie each time. Could anyone suggest a way to have the

[Flashcoders] Flash 8 v2 Components Bug-fixes / Updates List

2006-01-08 Thread Joseph Balderson
I've been looking for several days now, and I cannot seem to find a bug fix list for the v2 components that ship with flash 8 anywhwere. I keep seeing references that the standard v2 components have had certain bugs fixed in flash 8, and I would like to find a definitive list of "changes/updates

Re: [Flashcoders] mCom RadioButton : Bug?

2006-01-08 Thread John Grden
ah Sure thing Ryan! I'll setup the same simple 2 button test and send it on over either tonight or tomorrow Thanks for your help, John On 1/8/06, Ryan Matsikas <[EMAIL PROTECTED]> wrote: > > Hey John, > > I just did a simple check and everything seems to be working ok. Can you > re-create the i

[Flashcoders] What does the newline constant insert?

2006-01-08 Thread Fumio Nonaka
According to "ActionScript 2.0 Language Reference" the newline constant "Inserts a carriage return character (\r)". But it should return a newline character (\n). var my_str:String = newline; // [Debug] > [List Variables]: Variable _level0.my_str = "\n" However the return value is changed depend

Re: [Flashcoders] mCom RadioButton : Bug?

2006-01-08 Thread Ryan Matsikas
Hey John, I just did a simple check and everything seems to be working ok. Can you re-create the issue in a new fla with only the RadioButton? If so can you send it over for investigation? Cheers, Ryan Matsikas On 1/6/06, John Grden <[EMAIL PROTECTED]> wrote: > > the click event dispatches 2x's

Re: [Flashcoders] Increasing DisplacementMapFilter Precision

2006-01-08 Thread Alan Shaw
On 1/7/06, Spencer Markowski <[EMAIL PROTECTED]> wrote: > > Absolutely. You can add as many filters as you like... all effecting > different channels or components. > Yes, I'm sure you can, but this is not relevant to my question... ___ Flashcoders mail

Re: [Flashcoders] > Making things

2006-01-08 Thread ryanm
Does anyone have experience with using the materials of MakingThings.com and how I can obtain their packages in Europe. Because I wasn't really planning to pay $70 to let it shop to Europe. That's like ~80% added to the price. Expensive. They have a Yahoo group ([EMAIL PROTECTED]) you could

RE: [Flashcoders] Linebreak textfield

2006-01-08 Thread Adrian Lynch
I think it's likely to be String.fromCharCode(13) or String.fromCharCode(10) or a combination of the two rather than \r. Try setting your lookfor to one of the above. Which one wil depend on where and how the text file was created. Windows will but in a carriage return and and line feed, 13 and 10

Re: [Flashcoders] Generating XML file from projector

2006-01-08 Thread Mark Walters
OS version of Screenweaver works too, I actually just got done using it for the same purpose. On 1/8/06, JesterXL <[EMAIL PROTECTED]> wrote: > mProjector, Zinc, not sure about the OS version of Screenweaver. > > - Original Message - > From: "dls" <[EMAIL PROTECTED]> > To: "Flashcoders mail

Re: [Flashcoders] Linebreak textfield

2006-01-08 Thread Sander
I would like to replace a linebreak with a linebreak followed by a tabspace [slash]t. It doesn't answer your question, but if you switch to XML you can use list item tags () and format those with CSS or textFormat objects. Bullet 1

Re: [Flashcoders] windows flash standalone able to export standalonefile?

2006-01-08 Thread grimmwerks
Yeah; I thought about a 'player only' exe that would load in an external xml I create (since that's how it's working internally) -- the trouble is that they wanted it to be 'packaged' for playback; my original thought was using the QTXtra to export a full Quicktime movie with all the slides as one

[Flashcoders] Linebreak textfield

2006-01-08 Thread Jiri Heitlager
H there, Is is possibble to read a linebreak from a textfield with text. I can remember flash uses a [slash]r instead of a [slash]n. Is this correct? I would like to replace a linebreak with a linebreak followed by a tabspace [slash]t. this: 1.this is a text and has many lines. should be: 1.

[Flashcoders] > Making things

2006-01-08 Thread Weyert de Boer
Does anyone have experience with using the materials of MakingThings.com and how I can obtain their packages in Europe. Because I wasn't really planning to pay $70 to let it shop to Europe. That's like ~80% added to the price. Expensive. ___ Flashcode

[Flashcoders] Motion on perspective gameboard

2006-01-08 Thread Sander
Hi there, I'm working on a 3Dish flash game where a player moves across a perspective gameboard. It's not isometric, there's real perspective distortion on the square gameboard. I'm using the Tween class to move from tile to tile, respecting the perspective distortion. onMotionFinished I

Re: [Flashcoders] > Switching plugins on the mac

2006-01-08 Thread Weyert de Boer
Hi Sander, I have 3 zip archives on my Mac, in the "Library/Internet Plugins" folder: plugin 6,7,8 files. I quickly throw away all MM plugins and expand the one I wan to test. Perhaps that's quicker than modify Mike's script to include more than 8 / 8.5? You need a browser restart after t

Re: [Flashcoders] Classes being cached - deleting ASO does help (flash8)

2006-01-08 Thread Michael Klishin
blists wrote: I should have been more clear sorry. Clearing the ASO files does not help in this case. I met smth like that several times during component development. Solved it when cleared ASO cache and then updated component definition (just opn and then close the dialog). -- Michael "A

RE: [Flashcoders] windows flash standalone able to export standalonefile?

2006-01-08 Thread Johan Karlsson
It's not possible with flash alone. Since it won't even let you save a textfile, besides from shared objects, localy. So you would need either Director or a 3rd party app like ZSinc (http://www.multidmedia.com). But I'm not sure if Zinc allows you to save exe files though. But you could probably m