[Flashcoders] search engines and flash remoting

2006-03-29 Thread Alfonso Florio
Hi, i have this problem: i have to write a flash movie catalog in flash and amfphp, the client asks me that this catalog must be search engine friendly. So each item into the catalog must be visible by the google spiders Any suggestion, or any tutorial around the web? Thanks in advance

[Flashcoders] FPS speed problem

2006-03-29 Thread Laurent CUCHET
Good morning Ive got multiple level and 25 images speed per second ( all level are at this rate) In llocal its fluid and running correctly and online its sacaded and not very fluid, Have you got an ID why ? Laurent ___

[Flashcoders] What's wrong with my events?

2006-03-29 Thread Luca Candela
Hi all, I've a movie setup like this main.fla var control:MoveMe = new MoveMe(this, 10, 10); var oViewListener:Object = new Object(); myMenu.addEventListener(mex, oViewListener); oViewListener.mex = function(oEvent:Object):Void { trace(oEvent.evsource); trace(oEvent.msgtxt); }; and a

[Flashcoders] nextFrame(),gotoAndStop(),play(),they are different?

2006-03-29 Thread zikey Han
Hi list! Today i touch an odd. It has 2 frames on the Timeline,I have a check in first frame,when it's ok goto sencond frame. when i use gotoAndStop(2),nextFrame(),and play() ,the Flash can goto Frame 2 ,the browser is Firfox. But only play() can work in the

[Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread
Apologies for reposting, hopefully someone has come across this before. We have a large and complex Flash RIA that represents almost 2 years of development effort. Unfortunately we have one major unresolved issue. In a couple of places we have print functionality. When the print job system

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Steven Sacks
Is this a known Flash bug? It's not a bug. Is there a workaround? You cannot change the timeout. We've been trying to solve it for about a month. A 5 second google search would have saved you 30 days of wasted time. http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_15512

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Steven Sacks
PrintJob is a poorly written class in general. Also, it runs synchronously when it talks to the system. The reason Flash throws up the alert is because for 15 seconds it is stuck waiting. The movie is waiting on a line of code to finish. Flash responds to the movie being hung, which it

Re: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Danny Kodicek
Steven's response was a little unhelpful :) Is this a known Flash bug? It's not a bug. I would suggest that it is: there's no error in the code, and it's not that the Flash movie itself is running slowly, it's purely a result of user interaction. While the print dialogue is displayed, the

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Steven Sacks
Well, there IS a workaround but you have to hack your swf using flasm and set the timeout to some larger number. This really is not recommended and most people use this to actually decrease the timeout delay, not increase it (because they're simultaneously increasing the recursion depth).

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Lee McColl-Sylvester
It's not a bug, its poor programming by Macromedia... Fact is, the Flash Player should put the PrintJob process into a separate thread, but it doesn't... My guess is that Macromedia doesn't want to use any more than a single thread in a single Flash Player instance ;-) Lee -Original

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Steven Sacks
I would suggest that it is: there's no error in the code, and it's not that the Flash movie itself is running slowly, it's purely a result of user interaction. While the print dialogue is displayed, the Flash movie should simply not be running. PrintJob makes a synchronous call to

Re: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Steve Webster
On 29 Mar 2006, at 12:07, Steven Sacks wrote: I would suggest that it is: there's no error in the code, and it's not that the Flash movie itself is running slowly, it's purely a result of user interaction. While the print dialogue is displayed, the Flash movie should simply not be running.

Re: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Danny Kodicek
I would suggest that it is: there's no error in the code, and it's not that the Flash movie itself is running slowly, it's purely a result of user interaction. While the print dialogue is displayed, the Flash movie should simply not be running. PrintJob makes a synchronous call to the OS.

[Flashcoders] If not Zinc, then what?

2006-03-29 Thread Kenneth Kawamoto
Or it`s better run away from them and develop the tool using C# or something like that? I use Flash for creating apps delivered through web. I use Director for creating locally deployed app. I create some serious apps such as credit card processing touchscreen running 24/7, and Director does

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread André Goliath
No need to use flasm here, the SLI Injector will do the same since it´s nothing more than a Tag in the SWF File. http://www.buraks.com/swfsli/ hth -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent: Wednesday, March 29, 2006 1:05 PM To:

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Lee McColl-Sylvester
Either way, the fact is theres not much to be done... And no Flash Player update will help, because most users will still have the buggy version. Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Danny Kodicek Sent: 29 March 2006 12:26 To:

RE: [Flashcoders] If not Zinc, then what?

2006-03-29 Thread André Goliath
I´m using an SWF Studio App 24/7 here at work (kind of XML news ticker/reader) and it works just fine. Regarding the whole discussion, I would recommend SWF Studio. It is realy stable and the developers are allways fast with their responds. They even did a custom implementation of a feature set

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread
PrintJob works fine in simplistic Flash movies. Try and do anything advanced (such as a stock exchange trading system) and it will cause the alert to appear. That ain't an error with my code! --- On Wed 03/29, Steven Sacks [EMAIL PROTECTED] wrote: From: Steven Sacks [mailto: [EMAIL

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread
Fab, thanks, I'll give it a try. --- On Wed 03/29, =?iso-8859-1?Q?Andr=E9_Goliath?= [EMAIL PROTECTED] wrote: From: =?iso-8859-1?Q?Andr=E9_Goliath?= [mailto: [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Date: Wed, 29 Mar 2006 13:28:18 +0200 Subject: RE: [Flashcoders] PrintJob

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Steven Sacks
And for the record, I am certainly no friend of the PrintJob class. It's poorly written and I've pointed out its numerous flaws in previous posts to this list. Yes, it shouldn't have been coded to work the way it does. The way it works is poorly thought out. But, that doesn't mean that it's a

RE: [Flashcoders] If not Zinc, then what?

2006-03-29 Thread Lee McColl-Sylvester
Have you used Zinc? How do you compare the two? Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of André Goliath Sent: 29 March 2006 12:46 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] If not Zinc, then what? I´m using an SWF Studio App

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Steven Sacks
PrintJob works fine in simplistic Flash movies. Try and do anything advanced (such as a stock exchange trading system) and it will cause the alert to appear. That ain't an error with my code! Ah ha! So now we get to the bottom of it. PrintJob does not cause Flash to alert about a slow

[Flashcoders] If not Zinc, then what?

2006-03-29 Thread Kenneth Kawamoto
I´m using an SWF Studio App 24/7 here at work (kind of XML news ticker/reader) and it works just fine. Hi André, Does your app have heavy user interaction? Does it have multimedia (audio and video)? Does it have multiple SWF modules rather than just one SWF? Is it full-screen app? If so and

Re: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Danny Kodicek
And for the record, I am certainly no friend of the PrintJob class. It's poorly written and I've pointed out its numerous flaws in previous posts to this list. Yes, it shouldn't have been coded to work the way it does. The way it works is poorly thought out. But, that doesn't mean that

RE: [Flashcoders] If not Zinc, then what?

2006-03-29 Thread Lee McColl-Sylvester
I use Flash with a C# backend for a kiosk system. It enables me to provide card scanning, coin mech, note reader, printer and database support. This system is run 24/7 and the only issues I get is to do with my C# coding relative to the odd network glitch... Other than that, it stands up to

Re: [Flashcoders] Flasc - simple question

2006-03-29 Thread Webdevotion
When using this code in my Test class I see a textfield on the stage, but my graphical assets ( some squares ) have dissapeared ... I'm still gettin the error.text message though class Test { static var app : Test; function Test() { // creates a 'tf' TextField size 800x600 at pos 0,0

Re: [Flashcoders] + simbol issue help

2006-03-29 Thread Ian Thomas
My guess (and it is only a guess) is that Flash is treating the contents of LoadVars like a url-encoded string. e.g. thing1=Something+something+elsething2=Another+thing Which would mean that it probably replaces your '+' symbol with a space. I'd try urlencoding your vars before you output them

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Lee McColl-Sylvester
Remember, though, that should an unforeseen cercumstance occur in your application that will otherwise throw an error will likely hang the users machine with no typical way for the user to escape except to crash the application completely... Most users don't like that too much :-P Lee

RE: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Lee McColl-Sylvester
Wow, I really should break my sentences up with comma's and fullstops. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lee McColl-Sylvester Sent: 29 March 2006 15:22 To: Flashcoders mailing list Subject: RE: [Flashcoders] PrintJob causes Abort Script

[Flashcoders] Help!

2006-03-29 Thread Flash Mel
My emails aren't getting through to the list! Whats up?!?! fM ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf

Re: [Flashcoders] + simbol issue help

2006-03-29 Thread Alfredo Laguia
yes! server.URLencode that´s the perfect solution rigth now thx a lot Ian and people! - Original Message - From: Ian Thomas [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 29, 2006 4:34 PM Subject: Re: [Flashcoders] + simbol

Re: [Flashcoders] Flasc - simple question

2006-03-29 Thread Webdevotion
great : ) uncheck the header did the trick for me : ) now on to more complicated projects I guess ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] PrintJob

2006-03-29 Thread Mike Mountain
Not tried it but a painless way to get around some printing wierdness may be to copy the bitmapdat of the thing you want to print out, paste it into an MC offstage then print that? M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lee

Re: [Flashcoders] Flasc - simple question

2006-03-29 Thread John Grden
Excellent, glad that worked for ya! PS I just posted version 1.7 late last night with a fix to the import as well as some other fixes. Get it, install it, have a good day with it ;) On 3/29/06, Webdevotion [EMAIL PROTECTED] wrote: great : ) uncheck the header did the trick for me : ) now

Re: [Flashcoders] nextFrame(), gotoAndStop(), play(), they are different?

2006-03-29 Thread elibol
My guess is that your swf file is probably cached in firefox, while you may have tried disabling caching in both browsers, firefox, erratically, for lack of a better analysis, caches and reloads swf files. The reason I think this is the problem is because gotoAndStop and nextFrame do not begin

Re: [Flashcoders] Displaying objects

2006-03-29 Thread John Grden
This will give you what you're looking for: var cols:Number = 3; var rows:Number = 3; for(var i:Number=0;irows;i++) { for(var j:Number=0;jcols;j++) { var gridLocation:Number = (i+j) + ((rows-1)*i); trace(grid location = + gridLocation); // create your

[Flashcoders] sIFR

2006-03-29 Thread Aaron Smith
has anyone made or found a flash 8 replacement sIFR??? by sIFR i mean flash replacement... for text... http://www.mikeindustries.com/sifr/ smith ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Displaying objects

2006-03-29 Thread John Grden
also, i released this in the red5 repository - it's a GridManager class that you can use to draw a grid (literally or not) and gives you methods like: 1. calcGridLocation() - based on where you mouse is over the grid, you get back a zero based grid number. So if i you have a 3x3 grid, you might

[Flashcoders] Displaying objects

2006-03-29 Thread Flash Mel
Ok, since my email got through this morning, I'm hoping this one gets through. Here is the question I've emailed four times now. Doesn't show up in the threads. Here we go: Here is what I have so far: import mx.transitions.Tween; import mx.transitions.easing.*; m = 0; numTiles = 112;

Re: [Flashcoders] Displaying objects

2006-03-29 Thread Flash Mel
Thanks John, This is great! When I trace this, it works. I've applied it to my code, and I think I have added something wrong. What happens is that all the elements just build in a single area. Here is what I had in the previous code: http://www.apt11.com/test/test.html Essentially, I need 0

Re: [Flashcoders] Displaying objects

2006-03-29 Thread John Grden
well, if you're using my code, then it would essentially build all pieces the way you show it happening in that link. to do it diagonaly the way you specify, there's 2 ways: 1. come up with an algorithm to calculate that type of movement based on the number of rows/cols you have (ouch) 2.

Re: [Flashcoders] Displaying objects

2006-03-29 Thread John Grden
Sorry, code correction - LOL, on code that's not been tested ... for(var i:Number=0;ipieceList.length;i++) { for(var j:Number=0;jpieceList[i].pieces.length;j++) { this[piece_ + pieceList[i].pieces[j]]._visible = true; } } On 3/29/06, John Grden [EMAIL PROTECTED] wrote:

[Flashcoders] Flowing Text in Flash

2006-03-29 Thread Chris Hill
I've searched a lot on google and the list and haven't found much, so maybe I'm missing something obvious again. Basically I need to fill a text field, and when that text field is full, i should start filling the next one. My current idea is: Break the text into space delimited tokens. Keep

Re: [Flashcoders] Testing LocalConnection from a server in the IDE

2006-03-29 Thread Rajat Paharia
Hi Mani - Have you prefixed your localConnectionID with an underscore? Try _id as opposed to id. The other gotcha is just to make sure there aren't two instances of the receiving swf running (as often is the case when using one of the SWF2EXE tools), since one will capture all the messages and

[Flashcoders] Controlling Accordion using ActionScript

2006-03-29 Thread Mike Anderson
Hello All, I literally read ALL the posts in the Archives regarding the Accordion component, and there was no mention of what I need. It seems as if the Accordion is only setup to broadcast certain events, when the Accordion itself is actually clicked on. My goal is to remotely control my

Re: [Flashcoders] Testing LocalConnection from a server in the IDE

2006-03-29 Thread Alan Queen
forgive me if this is implied, but there's always been alot of misunderstanding about LocalConnection.. LocalConnection is not used to send messages from one machine to another. It's meant to send messages between 2 or more swf files on the same machine whether in browser or .exe again, don't

Re: [Flashcoders] sIFR

2006-03-29 Thread David Rorex
On 3/29/06, Aaron Smith [EMAIL PROTECTED] wrote: has anyone made or found a flash 8 replacement sIFR??? by sIFR i mean flash replacement... for text... http://www.mikeindustries.com/sifr/ can't you just publish the sifr font swf to flash 8? -David R

Re: [Flashcoders] sIFR

2006-03-29 Thread Yotam Laufer
I'm really curious as to why you might need a thing like that. Yotam. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf

[Flashcoders] Recommendation on good AS 2.0 framework code?

2006-03-29 Thread Boon Chew
Hi all, I am looking for some well-written framework code done in AS2.0 to read up on (Reading source is good for ya). Does anyone have any recommendation on any well-written AS2.0 framework out there? - boon - Yahoo! Messenger with Voice. Make

Re: [Flashcoders] Testing LocalConnection from a server in the IDE

2006-03-29 Thread Manuel Saint-Victor
Alan- They're both on the same machine but thanks for clearing that up either way. I was thinking that I could test a file sitting on the server using a local swf file and the local connection. I tried putting the domain permission etc but to no avail. Finally I resolved to just placing the

Re: [Flashcoders] Recommendation on good AS 2.0 framework code?

2006-03-29 Thread Johannes Nel
arp and cairnorm i suppose. and yes reading is good for you, looking at your name it seems william gibson is your choice. On 3/29/06, Boon Chew [EMAIL PROTECTED] wrote: Hi all, I am looking for some well-written framework code done in AS2.0 to read up on (Reading source is good for ya). Does

RE: [Flashcoders] Controlling Accordion using ActionScript

2006-03-29 Thread Peter DeHaan
Mike, You can use either accordionInstance.getChildAt(index) to get an child at a specific index, or accordionInstance.selectedChild to get the currently selected child. Both methods should return a reference to a movie clip within the accordion.

RE: [Flashcoders] Controlling Accordion using ActionScript

2006-03-29 Thread Mike Anderson
Sorry guys, I am totally brain dead today - It's so weird, how you get accustom to specific syntax for some V2 controls, and when working with a different one, you expect some type of consistency - and you get so focused looking for something, that you flat out overlook the answer. Sorry to

[Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Count Schemula
http://www.flash-creations.com/notes/servercomm_remoting_amfphp.php I have the above file working well on a local test server. Flash 8, amfphp, mySQL. Then I try to make this file work on my hosted sever: http://www.thelargeglass.com/highscores2/index.html The file works when I do a Test Movie

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Aaron Smith
sounds like your trying to connect to your localhost amfphp gateway from the web version.. change your gateway to point to the gateway on your site. (IE, you should have one amfphp install on local( thats the one thats working ) then one in www.thelargeglass.com/ flashremoting/ you want

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Count Schemula
I have an amfphp install on both? When I play it locally, seems like it connects remotely ok: ConnectString: http://www.thelargeglass.com/amfphp/gateway.php; DebugId: 0 EventType: Connect MovieUrl: file:///C|/Documents and Settings/Dual Core/My

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Aaron Smith
is your endpoint set correctly? : var _service:Service = new Service(gatewayUrl, null, 'Highscores', null , null); if Highscores.php is in a highscores or gamesfolder of some sort in the services folder in amfphp. you need to reference it like: var _service:Service = new

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Count Schemula
Nope. Everything is nice and clean. It's a near virgin install. Do you get the localhost call in the status bar as well? It's super simple, it just seems like something about moving the file online wrecks it. The very same .swf file pulls up the data if I play it from my computer Test Movie

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Grant Cox
Make sure you have a crossdomain.xml file in the root of your server, otherwise the security model in Flash will refuse connections to that server. The simplest version (allow all connections from any flash files) would be: ?xml version=1.0? !DOCTYPE cross-domain-policy SYSTEM

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Aaron Smith
you should only need that if you are connecting to one domain from another.. in Counts case everything is on the same domain I believe so that won't matter... On Mar 29, 2006, at 3:43 PM, Grant Cox wrote: Make sure you have a crossdomain.xml file in the root of your server, otherwise the

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Count Schemula
I just added a crossdomain.xml to the web root. No change. The very same .swf file can pull this data when I do Test Movie. The server is an online remote host, not my local computer and not the webserver that hosts the flash file, ie, it's on a different domain, no matter whether I access it

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Count Schemula
Actually, the db server is a wholly separate server? But the same .swf gets the remote db data when I do Test Movie. amfphp is on the remote server, and seems to test positive. http://www.thelargeglass.com/amfphp/gateway.php On 3/29/06, Aaron Smith [EMAIL PROTECTED] wrote: you should only need

RE: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Ettwein, Josh
Can you create a simple page that creates a new instance of your class and spits what would be sent to flash via amf to the screen instead to see if the class file is not barfing silently on the remote server? Could it be handling of whitespace in the class file - although I think this was fixed

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Count Schemula
Fixed. I could scream. The publish settings were publishing to a different folder. So, I was blinded by jumping between servers and the 3 hour time difference between me and where my sever is. So, does, http://www.thelargeglass.com/highscores2/index.html work for y'all? I'm excited, I'm a

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Count Schemula
I think the /browser folder doers this? example: http://www.thelargeglass.com/amfphp/browser/ Let's you test the basic service? On 3/29/06, Ettwein, Josh [EMAIL PROTECTED] wrote: Can you create a simple page that creates a new instance of your class and spits what would be sent to flash via

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Aaron Smith
no it wouldnt be whitespace.. one thing you could check for is php errors.. check the logs.. one quick way to check for php errors is to navigate to the Highscores.php file in the web browser.. go to http://www.5etdemi.com/blog/ this is patrick mineaults blog. he is lead dev on

RE: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Ettwein, Josh
Yes, you're right.. It does. My bad. Your stuff works for me now. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Count Schemula Sent: Wednesday, March 29, 2006 4:07 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] lil' help with amfphp...

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Count Schemula
sweet, got the monkeyman 666 from somebody. Awesome. I'm soo happy about this. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Aaron Smith
works i would still check out that cineqdemi.remoting library i posted.. (just a second ago) smith On Mar 29, 2006, at 4:05 PM, Count Schemula wrote: Fixed. I could scream. The publish settings were publishing to a different folder. So, I was blinded by jumping between servers and the

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Count Schemula
Got it fixed. I had an error in my Flash Publish settings. Thanks, it was very helpful to see the steps y'all would take. On 3/29/06, Aaron Smith [EMAIL PROTECTED] wrote: no it wouldnt be whitespace.. one thing you could check for is php errors.. check the logs.. one quick way to check for php

[Flashcoders] existing project to start using mtasc, an easier way?

2006-03-29 Thread thotskee
Flashcoders, I have an existing AS2 codebase that I think would benefit from using mtasc. The compile time is currently about 1 minute for the application. Not terrible, but not great either. The problems are: I am using includes which I have managed to get around using... but.. After

Re: [Flashcoders] Flowing Text in Flash

2006-03-29 Thread Chris Hill
Yeah, that's what I figured, but if I remember, getTextExtent is a Lingo call for Director? I'll try doing a line of tokens at a time, and see if I can improve the speed that way. Cheers C Michael Bedar wrote: I did the same thing a few years ago, and it worked fine. You may run into

Re: [Flashcoders] Flowing Text in Flash

2006-03-29 Thread Michael Bedar
Get text extent is a TextFormat method On Mar 29, 2006, at 7:19 PM, Chris Hill wrote: Yeah, that's what I figured, but if I remember, getTextExtent is a Lingo call for Director? I'll try doing a line of tokens at a time, and see if I can improve the speed that way. Cheers C Michael

Re: [Flashcoders] Flowing Text in Flash

2006-03-29 Thread Chris Hill
Ah, my bad! Very cool, never used that. Thanks a lot! C Michael Bedar wrote: Get text extent is a TextFormat method On Mar 29, 2006, at 7:19 PM, Chris Hill wrote: Yeah, that's what I figured, but if I remember, getTextExtent is a Lingo call for Director? I'll try doing a line of tokens

Re: [Flashcoders] Testing LocalConnection from a server in the IDE

2006-03-29 Thread Rajat Paharia
Mani - Read here forthwith and whereas the underscore is important: http://www.macromedia.com/support/flash/action_scripts/local_connection_objects/local_connection_object07.html best, - rajat On 3/29/06, Manuel Saint-Victor [EMAIL PROTECTED] wrote: Alan- They're both on the same machine but

Re: [Flashcoders] XML load pregress

2006-03-29 Thread Rodrigo Schramm
Thanks Jim Berkey wrote: This is probably what you are looking for: Live Docs: http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=1586.html - Original Message - From: Rodrigo Schramm [EMAIL PROTECTED] To:

Re: [Flashcoders] Recommendation on good AS 2.0 framework code?

2006-03-29 Thread Mike Britton
ARP: http://www.osflash.org/arp Cairngorn: http://www.macromedia.com/devnet/flex/articles/cairngorm_pt1_02.html William Gibson: http://en.wikipedia.org/wiki/William_Gibson_%28novelist%29 - respect! Mike ___ Flashcoders@chattyfig.figleaf.com To change

Re: [Flashcoders] Recommendation on good AS 2.0 framework code?

2006-03-29 Thread stacey
i'm getting into arp, but I would highly recommend looking up on jesse's site for his rendition of it, much more flexible. Its good if you are doing application based work, if not.. its too much. ARP: http://www.osflash.org/arp Cairngorn:

Re: [Flashcoders] DINAMIC MENU

2006-03-29 Thread stacey
make the textfield dynamic, make it multilined, wordwrap and make sure it can autosize. mytxt.autoSize='left'; (can also be true) Hi, I'm loading texts from a XML file to be assigned to different buttons, but this texts have different amout of characters, and I need the buttons to adjust

Re: [Flashcoders] PrintJob causes Abort Script error message.

2006-03-29 Thread Ron Wheeler
Steven Sacks wrote: Please warn us when you are going to do this, since from the tone of the conversation, there is some sense that this will cause the end of civilization as we know it. Hacking the swf to increase the timeout is not the solution, it's a band-aid on a gunshot wound.

[Flashcoders] yet another screwing from micrsoft

2006-03-29 Thread Andy Johnston
anyone care to comment on this little gem? http://www.eweek.com/article2/0,1895,1943847,00.asp looks bad to me, thats a lot of reauthoring ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] existing project to start using mtasc, an easier way?

2006-03-29 Thread David Rorex
On 3/29/06, thotskee [EMAIL PROTECTED] wrote: Flashcoders, I have an existing AS2 codebase that I think would benefit from using mtasc. The compile time is currently about 1 minute for the application. Not terrible, but not great either. The problems are: I am using includes which I

[Flashcoders] Tween and actionscript

2006-03-29 Thread Ryan Sabir
I have a movieclip animating across the stage using a tween in the timeline. Halfway through that tween I'm using AS to set the _alpha of the clip to 50%. At the moment I do this, if forgets about the tween in the timeline and stops moving. Why is this happenning? How do I tell Flash that I

Re: [Flashcoders] Tween and actionscript

2006-03-29 Thread Zeh Fernando
I have a movieclip animating across the stage using a tween in the timeline. Halfway through that tween I'm using AS to set the _alpha of the clip to 50%. At the moment I do this, if forgets about the tween in the timeline and stops moving. Why is this happenning? How do I tell Flash that I

Re: [Flashcoders] yet another screwing from micrsoft

2006-03-29 Thread Clint Modien
I'll wager microsoft is a wee bit more upset about the eolas patent than you are... Here is a workaround for it... http://www.flashinto.com/phpBB2/viewtopic.php?t=3215sid=a69d2b96fbe275f8ae573b0ad09600c0 On 3/29/06, Andy Johnston [EMAIL PROTECTED] wrote: anyone care to comment on this little

Re: [Flashcoders] Tween and actionscript

2006-03-29 Thread Michael Bedar
Or just add a keyframe in the middle and change the alpha On Mar 30, 2006, at 12:03 AM, Zeh Fernando wrote: I have a movieclip animating across the stage using a tween in the timeline. Halfway through that tween I'm using AS to set the _alpha of the clip to 50%. At the moment I do

Re: [Flashcoders] yet another screwing from micrsoft

2006-03-29 Thread Andy Johnston
I couldnt give a stuff about the lost lawsuit, 0.001% revenue loss for MS compared to all legacy flash sites that I will have to dig up log in details for and fix, much bigger impact for me personally than bill will fell personally I'll wager microsoft is a wee bit more upset about the

Re: [Flashcoders] Tween and actionscript

2006-03-29 Thread Gerry Creighton
Since I use Zeh's tweening methods I would have to agree with him, use actionscript to do the tweening and you'll be a happy developer from this day forth. It is a much cleaner way to control your movies. If you haven't done so to this point I would suggest reading through his site and get a

[Flashcoders] [ANNC] FlashAmp 3 Released

2006-03-29 Thread Mark Martin
Marmalade Multimedia is pleased to announce the release of FlashAmp 3 for Windows and Macintosh. FlashAmp is the sound-visualization utility for Macromedia Flash 8 and MX2004. Use FlashAmp 3 to quickly and easily synchronize sound in Flash... - Create perfectly synchronized audio animations