Re: [Flashcoders] Flash-based audio editor?

2006-09-28 Thread Ray Chuan
Hi, found the source and demo: http://blog.benstucki.net/?id=18 It's a flex component. On 9/29/06, Ray Chuan <[EMAIL PROTECTED]> wrote: Hi, if i remember at an Apollo demo the Adobe people had a waveform display for sound, by Andre Michell. http://www.digitalbackcountry.com/images/blog/apol

Re: [Flashcoders] Flash-based audio editor?

2006-09-28 Thread Ray Chuan
Hi, if i remember at an Apollo demo the Adobe people had a waveform display for sound, by Andre Michell. http://www.digitalbackcountry.com/images/blog/apollo/apollo_tunes_viz_big.jpg See the time 23:08 for http://seminars.adobe.acrobat.com/p65594978/ On 9/29/06, Wolfgang Borgon <[EMAIL PROTECT

Re: [Flashcoders] RE: Flashcoders Digest, Vol 20, Issue 80

2006-09-28 Thread Ray Chuan
Hi, sorry about that. On 9/29/06, Ettwein, Josh <[EMAIL PROTECTED]> wrote: Ray, While you're correct that flashpaper can create pdfs OR swfs, if you read my original post, I'm not only solely interested in creating SWFs, I'm more specifically in need of the ability to create an swf FROM a bytes

Re: [Flashcoders] PDF2SWF - or other means to convert bytestream PDF to SWF??

2006-09-28 Thread Ray Chuan
Hi, yeah. But Josh said that files are ok. For example, when you watch a YouTube video in Firefox, the data is downloaded into your cache but you can't open it because there's a file lock. Similarly, if a pdf file is created (with PIs and everything), as long as you have a file lock no one else

Re: [Flashcoders] tracing function calls

2006-09-28 Thread Ray Chuan
Hi, try this: function wrapper(obj:Object, prop:String):Void { var f:Function = Function(obj[prop]); obj[prop] = function() { trace("{function: prop args: "+arguments+"}"); return f.apply(obj, arguments); } } Let's say you want to "wrap" around the function Kite.fly: wrapper(Kite, "fl

Re: [Flashcoders] Implicit setters and exceptions in AS2.0

2006-09-28 Thread Johannes Nel
exceptions in async functions cause all sorts of conundrums at times. make certain you have a strategy for handling that use case On 9/28/06, David Bellerive <[EMAIL PROTECTED]> wrote: Last week, I sent a message to the FlashCoders list asking if validating the values passed to setter methods (

[Flashcoders] Implicit setters and exceptions in AS2.0

2006-09-28 Thread David Bellerive
Last week, I sent a message to the FlashCoders list asking if validating the values passed to setter methods (in custom classes) was a good practice. After reading on how exceptions work in Java, here's the solution I've decided to use in my setter methods in AS2.0. If the client (the programmer

[Flashcoders] Screensaver software?

2006-09-28 Thread Reuben Stanton
Does anyone know reliable good cross-platform software for creating screensavers from flash? I need the following: - Support for flash 8 / AS2 - Ability to check for net connection and download files to the local machine - Robust installer/uninstaller (needs to install across a network) - Go

Re: [Flashcoders] Controlling a swf loaded into a movieclip

2006-09-28 Thread Reuben Stanton
I have always used MovieClipLoader for this and it seems to work fine - OnLoadInit() will run after the first frame has initialised. On 29/09/2006, at 12:24 PM, Muzak wrote: Are you using MovieClipLoader.onLoadInit()? Muzak - Original Message - From: "Glen Pike" <[EMAIL PROTECTED]>

Re: [Flashcoders] log or sin or what?

2006-09-28 Thread Muzak
Or you can get them straight from the source: http://www.robertpenner.com/easing/ Muzak - Original Message - From: "Glen Pike" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, September 29, 2006 1:47 AM Subject: Re: [Flashcoders] log or sin or what? > EaseInOutQuad is

Re: [Flashcoders] Controlling a swf loaded into a movieclip

2006-09-28 Thread Muzak
Are you using MovieClipLoader.onLoadInit()? Muzak - Original Message - From: "Glen Pike" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, September 28, 2006 11:40 PM Subject: Re: [Flashcoders] Controlling a swf loaded into a movieclip > Hi, > I have been doing some

Re: [Flashcoders] Saluti alla ML

2006-09-28 Thread JulianG
Salve Daniele: Penso che il tuo sia stato il primo messaggio in italiano in questa lista. benvenuto! JulianG Daniele La Delfa wrote: Salve a tutti, mi sono appena iscritto! Volevo giusto salutare tutta la lista... A presto, Daniele ___ Flashco

Re: [Flashcoders] Saluti alla ML

2006-09-28 Thread JulianG
very accurate translation Marcelo, where are you from? JulianG Marcelo Wolfgang wrote: It's Italian a rough translation : Hi everybody I've just subscribed Just want to say hello to all in the list but,well I don't speak Italian, never did any course either, so maybe it's all the opposite of

Re: [Flashcoders] Dynamic TextField Problem

2006-09-28 Thread vic
Haha, got it...stupid...I passed I passed it height and width and created the textField with those switched around...got it working now...Thanks for the help, hope nobody spent any amount of time on it. Victor -- Original Message -- From: "vic " <[EMAIL

[Flashcoders] Dynamic TextField Problem

2006-09-28 Thread vic
Hey all, I have this function that dynamically creates a text field...if I tell it to make wordWrap = true then the text disappears. Here is the func: // Public Methods: public static function createHTMLText(mcParent:MovieClip, sInstanceName:String, nX:Number, nY:Number, nHeight:Number,

Re: [Flashcoders] log or sin or what?

2006-09-28 Thread Glen Pike
EaseInOutQuad is one of Robert Penners tweening algorithms. It looks like it does one thing for half the tween then flips it after the halfway point. If you download the Fuse Engine, you get Robert Penners Tweening classes with it then you can play the tweens or alternatively just use the eq

Re: [Flashcoders] log or sin or what?

2006-09-28 Thread ben farrell
You're looking for sin. Cosine (cos) will do about the same thing, but it starts where your example ends - but both have the same shape when left to go forever. The only hitch is that you want to look at the sin of angles 0 -180, but when you use sin or cosine, you need to convert to radians to

Re: [Flashcoders] log or sin or what?

2006-09-28 Thread Arse @ Snepo
cos(0-Math.PI) Arse http://www.snepo.com http://depot.snepo.com http://www.arseiam.com Mike Keesey wrote: According the the name, it should be some kind of a quadratic equation (ax^2 + bx + c = 0). You could get something looking a lot like this with the sine or cosine functions, though. ― Mi

RE: [Flashcoders] log or sin or what?

2006-09-28 Thread Mike Keesey
According the the name, it should be some kind of a quadratic equation (ax^2 + bx + c = 0). You could get something looking a lot like this with the sine or cosine functions, though. ― Mike Keesey > -Original Message- > From: [EMAIL PROTECTED] [mailto:flashcoders- > [EMAIL PROTECTED] On B

[Flashcoders] log or sin or what?

2006-09-28 Thread til
Does anyone know what formula yields a curve that looks sorta like this? http://hosted.zeh.com.br/mctween/examples/tracer.swf?mode=easeinoutquad ~Til ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http:

RE: [Flashcoders] Controlling a swf loaded into a movieclip

2006-09-28 Thread Steven Sacks | BLITZ
I use something along these lines: fCount = 0; this.onEnterFrame = function() { fCount++; if (fCount > 0) { delete this.onEnterFrame; callMethodsOnTargetClip(); } } ;) ___ Flashcoders@chattyfig.fi

Re: [Flashcoders] Controlling a swf loaded into a movieclip

2006-09-28 Thread Glen Pike
Thanks for that. Is my workaround a standard thing or a dodgy hack?? Steven Sacks | BLITZ wrote: but I have found that loaded clips seem to take a few milliseconds to actually initialise properly so that I can actually call my own methods on them What you're describing is clips need one

RE: [Flashcoders] Controlling a swf loaded into a movieclip

2006-09-28 Thread Steven Sacks | BLITZ
> but I have found that > loaded clips seem to take a few milliseconds to actually initialise > properly so that I can actually call my own methods on them What you're describing is clips need one frame to draw before you can call their methods (though you can set properties before the frame pass

Re: [Flashcoders] Controlling a swf loaded into a movieclip

2006-09-28 Thread Glen Pike
Hi, I have been doing something similar with a site that I am building. There is a "shell" application that loads up various swfs into a holder clip. The application needs to be able to talk to these loaded clips and do stuff to them. The way I have worked it is to load up a SWF which

RE: [Flashcoders] >> Check Problem

2006-09-28 Thread vic
I guess I failed to mention that my solution does not use components, not a big fan of them. Hey Steven, it was cool talking with you and Ivan yesterday. I am almost done with a pretty big AS2 App. This stuff is getting easier and easier. I will be up to speed SOON. TTYL, Victor

Re: [Flashcoders] >> Check Problem

2006-09-28 Thread vic
I did this by making a radio button MC with two frames bith with stop actions. When it is clicked I tell it to gotoAndStop(2) (frame 2) and tell the other radion button to gotoAndStop(1), therefore when you click one it becomes checked and the other becomes unchecked. There may be a more elega

RE: [Flashcoders] >> Check Problem

2006-09-28 Thread Steven Sacks | BLITZ
Why are you making checkboxes behave like radio buttons? Use radio buttons for single select and checkboxes for multi select. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/m

[Flashcoders] >> Check Problem

2006-09-28 Thread Laurent CUCHET
There is 2 checkbox, cb1 and cb2 Is it possible to make one selected and the other unselcted like radiobutton ? How can I do ? Thank s a lot //1 function checkbox_1(evt1:Object) { if (evt1.checkbox.selected) { typ_txt.text = "choice1"; } } cb1.addEventListener("click", checkbox_

RE: [Flashcoders] Controlling a swf loaded into a movieclip

2006-09-28 Thread Merrill, Jason
How are you showing and hiding it? _visible or moving it elsewhere, or destroying the movie clip that holds it and re-loading again? Jason Merrill Bank of America Learning & Organization Effectiveness - Technology Solutions >>-Original Message- >>From: [EMAIL PROTECTED] [ma

Re: [Flashcoders] Controlling a swf loaded into a movieclip

2006-09-28 Thread Kjel Anderson
That is what I am having a hard time figuring that out. I am using a mask to show/hide the loaded movie. I can hide it, but when I show it again, there is nothing there. I can't really figure out what is going on. My goal is to be able to reference the properties and methods of the application c

Re: [Flashcoders] A button-like MC with TextField on it - my_txt.text disappears

2006-09-28 Thread Alexander Farber
Thank you for your comments Julien and Helen. I'll try it out (it always takes me some time, because I do Flash on evenings only, when the kid shuts up ;-) The invisible layer to prevent button-flipping makes sense too, I'll add it. Also I think there is a 3rd method - to use a variable bound t

[Flashcoders] Changing the cursor in an input TextField

2006-09-28 Thread Josh Johnston
So here's one I cannot figure out. Is it possible to change the cursor in a TextField?I need a square rather than the default verticle line and I have no idea if it can even be done. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam pro

RE: [Flashcoders] Controlling a swf loaded into a movieclip

2006-09-28 Thread Merrill, Jason
What in the loaded .swf are you trying to pause? It's root timeline? If so, it would just be theLoadedSwfInstance.stop(); Jason Merrill Bank of America Learning & Organization Effectiveness - Technology Solutions >>-Original Message- >>From: [EMAIL PROTECTED] [mailto:flashc

RE: [Flashcoders] Using XRay

2006-09-28 Thread Alain Rousseau
Try this link, It has everything you need to know about XRay, including where to download ! Enjoy ! http://www.osflash.org/xray A -Original Message- From: slangeberg [mailto:[EMAIL PROTECTED] Sent: 28 septembre 2006 14:09 To: Flashcoders mailing list; [EMAIL PROTECTED] Subject: [Flas

[Flashcoders] Controlling a swf loaded into a movieclip

2006-09-28 Thread Kjel Anderson
Hey everyone, I have an application that was developed in 100% actionscript (without the ide) and I am now trying to control it from within an application that I built in the IDE. I would very much like to be able to "pause" this swf, but I can't seem to figure out how to do it. Any ideas? Tha

Re: [Flashcoders] Flash-based audio editor?

2006-09-28 Thread Wolfgang Borgon
Danny, Right, it might not have been clear, but it needs to work through the browser. My functional requirements aren't too extreme -- some sort of waveform display would be nice, but as far as export goes I suppose it could send a list of times to an external command-line audio editor. Not sure

Re: [Flashcoders] Script for IE

2006-09-28 Thread vic
I use this method. Unzip the attached JS file and put it into a scripts directory in your root. HTML Usage: var agt=navigator.userAgent.toLowerCase(); var so =

RE: [Flashcoders] Script for IE

2006-09-28 Thread David Brunswick
http://www.adobe.com/devnet/flash/articles/swfobject_02.html David Brunswick Multimedia Developer/OLP Administrator FedEx Customer Information Services Customer Service Organizational Learning 901-434-6605 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

[Flashcoders] Script for IE

2006-09-28 Thread Batista Mihai
Hello! Can anyone help me with a script: i want the swf to be enabled when the viewers open the swf in internet explorer so they don’t have to “click to activate”. Thank you! Mike - Get your email and more, right on the new Yahoo.com ___

[Flashcoders] OT - programmer needed full-time to code for Pocket PC executable, etc.

2006-09-28 Thread Jeff Gomes
Pacific Media in Orange County, California is looking for an expert flash programmer to come on board and help develop, among other things, sophisticated software to deploy on the Pocket PC operating system. Please contact us off-list: Jeff Gomes <[EMAIL PROTECTED]> Rob Schrader <[EMAIL PROT

Re: [Flashcoders] Using XRay

2006-09-28 Thread John Grden
all downloads: http://www.osflash.org/xray#downloads Latest interface: http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/interface/Flex/Xray.zip?format=raw Connector: http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/xray_conn_1.6.1.mxp?format=raw Just double

[Flashcoders] How to export as swf from an application

2006-09-28 Thread Varadarajan manickam
Hi ,I want to create a windows application which will export a swf, based on user parameter selection.I want use existing swf as template for export from the applicationsetting variable for the template done in  windows application.How can i go about this?What language should i use(C++ or Jave o

Re: [Flashcoders] Saluti alla ML

2006-09-28 Thread Marcelo de Moraes Serpa
One here... :) On 9/28/06, Gustavo Teider - Adobe Flash Developer <[EMAIL PROTECTED]> wrote: How much brazilians guys exists here ? =D -- Gustavo Teider ( gugateider ) Adobe Flash Developer www.gugateider.com Curitiba - PR Marcelo Wolfgang escreveu: > It's Italian > > a rough translation :

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread Francis Turmel
I wrote my solution to this a couple weeks ago (never got any answers if it worked for the person who asked though). take a look here: http://chattyfig.figleaf.com/pipermail/flashcoders/2006-August/170985.html It seems that the first use of a text height in actionscript can be unreliable but fro

[Flashcoders] Using XRay

2006-09-28 Thread slangeberg
I've seen lots of people posting about XRay lately, but I haven't had luck with it, yet. I do have the executable running, but I don't have the Connector to the Flash IDE. Can anyone post a link to download that? I have not been able to find it! : : ) Scott __

Re: [Flashcoders] Saluti alla ML

2006-09-28 Thread Gustavo Teider - Adobe Flash Developer
How much brazilians guys exists here ? =D -- Gustavo Teider ( gugateider ) Adobe Flash Developer www.gugateider.com Curitiba - PR Marcelo Wolfgang escreveu: It's Italian a rough translation : Hi everybody I've just subscribed Just want to say hello to all in the list but,well I don't s

Re: [Flashcoders] Text field with two lines and on second linecharacter !

2006-09-28 Thread Jim Duber
Hi Christophe, Huh?!? (or, "Huh ?!?") Live and learnSorry all for the OT. Jim Date: Thu, 28 Sep 2006 19:10:50 +0200 From: Christophe Herreman <[EMAIL PROTECTED]> Subject: Re: [Flashcoders] Text field with two lines and on second linecharacter ! To: Flashcoders mailing list Mes

Re: [Flashcoders] Saluti alla ML

2006-09-28 Thread Marcelo Wolfgang
It's Italian a rough translation : Hi everybody I've just subscribed Just want to say hello to all in the list but,well I don't speak Italian, never did any course either, so maybe it's all the opposite of what I've translated On 9/28/06, Marcelo de Moraes Serpa <[EMAIL PROTECTED]> wrote: It

Re: [Flashcoders] Saluti alla ML

2006-09-28 Thread Marcelo de Moraes Serpa
It's definetly itallian. Can't speak it though :P On 9/28/06, vic <[EMAIL PROTECTED]> wrote: I parol Italiano un po ma non molto bene. e non lo so questa lista parlano italiano. Ma, come stai? Victor Haha, I hope she was speaking Italian, and for that matter I hope I was too. LOL ---

Re: [Flashcoders] Array problem

2006-09-28 Thread eric dolecki
sorry - i had an off by one error... On 9/28/06, Merrill, Jason <[EMAIL PROTECTED]> wrote: Check your references to other variables and index values, the way you have it is by-the-book correct: var foo:Array = new Array(); foo[0] = {typ:"A", label:"foobar"}; foo[0].typ = "B"; trace(foo[0].typ)

RE: [Flashcoders] Array problem

2006-09-28 Thread Pete Miller
If someIndex != 0 then you have to foo[someIndex] = new Object(); foo[someIndex].typ = "B"; P. >> -Original Message- >> From: [EMAIL PROTECTED] [mailto:flashcoders- >> [EMAIL PROTECTED] On Behalf Of eric dolecki >> Sent: Thursday, September 28, 2006 1:26 PM >> To: Flashcoders mailing l

[Flashcoders] Array problem [SOLVED]

2006-09-28 Thread eric dolecki
Sorry for the noise, I had an off by one error (using a indx value greater by one of the array index)... - e. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listi

RE: [Flashcoders] Array problem

2006-09-28 Thread Merrill, Jason
Check your references to other variables and index values, the way you have it is by-the-book correct: var foo:Array = new Array(); foo[0] = {typ:"A", label:"foobar"}; foo[0].typ = "B"; trace(foo[0].typ) //traces "B" Jason Merrill Bank of America Learning & Organization Effectiveness - Technolog

Re: [Flashcoders] Saluti alla ML

2006-09-28 Thread vic
I parol Italiano un po ma non molto bene. e non lo so questa lista parlano italiano. Ma, come stai? Victor Haha, I hope she was speaking Italian, and for that matter I hope I was too. LOL -- Original Message -- From: "Daniele La Delfa" <[EMAIL PROTE

[Flashcoders] Array problem

2006-09-28 Thread eric dolecki
I have an array of objects like this: var foo:Array = new Array(); foo[0] = {typ:"A", label:"foobar"}; and some time later, I'd like to change the value of typ like so: foo[someIndex].typ = "B"; However thats not working, the value isn't being set. I think I am missing something pretty simple

[Flashcoders] Saluti alla ML

2006-09-28 Thread Daniele La Delfa
Salve a tutti, mi sono appena iscritto! Volevo giusto salutare tutta la lista... A presto, Daniele ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoder

Re: [Flashcoders] Text field with two lines and on second linecharacter !

2006-09-28 Thread Christophe Herreman
Hi Jim, I'm not completely sure of that. We received the following link from a university professor: http://www.dsi.univ-paris5.fr/typo.html The part about punctuation marks (in French): Espaces en usage avant et après les signes de ponctuation * Point et virgule sont suivis d'un blanc.

RE: [Flashcoders] Event bubbling in Flash like in Flex

2006-09-28 Thread Merrill, Jason
>>By the way, are you a moderator for this list? No, why do you ask? Or if that were sarcasm, write me offlist and explain the reason for it. Jason Merrill Bank of America Learning & Organization Effectiveness - Technology Solutions >>-Original Message- >>From: [EMAIL PROTEC

Re: [Flashcoders] (Taboo) What to charge

2006-09-28 Thread Kevin Newman
Aaron, Thanks for the reply, and for the link. I did read that other thread that you mentioned, but while there was a lot of discussion around the various issues that can affect pricing, and rates, there were not a lot of specific examples. So I thought I would post some finished "flash apps"

RE: [Flashcoders] Event bubbling in Flash like in Flex

2006-09-28 Thread Merrill, Jason
>>but this is as2. Some people have no sense of humor. Jason Merrill Bank of America Learning & Organization Effectiveness - Technology Solutions >>-Original Message- >>From: [EMAIL PROTECTED] [mailto:flashcoders- >>[EMAIL PROTECTED] On Behalf Of Johannes Nel >>Sent: Thursday

RE: [Flashcoders] Text field with two lines and on second linecharacter !

2006-09-28 Thread Jim Duber
Greetings all, For the record, in standard French, punctuation marks (like "!" and "?" and ":") are most certainly *not* preceded by a space. Regards, Jim Date: Thu, 28 Sep 2006 11:55:32 +0200 From: "Lieven Cardoen" <[EMAIL PROTECTED]> Subject: RE: [Flashcoders] Text field with two lines a

RE: [Flashcoders] Event bubbling in Flash like in Flex

2006-09-28 Thread Van De Velde Hans
It's because event bubbling is so great in Flex 2, that I started looking for a slick solution in ActionScript 2... By the way, are you a moderator for this list? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: donderdag 28 september

[Flashcoders] >> Checkbox Unslected

2006-09-28 Thread Laurent CUCHET
There is 2 checkbox, cb1 and cb2 Is it possible to make one selected and the other unselcted like radiobutton ? How can I do ? Thank s a lot //1 function checkbox_1(evt1:Object) { if (evt1.checkbox.selected) { typ_txt.text = "choice1"; } } cb1.addEventListener("click", checkbox_

Re: [Flashcoders] Event bubbling in Flash like in Flex

2006-09-28 Thread Johannes Nel
but this is as2. On 9/28/06, Merrill, Jason <[EMAIL PROTECTED]> wrote: >>I've updated the sample with the static function initializeBubbling >>in a separate class & all is well ! Actionscript 3.0 will have event bubbling. Just FYI, not to burst your bubble. Jason Merrill Bank of America Lear

Re: [Flashcoders] Event bubbling in Flash like in Flex

2006-09-28 Thread eka
Hello :) you can use my event model implementation in my AS2 / SSAS openSource : project : http://osflash.org/vegas svn : http://svn1.cvsdude.com/osflash/vegas/ example : http://svn1.cvsdude.com/osflash/vegas/AS2/trunk/bin/test/vegas/events/ (EventDispatcher 12 - BubblingEvent.fla

RE: [Flashcoders] Event bubbling in Flash like in Flex

2006-09-28 Thread Merrill, Jason
>>I've updated the sample with the static function initializeBubbling >>in a separate class & all is well ! Actionscript 3.0 will have event bubbling. Just FYI, not to burst your bubble. Jason Merrill Bank of America Learning & Organization Effectiveness - Technology Solutions __

Re: [Flashcoders] Save Bitmapdata as JPG with Java

2006-09-28 Thread Muzak
Tried google? http://www.google.com/search?hl=nl&q=save+Bitmapdata+java&meta= - Original Message - From: "Nehal Gandhi" <[EMAIL PROTECTED]> To: Sent: Thursday, September 28, 2006 4:01 PM Subject: [Flashcoders] Save Bitmapdata as JPG with Java > hey, > I have read sometime back, some

RE: [Flashcoders] Event bubbling in Flash like in Flex

2006-09-28 Thread Van De Velde Hans
Great, thanks! I've updated the sample with the static function initializeBubbling in a separate class & all is well ! (sample : http://www.novio.be/downloads/showReel/showReel.zip) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Nel Sent: dond

[Flashcoders] AS2 Application Tutorials

2006-09-28 Thread vic
Hey all, I am trying to get up to speed fast on Pure AS2 application/website coding. I found a really cool application tutorial on lynda.com; does anyone know of any others that are good? Thanks, Victor ___ Flashcoders@chattyfig.figleaf.com To change

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread vic
Haha, I would seriously take that bet. You have to listen to what he is saying, xray will trip you out; not only can you control anything in your swf at runtime but you can also view all of its properties. I am new to it so i don't know all it can do but I KNOW it can help you with _height.

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread Rich Rodecker
nothing quite like someone popping into the list and throwing around profanity and attitude. On 9/28/06, Lieven Cardoen <[EMAIL PROTECTED]> wrote: Why? Ps : sorry for the profanity. (hope the word 'why?' is permitted) -Original Message- From: [EMAIL PROTECTED] [mailto: [EMAIL PROTEC

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread John Grden
sure it does (xray) - it has a logger too and it includes a timestamp (which trace does not) - so, I would say it's actually a bit stronger of a tool for timing issues ;) I got $20 that says he figures out the problem in under 10 minutes with xray. :) On 9/28/06, Brian Williams <[EMAIL PROTECTE

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread Brian Williams
A trap I often fall into when debugging flash is missing the obvious. Take for example, If I put movieclip._y = 60 , it works fine If I put movieclip._y = textField._height , it doesn't work fine and then trace(textField._height) prints 60, yes. then my question would be - did you tra

[Flashcoders] RE: Flashcoders Digest, Vol 20, Issue 80

2006-09-28 Thread Ettwein, Josh
Ray, While you're correct that flashpaper can create pdfs OR swfs, if you read my original post, I'm not only solely interested in creating SWFs, I'm more specifically in need of the ability to create an swf FROM a bytestream pdf, as Jason was correct in saying. The workflow is like this: SQL Ser

RE: [Flashcoders] Attach sound problem

2006-09-28 Thread Andy Stone
I've used... var thesong = new Sound (this) ...it works when "var thesong = new Sound ()" doesn't. -Andy ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo

Re: [Flashcoders] Event bubbling in Flash like in Flex

2006-09-28 Thread Johannes Nel
personally i use a different mechanism, but this one by ralf bokelberg is good http://www.helpqlodhelp.com/blog/archives/000144.html On 9/28/06, Van De Velde Hans <[EMAIL PROTECTED]> wrote: Hi list, a question that's in my mind since for a little while now : how can you get event bubbling (cf

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread julien castelain
sorry for saying nonsense, it works var txt:TextField = createTextField("txt", getNetxHighestDepth(), 0, 0, 0, 0); txt.autoSize = true; txt.text = "FLASH is cool..."; trace(txt._height);// displays 19 txt._y = txt._height; // does work On 9/28/06, Lieven Cardoen <[EMAIL PROTECTED]> wrote:

[Flashcoders] Event bubbling in Flash like in Flex

2006-09-28 Thread Van De Velde Hans
Hi list, a question that's in my mind since for a little while now : how can you get event bubbling (cfr. Flex) in Flash? I have a menu with nested "bullet"-movieclips. A click on a bullet dispatches an event and my menu does not automatically forward that event to the listeners on the menu (sam

Re: [Flashcoders] Inheritance bug in AS2 & Flash 8

2006-09-28 Thread slangeberg
Sounds like the inheritance chain Theoretically, seems like when Class 3 & 4 don't implement the method, the line of execution goes up the chain until it is: Class 2. Scott On 9/28/06, Miguel Angel Sánchez <[EMAIL PROTECTED]> wrote: Save the example classes in a folder and look at the out

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread John Grden
Lieven, take 5 minutes and put xray in and mess with it at runtime, I'll bet you $20 you'll figure it out in less time than we've already spent on the list and your time prior to sending out the email ;) On 9/28/06, Lieven Cardoen <[EMAIL PROTECTED]> wrote: Why? Ps : sorry for the profanity.

RE: [Flashcoders] PDF2SWF - or other means to convert bytestream PDF to SWF??

2006-09-28 Thread Merrill, Jason
>>"FlashPaper 2 allows anyone to convert printable files into Macromedia >>Flash documents or PDF files with one click." >> >>Note the usage of the conjunction "or". Yes, FILES. Not STREAMS. Maybe you could re-read his original post (or even the thread title) and then reply. :) Jason Merrill B

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread Lieven Cardoen
Why? Ps : sorry for the profanity. (hope the word 'why?' is permitted) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of julien castelain Sent: donderdag 28 september 2006 16:25 To: Flashcoders mailing list Subject: Re: [Flashcoders] movieclip._y = textFie

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread julien castelain
if textField.autoSize property is set, it wont work :) On 9/28/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Well we tried to help but I think we need more info. Give us more details...like the vers of player you are targeting, etc. I set the fla (the one I made available) to publish to FP6 &

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread gerry
Well we tried to help but I think we need more info. Give us more details...like the vers of player you are targeting, etc. I set the fla (the one I made available) to publish to FP6 & FP6 AS1 and adjusted the code so it wasn't stronly typed and it still works. Maybe you are over looking something

Re: [Flashcoders] PDF2SWF - or other means to convert bytestream PDF to SWF??

2006-09-28 Thread Ray Chuan
Hi, the site says: "FlashPaper 2 allows anyone to convert printable files into Macromedia Flash documents or PDF files with one click." Note the usage of the conjunction "or". On 9/28/06, Merrill, Jason <[EMAIL PROTECTED]> wrote: >>Hi, >>you might want to look at FlashPaper: I don't think Fl

[Flashcoders] Save Bitmapdata as JPG with Java

2006-09-28 Thread Nehal Gandhi
hey, I have read sometime back, some one saved Bitmapdata Image, to server using java (not PHP). I am looking for the same, any pointer? thanks in advance -Nehal ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the arc

[Flashcoders] Profanity - (to Lieven especially)

2006-09-28 Thread Merrill, Jason
>>Same s***. Could we keep the language on this list down a tad? That's the second time you've said that in your current thread today. Some of us are on large corporate networks that get monitored, and I don't really want that word associated in any way on any report with my e-mail activity. T

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread Lieven Cardoen
Yep. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: donderdag 28 september 2006 15:12 To: Flashcoders mailing list Subject: RE: [Flashcoders] movieclip._y = textField._height I assume that trace(textField._height) yields 60? > -

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread Lieven Cardoen
Look, I'm aware that normally it works, but in this case it doesn't work. I do things like this all the time, but apparently in this case Flash won't do it, it just won't do it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of André Goliath Sent: donderda

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread Lieven Cardoen
Strange thing is that I also tried using the height of the movieClip in which te textField is rendered. Same shit. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Grden Sent: donderdag 28 september 2006 15:43 To: Flashcoders mailing list Subject: Re:

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread André Goliath
Your fla works for me as long as you publish it to FP8/AS2 or remove the strict typing and publish it for AS1. tested the Flash 8 (without dot) version -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, September 28, 2006 3

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread John Grden
take a look at it at runtime with xray: www.osflash.org/xray 1. install the component 2. put it in your library/onstage 3. publish 4. open Xray's interface and take a snapshot ("go" button) and see what's going on jpg On 9/28/06, Lieven Cardoen <[EMAIL PROTECTED]> wrote: Instead of going

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread Alain Rousseau
Instead of using textField._height, you should use textField.textHeight. This is more reliable than the _height property A -Original Message- From: André Goliath [mailto:[EMAIL PROTECTED] Sent: 28 septembre 2006 09:33 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] movieclip._y

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread gerry
I put up this test fla...see if this helps. http://www.thespikeranch.com/test/testYpos.zip I'll leave that up today. Gerry > How about this? > > var test:Number = Math.round(parseFloat(textField._height)); > movieClip._y = test; > > ;) > > > strange, works for me obviously,... > > > -Origin

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread André Goliath
How about this? var test:Number = Math.round(parseFloat(textField._height)); movieClip._y = test; ;) strange, works for me obviously,... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lieven Cardoen Sent: Thursday, September 28, 2006 3:24 PM To: Flas

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread gerry
Maybe you are setting the mc's y position on the stage according to the textField's height...? Trace the mc's y position. Gerry > Really strange bug : > > > > If I put movieclip._y = 60 , it works fine > > > > If I put movieclip._y = textField._height , it doesn't work fine > > > > Lieven > >

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread Lieven Cardoen
Instead of going to y-coordinate 60, it goes to ZERO. Even if I like do this : Var test:Number = textField._height; movieClip._y = test; Still the same shit. Incredible. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Grden Sent: donderdag 28 sept

Re: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread John Grden
well, what DOES it do? On 9/28/06, Lieven Cardoen <[EMAIL PROTECTED]> wrote: Really strange bug : If I put movieclip._y = 60 , it works fine If I put movieclip._y = textField._height , it doesn't work fine Lieven ___ Flashcoders@chattyfi

RE: [Flashcoders] movieclip._y = textField._height

2006-09-28 Thread Mike Mountain
I assume that trace(textField._height) yields 60? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Lieven Cardoen > Sent: 28 September 2006 14:06 > To: Flashcoders mailing list > Subject: [Flashcoders] movieclip._y = textField._height > > Really

Re: [Flashcoders] Flash player standalone universal binary or alternative

2006-09-28 Thread Serge Jespers
Thanks for the replies guys... I was able to solve this with Screenweaver HX which makes universal binaries and uses the Firefox plugin and since that is officially released for the MacIntels, the application is now running great. Big thanks to Edwin Van Rijkom for helping me out with SWHX!

  1   2   >