RE: [Flashcoders] Flash Player 9.0.16 and Huge SWFs

2006-07-20 Thread The Helmsman
Actually you can use images greater then 2880 pixels in width. I've made some scroller once that used image more then 3600 pixels in width. And it worked good, but later for some optimization reason and to be on the safe side it was re-written and divided to parts :) Besides this Matthew wrote it

RE: [Flashcoders] How to embed metadata in SWF files?

2006-07-20 Thread The Helmsman
If you are loading one movie to another use following technique: Main movie Main movie variable defined: Var testVar:String = Hello world; External movie loaded to level 1: External movie variable defined: Var testVar:String = Hello world - external; Now let's load external

Re: [Flashcoders] ActionScript Application Framework

2006-07-20 Thread James Deakin
I started this thread for a simple reason, love or loath Ruby what has been developed here has enabled several of my clients to deploy excellent web applications with a significantly reduced investment of time with no aparent compromise on functionality. I think thats great. I wish the same

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Julien Vignali
Check the Flash docs... It's explained ;-) mcRoundedRect.scale9Grid = new Rectangle(x1, y1, x2, y2); Marcos Neves a écrit : How can I use programaticlly scale9grid to don´t deform a roundRect when scaled? I´know how it works at design time on flash.

Re: [Flashcoders] ActionScript Application Framework

2006-07-20 Thread Nicolas Cannasse
I am looking at ARP and Carngorm at the moment and they are not proving easy to use and I am a highly experienced AS developer. I have also started looking at Flex. . . Did you have a look at haXe ? http://haxe.org It has builtin remoting for communicating with Flash. The idea is that you

Re: [Flashcoders] ActionScript Application Framework

2006-07-20 Thread James Deakin
Have you ever built anything in haXe? If so how did you find the experience? On 7/20/06, Nicolas Cannasse [EMAIL PROTECTED] wrote: I am looking at ARP and Carngorm at the moment and they are not proving easy to use and I am a highly experienced AS developer. I have also started looking at

Re: [Flashcoders] ActionScript Application Framework

2006-07-20 Thread Nicolas Cannasse
Have you ever built anything in haXe? If so how did you find the experience? Disclaimer : I'm the haXe author I have been building several websites and flash games with haXe and its predecessor (our in-house language MotionTypes). The less I can say is that using it has been tremendously

Re: [Flashcoders] as3: weird package problem

2006-07-20 Thread Meinte van't Kruis
Thanks for replying, sounds like a pretty good hack to me, thanks! -Meinte On 7/19/06, John Giotta [EMAIL PROTECTED] wrote: Hey Meinte, What I've just done is set the file and path then just lowercased the drive letter. Windows C: drive - SET ASFILE=%~dp0TestClass.as SET

[FlashCoders] Memory builds up

2006-07-20 Thread Dimitrios Bendilas
Hello, I have a few very simple lines of code on _root, frame 1 (it's the only frame in the main timeline): -- var ballID:Number = 0; _root.onEnterFrame = createBall; function createBall():Void { var mc:MovieClip = _root.attachMovie(ball, ball + ballID, 100 +

Re: [FlashCoders] Memory builds up

2006-07-20 Thread Hans Wichman
Hi, how about if you leaving it running for longer? The memory might go up, but should go down once in a while when the garbage collection kicks in. Minimizing the window might trigger it. I tried your example, but i see no alarming memory build up. greetz Hans On 7/20/06, Dimitrios Bendilas

RE: [FlashCoders] Memory builds up

2006-07-20 Thread Bernard Visscher
I tried your example, but i see no alarming memory build up. I can confirm this, no speedy memory increase, only 500kb in about 5 min. Bernard On 7/20/06, Dimitrios Bendilas [EMAIL PROTECTED] wrote: Hello, I have a few very simple lines of code on _root, frame 1 (it's the only frame

Re: [Flashcoders] ActionScript Application Framework

2006-07-20 Thread James Deakin
I see. I will have a good look at haXe as well. I like the idea but am a bit worried about the amount of time I would have to invest to gain enough understanding to build an application. How long would you imagin it might take to for me to get started? On 7/20/06, Nicolas Cannasse [EMAIL

[Flashcoders] slide a movieclip with photo(loaded by xml)

2006-07-20 Thread Jose Maria Barros
Hello. Im doing a test loading from xml information to load into one movie clip one photo and having a number menu. When i press one of those numbers a function subAppear makes the movieclip slide from the top. Wht i dont understand is that he loads the photo, but the function doesnt work..i

Re: [Flashcoders] ActionScript Application Framework

2006-07-20 Thread Nicolas Cannasse
I see. I will have a good look at haXe as well. I like the idea but am a bit worried about the amount of time I would have to invest to gain enough understanding to build an application. How long would you imagin it might take to for me to get started? Very quickly, especially if you have

Re: [Flashcoders] slide a movieclip with photo(loaded by xml)

2006-07-20 Thread Adrian Park
When 'this.link' loads into imagem_mc, any existing properties and methods of imagem_mc are destroyed because 'this.link' replaces imagem_mc. Immediately after loading the MovieClip, you call subAppear which assigns the onEnterFrame handler. This handler is destroyed when the MovieClip loads so

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Marcos Neves
No so clearly Julien, if(I create a rectangle with exact the same size of my sprite, it throw me that error. I bust make it at least 1 pixel small. It´s not on the docs :\ On 7/20/06, Julien Vignali [EMAIL PROTECTED] wrote: Check the Flash docs... It's explained ;-) mcRoundedRect.scale9Grid =

[Flashcoders] flv stops playing after undefined numbers of seconds (through firewall)

2006-07-20 Thread Hans Wichman
Hi list, i have an flv that plays from behind a firewall. Tested locally the flv plays great (from a personal edition of the fcs), however from the external fcs through the firewall, the first few seconds seem to come through and then i get a (dump from the log): onStatus called: (191883 ms)

Re: Re: [Flashcoders] scale9grid how to

2006-07-20 Thread eric dolecki
Marcos, If you made the rectangle the same size as your sprite - there would be no scale9 to speak of. It has to be smaller than the mc. You know how it works from implementing it in the IDE, so you know that there must be outside area that is left untouched, the interior does the scaling. -

RE: [Flashcoders] scale9grid how to

2006-07-20 Thread Merrill, Jason
If it gets too messy, you can also roll your own scale 9 function for graphics - that's what I did since I'm building for Flash 7. It's pretty easy actually. Jason Merrill Bank of America Learning Organization Effectiveness - Technology Solutions -Original Message- From:

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Marcos Neves
And how it can be done? On 7/20/06, Merrill, Jason [EMAIL PROTECTED] wrote: If it gets too messy, you can also roll your own scale 9 function for graphics - that's what I did since I'm building for Flash 7. It's pretty easy actually. Jason Merrill Bank of America Learning Organization

Re: Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Marcos Neves
Does any body can tell me what´s wrong with this code? The problem is that the scale9grid is not doing his job. The bt.swf embed has size of 100x22. But the trace at the end ignores it´s size. Why? Where scale9grid should be applied to work? I try many sprites but none work. package {

Re: Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Marcos Neves
This is the bt.swf http://neves.bs2.com.br/as3/bt.swf As you can imagine, I´m trying to scale only inside the black wire rectangle using the scale9grid. On 7/20/06, Marcos Neves [EMAIL PROTECTED] wrote: Does any body can tell me what´s wrong with this code? The problem is that the scale9grid is

RE: [Flashcoders] scale9grid how to

2006-07-20 Thread Merrill, Jason
Well, what I did is make 9 parts to my graphic, topLeft_mc topCenter_mc topRight_mc centerLeft_mc center_mc etc. Then, put those in a movieClip with the respective instance names. Then pass that clip to a scale function, also pass width and height parameters. Then in the function, do some

Re: [Flashcoders] flv stops playing after undefined numbers of seconds (through firewall)

2006-07-20 Thread John Giotta
Are you stopping the Video after the NetStream.Play.Stop status code is fired? I ask because in most cases NetStream.Play.Stop will actually fire before actual playback is done. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

Re: [FlashCoders] Memory builds up

2006-07-20 Thread Dimitrios Bendilas
Hm, You are right. Well, it went up from 6.8 to 10 to me as I said but it doesn't go further up. And it decreases from time to time. Ok thanks guys, I feel much better now. I was like what the heck?! Thanks :) Dimitrios - Original Message - From: Bernard Visscher [EMAIL

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Marcos Neves
I used that two. You call the scale9 function when? How do you know when it need to be updated? On 7/20/06, Merrill, Jason [EMAIL PROTECTED] wrote: Well, what I did is make 9 parts to my graphic, topLeft_mc topCenter_mc topRight_mc centerLeft_mc center_mc etc. Then, put those in a movieClip

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Marcos Neves
Should someone give an example of how to use scale9grid in flash authoring? I bitmap fill a rectangle with a checker pattern. The corners should have no deformation, but it´s having. On 7/20/06, Marcos Neves [EMAIL PROTECTED] wrote: I used that two. You call the scale9 function when? How do you

Re: [Flashcoders] flv stops playing after undefined numbers of seconds (through firewall)

2006-07-20 Thread Hans Wichman
Hi, no i'm not, i processed the flv's with a metadata injector and inspect the time and duration flags in the video. greetz Hans On 7/20/06, John Giotta [EMAIL PROTECTED] wrote: Are you stopping the Video after the NetStream.Play.Stop status code is fired? I ask because in most cases

Re: Re: [Flashcoders] scale9grid how to

2006-07-20 Thread eric dolecki
Make your rectangle a mc. In the Library, right-click on the mc, choose properties should be a checkbox @ bottom to enable scale9 you should see dashed rules appear in mc preview in Library 2x click into, drag the rules around to set up your scale9 On 7/20/06, Marcos Neves [EMAIL PROTECTED]

RE: [Flashcoders] scale9grid how to

2006-07-20 Thread Merrill, Jason
I used that two. You call the scale9 function when? I call it when I want the graphic to scale - that was just an excerpt from a class I wrote, you would want to add paramters like X,Y,height,Width of the graphic, and the name of the scale9 movie clip in the library. How do you know when it

[Flashcoders] flash color shift

2006-07-20 Thread i_bang
hi! anyone know how can i keep the quality of a image with a photoshop profile in flash? now when i import the jpg file into flash the color of the image changes a lot, it´s more lighter than the original, what can i do?? thanks a lot!! ___

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Marcos Neves
You call scale inside the X,Y,height,Width assessors, right? On 7/20/06, Merrill, Jason [EMAIL PROTECTED] wrote: I used that two. You call the scale9 function when? I call it when I want the graphic to scale - that was just an excerpt from a class I wrote, you would want to add paramters like

RE: [Flashcoders] flash color shift

2006-07-20 Thread Merrill, Jason
No Actionscript in your question, this should probably be on the Flashnewbie list, but Are you sure there is no compression going on from Photoshop? If I remember, .jpgs exported from Photoshop or Fireworks have about 80% compression by default. Make sure your settings for the .jpg are

[Flashcoders] Form Help Needed, Please

2006-07-20 Thread Loren R. Elks
Hi: I've got a form that just does not send. Can someone please look at my code? I placed the FLA, SWF, HTML and ASP files in a zip located at: www.d-mag.org/testform/sent_out.zip Could you also email reply back to me directly as well? [EMAIL PROTECTED] Thank you, Loren

RE: [Flashcoders] scale9grid how to

2006-07-20 Thread Merrill, Jason
No. All my example was, was a custom function that emulates a scale9 like how it works in Flash 8. It just positions and scales 9 graphics - that's all. Jason Merrill Bank of America Learning Organization Effectiveness - Technology Solutions -Original Message- From:

Re: [Flashcoders] How to embed metadata in SWF files?

2006-07-20 Thread Max
I'm pretty sure Flash 9 has built in metadata capabilities, although I've never used them and I'm not aware of any way to access them from Actionscript code. Here's some of the arguments you can use with mxmlc. -metadata.contributor name -metadata.creator name -metadata.date text

RE: [Flashcoders] flash color shift

2006-07-20 Thread Geoffrey Holland
Probably saving out of photoshop in CMYK, need RGB, CMYK will look right in ps, but changes colors bringing into the RGB Flash world. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of i_bang Sent: Thursday, July 20, 2006 9:03 AM To:

[Flashcoders] Accessing Vertices of Geometries

2006-07-20 Thread Matthew Ganz
hi. i have a component that allows me to draw geometric shapes on it; rectangle, polygon, line, etc... the coordinates of each shape are stored in an array and passed back to javascript. i have a new requirement whereby i need to allow the user to select the vertices of each shape and move

Re: [Flashcoders] flash color shift

2006-07-20 Thread Éric Thibault
Import your psd! You can keep your layers too. A+ Geoffrey Holland a écrit : Probably saving out of photoshop in CMYK, need RGB, CMYK will look right in ps, but changes colors bringing into the RGB Flash world. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Julien Vignali
Marco, If I remember well, you must publish your fla in order to test your scale9 grid. You can't preview the results within the flash editor and the scale9 guides (the 4 black dashed lines) are just visual helpers. But, you can easily apply a scale9 grid to any movieclip at runtime, even

Re: [Flashcoders] flash color shift

2006-07-20 Thread Adrian Park
Under View Proof Setup, choose 'Monitor RGB' - this will give you a better representation fo what the image will look like in browsers and Flash. Colour correct the image to look as you want then save out your jpg ready for import into Flash. Now, back to ActionScript... :) HTH Adrian On

RE: [Flashcoders] flash color shift

2006-07-20 Thread Simon Renshaw
If the PS document is defiantly RGB, check the embedded colour profile, probably set to adobe 1998, use the convert to profile command to change it to SRGB before you export to Flash, you may notice some slight changes after the conversion, if so re-colour as necessary, save out again with the new

RE: [Flashcoders] Re: BitmapData.draw() peculiarity

2006-07-20 Thread jim
Im interested, do you have a quick example of this. Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John VanHorn Sent: 19 July 2006 15:29 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Re: BitmapData.draw() peculiarity ok, luckily a

Re: [Flashcoders] flash color shift

2006-07-20 Thread i_bang
thanks a lot Adrian !!! good solution! it works!! Under View Proof Setup, choose 'Monitor RGB' - this will give you a better representation fo what the image will look like in browsers and Flash. Colour correct the image to look as you want then save out your jpg ready for import into

[Flashcoders] popoulating FLV files with metaData from encoder

2006-07-20 Thread sam rolfe
Hey, anyone knkow how to get the metaData into the flv through the encoder, seems to be blank ? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Re: BitmapData.draw() peculiarity

2006-07-20 Thread John VanHorn
sure... say you have a movie clip named contentMc, with the reg point in the center. that would mean that the upper left most content within that movie clip would have a negative _x and _y, say -50,-50. if you use: bmpObject.draw(contentMc), it will only draw a bitmap starting at 0,0so you

Re: [Flashcoders] popoulating FLV files with metaData from encoder

2006-07-20 Thread Hans Wichman
Hi, yes, type: metaData into the flv in google and its the first hit:) greetz Hans On 7/20/06, sam rolfe [EMAIL PROTECTED] wrote: Hey, anyone knkow how to get the metaData into the flv through the encoder, seems to be blank ? ___

Re: [Flashcoders] popoulating FLV files with metaData from encoder

2006-07-20 Thread Marc Hoffman
I've had no trouble retrieving metaData from flv's that were created using the encoder. What are you trying to do? - Marc At 09:46 AM 7/20/2006, you wrote: Hey, anyone knkow how to get the metaData into the flv through the encoder, seems to be blank ?

Re: [Flashcoders] slide a movieclip with photo(loaded by xml)

2006-07-20 Thread Jose Maria Barros
Something like this? because it doesnt work...it remains the problem... //create an instance of MovieClipLoader var myMCL = new MovieClipLoader(); myMCL.onLoadInit = function (targetMC) { subAppear(targetMC, (i+3), 95); } function createTreeMenu():Void { for (i=0; imainMenus.length;

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Marcos Neves
Thanks Julien, Your example open my mind. Now I know that scale9grid is not powerfull as I thought. Here some conclusions that I found based on some tests: It doesn´t work with bitmap You can´t have movieClip inside it, only shapes. Nested MC with 9grid doesn´t work. The gradient fill or bitmap

RE: [Flashcoders] scale9grid how to

2006-07-20 Thread Tom Lee
I'm curious how you originally intended to use 9-slice scaling - the uses I would have for 9-slice would be interface component backgrounds and so forth, for which it would be far from useless. If you tell us what you're trying to do, perhaps we can suggest an alternate approach? -Original

RE: [Flashcoders] ActionScript Application Framework

2006-07-20 Thread Steven Sacks | BLITZ
James, Rails and Flex work very well together. Maybe you should consider following that career path - a Flex/Rails developer. Jesse Warden has gone that way and loves it. http://www.recentrambles.com/pragmatic/view/31 BLITZ | Steven Sacks - 310-551-0200 x209

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Marcos Neves
I´m using for interface components too. I import a png button and align the guides to my needs. But it doesn´t work. I found an ugly workaround for this. Textfields and movieClips inside would be good too. On 7/20/06, Tom Lee [EMAIL PROTECTED] wrote: I'm curious how you originally intended to

RE: [Flashcoders] Accessing Vertices of Geometries

2006-07-20 Thread Tom Lee
What version of the Flash Player are you targeting? The basic idea would be to put a button at each vertex, use startDrag and stopDrag to enable drag-drop on those buttons, and redraw the shape on mouseMove during drag actions, getting the new coordinates from the button locations. The specifics

RE: [Flashcoders] scale9grid how to

2006-07-20 Thread Tom Lee
If you must use a bitmap, you might look into the Splice9 JSFL extension at http://www.brajeshwar.com/downloads/jsfl/splice9/. This extension is an author-time solution to the problem. If possible, however, I would suggest converting your PNGs to vectors. With the filters now available in

[Flashcoders] Speed up Datagrids

2006-07-20 Thread Doug Coning
I've created an RIA application that depends heavily upon the Enhanced Datagrid. I like the datagrid quite a bit, however, each time a window opens, it can take upwards of 10 seconds for the datagrid to instantiate, and this is testing with small bits of data (Nothing more than 40 records). I

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Marcos Neves
I found some workarounds at design time. But i´m still can´t use [Embed] to include my vector or bitmap and use it as scale9grid. Perhaps there´s some implications that I can´t see, to Macromedia didn´t implement that. Some unique effects can be achieved by 9-slicing multiple movieclips and then

Re: [Flashcoders] ActionScript Application Framework

2006-07-20 Thread Ujjwal Kabra
After nearly two years of working in ActionScript, my company decided that Flash development was too painful and just not worth the effort. This happened just about the time that I was actually getting the hang of things. In any case, I was the last Flash(AS2) Developer left here... I'm in full

[Flashcoders] modify sample rate in MP3 header?

2006-07-20 Thread Marc Hoffman
I've been using Flash to play back bird songs from amy website. By generating some MP3's at half or quarter speed (with commensurate drop in pitch) I can demonstrate some fascinating detail in bird songs that's otherwise missed by the human ear. Now if I could just modify the MP3 headers

Re: [Flashcoders] ActionScript Application Framework

2006-07-20 Thread jcanistrum
and where does your company decided to move for ? 2006/7/20, Ujjwal Kabra [EMAIL PROTECTED]: After nearly two years of working in ActionScript, my company decided that Flash development was too painful and just not worth the effort. This happened just about the time that I was actually

Re: [Flashcoders] slide a movieclip with photo(loaded by xml)

2006-07-20 Thread Adrian Park
I'm thinking more like this (using your most recent code as a starting point)... //create an instance of MovieClipLoader var myMCL = new MovieClipLoader(); // register this as a listener myMCL.addListener(this); // define function to handle onLoadInit event function onLoadInit(

[Flashcoders] Flash and SSL/HTTP Basic Authentication

2006-07-20 Thread Matthew Ganz
hi. i'm looking to learn more about how well flash plays with SSL and HTTP Basic Authentication. my understanding is that the flash player doesn't implement SSL and that all certificate verification is determined by the browser. but browsers may handle that differently. can anyone share

Re: [Flashcoders] Flash and SSL/HTTP Basic Authentication

2006-07-20 Thread Rifled Cloaca
With SSL, you need to use POST to send info, since Flash uses the browser's POST transport for it, so the browser handles the encryption. If you're using PHP and Sessions, you need to set your session_cache_limiter in your PHP.INI (or using ini_set) from none to public or private, or nothing

RE: [Flashcoders] Flash and SSL/HTTP Basic Authentication

2006-07-20 Thread Tom Lee
I've had good luck with SSL and HTTP Basic across all platforms. As you say, it is handled by the browser. I have run into problems using Flash's WebService components over secure connections when testing within the IDE. If you're testing on a web server, you should be fine. -tom -Original

[Flashcoders] Bar Codes

2006-07-20 Thread Dan Wade
Hello, Does anybody have experience with generating barcodes. From what I've read it's as easy as embedding a barcode font and voila. But I can't match up to the example I have from the client. Any help or direction appreciated. Thanks, -d ___

Re: [Flashcoders] Bar Codes

2006-07-20 Thread August Gresens
If you are building a web application, I've used Java based (servlet) software that will return a JPEG image from a GET request this was from http://www.idautomation.com. I'm sure there are PHP versions of the same thing. I'm not sure how you would generate this in a standalone Flash app. Hope

[Flashcoders] system security

2006-07-20 Thread Laurent CUCHET
Hi http://www.laurentcuchet.fr I got a serious problem with flash player 9 and security I got 2 level 1. _level0 with a textfield ³titre² 2. _level1 with a textfield egal of the level 0 ³titre² IN LOCAL IT READ IN ExTERNAL IT DOESNT WORK ... An idea ? Thank you

RE: [Flashcoders] modify sample rate in MP3 header?

2006-07-20 Thread Bernard Visscher
I don't believe it's possible like that. MP3 doesn't store samplerate in the headers it's all over the place. Just test with a simple mp3, delete the first mb with a texteditor now it will play the remaining mp3 with the correct sample rate. Bernard -Oorspronkelijk bericht- Van:

RE: [Flashcoders] Radiobutton groupName issue *URGENT*

2006-07-20 Thread Alberto Florentin
Hey, I just worked with radiobutton group for first time (at least for 2 years). Had some problems on how to access the radioGroup object itself. Finally used var radiogroup = eval(myradioButton.groupName) and then added to it the event listener. Problem is, to make it work I had to include the

Re: [Flashcoders] Radiobutton groupName issue *URGENT*

2006-07-20 Thread eric dolecki
yup - seems like a scoping issue... if all the radiobutton mcw were nested in a larger, single mc, they could all register with the radiobutton groupname that is defined in that single mc. in theory. e.d. On 7/20/06, Alberto Florentin [EMAIL PROTECTED] wrote: Hey, I just worked with

Re: [Flashcoders] Radiobutton groupName issue *URGENT*

2006-07-20 Thread Mike Boutin
Thanks for all the posts. Yes this is what i ended up doing, i just figured there might be a way around it.. thanks again! Mike eric dolecki wrote: yup - seems like a scoping issue... if all the radiobutton mcw were nested in a larger, single mc, they could all register with the radiobutton

[Flashcoders] Yahoo Maps: Detecting latitude and longitude of mouse over map

2006-07-20 Thread Dave Wood
Hi I'm trying to detect the latitude and longitude of the cursor as the user moves their mouse around a map. Should be straightforward I thought - if I use LatLonRect data and then calculate based on _xmouse and _ymouse data and the height and width of the movieClip containing the map, I

Re: [Flashcoders] Yahoo Maps: Detecting latitude and longitude of mouse over map

2006-07-20 Thread Dave Wood
The actual dimensions of the movieClip (and also the map) are 400 X 300 pixels. Sorry, that was a typo - they are actually 500 X 400 pixels. David ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Yahoo Maps: Detecting latitude and longitude of mouse over map

2006-07-20 Thread David Rorex
When flash calculates _width and _height, it also includes things inside the movieclip which may be invisible, or masked out. Try this simple example: On the stage, create an empty movie clip A which contains two square movieclips B and C, which are placed next to each other This code will

[Flashcoders] Customised date chooser

2006-07-20 Thread Haikal Saadh
Hi, Has anyone extended the DateChooser component so that it's easy to jump across years as well as months? Also, any tips/gotchas would be nice as well, if you've played with this. I just thought I'd ask before I went and did it myself. Thanks in advance.

[Flashcoders] Re: Flashcoders Digest, Vol 18, Issue 55

2006-07-20 Thread kim
Thank you for your email. I will be out of the office Friday, 7/21. If you need any assistance, please contact Paul Sternglass at [EMAIL PROTECTED] or 914-614-0046. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

[Flashcoders] Can I assign a Class to the main timeline?

2006-07-20 Thread JulianG
Hello guys: I'm new to the list. I've been using Flash for several years now, and I'm coding in AS2 since last year. I can create Classes with no problems. I usually extend my classes and other original Flash classes. I usually extend the MovieClip class and assign the class to a Symbol in

Re: [Flashcoders] Yahoo Maps: Detecting latitude and longitude of mouse over map

2006-07-20 Thread Dave Wood
Hi David When flash calculates _width and _height, it also includes things inside the movieclip which may be invisible, or masked out. Good thought, but no, the movieclip contains nothing beyond the area covered by the map instance. Note that it wsan't just the clip containing the map the

Re: [Flashcoders] Can I assign a Class to the main timeline?

2006-07-20 Thread Weyert de Boer
You might want to try this, below the contructor of the Application-class. This will be come the class associated with the main class. Seems to work for me. /** * Constructor * * @paramtimelineThe timeline */ public function Application( target ) {

[Flashcoders] MySpace to boost Player 9 adoption rate

2006-07-20 Thread Josh Santangelo
MySpace.com is now requiring Flash Player 9 in order to view the site. http://www.tiara.org/blog/?p=222 Awesome. Watch that adoption rate shoot right up. -josh ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

Re: [Flashcoders] Can I assign a Class to the main timeline?

2006-07-20 Thread Patrick Matte
Nice trick. But this seems to work as well but simpler. class com.Application{ public function Application( target ) { target.__proto__ = __proto__; this = com.Application( target ); } } - Original Message - From: Weyert de Boer [EMAIL PROTECTED] To: Flashcoders mailing list

Re: [Flashcoders] scale9grid how to

2006-07-20 Thread Charles Parcell
Here are my thoughts. Based on the image you passed on in one of your previous postings, it looks like you are building a drop down list component. I would assume that you wanted slice9 so you could scale the component in the X direction for longer strings. Is this a correct assumption? You