[Flashcoders] Moving cursor to end of textfield

2007-03-19 Thread Birgit Ferran
I have a fill-in-the-gaps exercise and I have added a hint button which checks to see which part of the word a student has entered is correct and then adds the next (correct) letter to the end of the string. My problem is that the cursor stays just in front of the added letter instead of going

Re: [Flashcoders] How efficiently is the flash player

2007-03-19 Thread Paul Andrews
It's not really a question of how strong the flash player is, but how strong a developer you are. Plenty of people are doing amazing things with Flash/Flex. It's certainly up to your task. Paul - Original Message - From: dr.ache [EMAIL PROTECTED] To: Flashcoders mailing list

[Flashcoders] apollo is in macromedia labs

2007-03-19 Thread dan
Too bad its onely for Flex :) I need it for flash ___ 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 Software Premier

Re: [Flashcoders] Text blurry when behind a mask

2007-03-19 Thread Fredrik Delin
Hej Johan, It's hard to give straight advice when there could be so many factors messing it up for you Obvious question, but did you try forcing the text to whole pixels when moving it? I have also noticed that flash draws things differently when effects are used. Try putting a blur

RE: [Flashcoders] Super and this

2007-03-19 Thread Danny Kodicek
Just to make your life simpler. You do not instantiate a class; you instantiate an instance(object) of a class. Isn't that what 'instantiate' means? By 'instantiate' I mean 'make an instance of'. Danny ___ Flashcoders@chattyfig.figleaf.com To

Re: [Flashcoders] Super and this

2007-03-19 Thread Paul Andrews
- Original Message - From: Danny Kodicek [EMAIL PROTECTED] To: [EMAIL PROTECTED]; flashcoders@chattyfig.figleaf.com Sent: Monday, March 19, 2007 9:38 AM Subject: RE: [Flashcoders] Super and this Just to make your life simpler. You do not instantiate a class; you instantiate an

Re: [Flashcoders] 3D Text Flythrough

2007-03-19 Thread Stephen Matthews
Have a look at Sandy Google for Flash Sandy it's quite a big class. There is a blog with examples. You could use the distort image class if you want to just distort stuff bitmaps in fake 3D So you'd need - sandy.util.DistortImage; flash.display.BitmapData; ( Flash 8 ) On 14 Mar 2007,

[Flashcoders] Create an object by name

2007-03-19 Thread Danny Kodicek
If I have a string, how can I make an object from the class it represents? Eg: I have class MyBigClass the string className contains the text Big I want to do something like obj:Object = new(My + className + Class)() And on the subject: The docs say that when importing a package, only those

Re: [Flashcoders] Create an object by name

2007-03-19 Thread Paul Andrews
- Original Message - From: Danny Kodicek [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, March 19, 2007 10:08 AM Subject: [Flashcoders] Create an object by name If I have a string, how can I make an object from the class it represents? Eg: I have class

[Flashcoders] shared local object, or XML export? or other?

2007-03-19 Thread kent humphrey
For an upcoming project, I have to investigate whether to use a shared localobject for storing user data, or exporting XML. This is for a cd based app, not a website. A shared localobject would be my first choice, except that we want to be able to access the saved data from a second release of

Re: [Flashcoders] Create an object by name

2007-03-19 Thread Ian Thomas
Hello Danny, This short snippet should return you the constructor: /** Returns the class constructor from a dotted path. * e.g. [EMAIL PROTECTED] var cons:Function=getConstructorFromPath(com.pkg.fred.Bucket); } */ public static function

Re: [Flashcoders] shared local object, or XML export? or other?

2007-03-19 Thread Chris Tague
You could always use one of the flash wrappers that give you access to the filesystem, which would allow you to write files to the users drive, somehting like zinc. I think, although someone can confirm this that the shared object can be accessed by a second app if the name of the app is the

Re: [Flashcoders] shared local object, or XML export? or other?

2007-03-19 Thread Chris Tague
forgot the link to zinc.. http://www.multidmedia.com/ On 3/19/07, Chris Tague [EMAIL PROTECTED] wrote: You could always use one of the flash wrappers that give you access to the filesystem, which would allow you to write files to the users drive, somehting like zinc. I think, although

RE: [Flashcoders] Create an object by name

2007-03-19 Thread Danny Kodicek
Hello Danny, This short snippet should return you the constructor: /** Returns the class constructor from a dotted path. * e.g. [EMAIL PROTECTED] var cons:Function=getConstructorFromPath(com.pkg.fred.Bucket); } */ public static function

Re: [Flashcoders] Moving cursor to end of textfield

2007-03-19 Thread Dennis - I Sioux
Hey Birgit, I haven't read the code yet.. but sounds like a problem i had aswell.. i fixed it with an delay(onEnterframe) of a frame.. then it worked fine. Goodluck! With Kinds regards, Dennis - Original Message - From: Birgit Ferran [EMAIL PROTECTED] To:

Re: [Flashcoders] shared local object, or XML export? or other?

2007-03-19 Thread Ian Thomas
Hi Kent, The other way to export XML would be to use a SWF wrapper such as mProjector, SWFStudio or (open-source) SWHX: http://www.haxe.org/swhx. (Zinc is another alternative, but I can't recommend it - I've had all sorts of stability issues with it.) Alternatively, Apollo (from Adobe) will

RE: [Flashcoders] Super and this

2007-03-19 Thread Karina Steffens
Danny, I think what Ron means is, you don't instantiate the class _and_ the super class, as you would with Director. As you know (and for anyone that isn't familiar with it), in Director the ancestor property is an instance of the superclass, residing within an instance of the subclass (a bit

RE: [Flashcoders] shared local object, or XML export? or other?

2007-03-19 Thread Karina Steffens
I would definitely go with shared object. You can access it from whatever app you like if you pass a local path parameter, like this: so = SharedObject.getLocal (mySharedObject, /) so = SharedObject.getLocal (mySharedObject, /myProject) Etc... If you don't pass the path, it generates a local path

RE: [Flashcoders] Create an object by name

2007-03-19 Thread Danny Kodicek
If I have a string, how can I make an object from the class it represents? Eg: I have class MyBigClass the string className contains the text Big I want to do something like obj:Object = new(My + className + Class)() Paul: Might be interesting to know why you need to do this

[Flashcoders] Video directly in mail?

2007-03-19 Thread Dennis - I Sioux
Hey guys, We would like to send a video(stream) in a news e-mail to affiliates. Does anybody know if this is possible in mail? As far as i could see there weren't any active-x possibilities.. so FMS is probably not done? With kind regards, Dennis I Sioux B.V.

[Flashcoders] stopDrag question

2007-03-19 Thread Gustavo Duenas
Hi, I'm trying to stop the drag of a movie click when its x value equals the x value of other movie clip. The code is in the other object not in the drag-object. stop(); var movieClip1Pos: Number = this._x; var movieClip2Pos: Number = this._parent.MC2._x; ///here start the drag.

Re: [Flashcoders] Create an object by name

2007-03-19 Thread Ian Thomas
Hi Danny, An import statement is just a compiler-friendly shortcut. It has no effect whatsoever on the final code. Saying: import com.pkg.fred.Bucket; // later var bucket:Bucket=new Bucket(); is identical to saying just: var bucket:com.pkg.fred.Bucket=new com.pkg.fred.Bucket(); That's all

RE: [Flashcoders] Moving cursor to end of textfield

2007-03-19 Thread Danny Kodicek
A few suggestions: I have a fill-in-the-gaps exercise and I have added a hint button which checks to see which part of the word a student has entered is correct and then adds the next (correct) letter to the end of the string. My problem is that the cursor stays just in front of the

Re: [Flashcoders] Create an object by name

2007-03-19 Thread Paul Andrews
- Original Message - From: Danny Kodicek [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com I'm still not entirely sure what import actually *does* :) It tells flash where the class definitions can be found and distinguishes between classes of the same name, but different

RE: [Flashcoders] Create an object by name

2007-03-19 Thread Karina Steffens
Hi Danny, The idea of the import statement is to specify which class namespaces you want to use. For example, there could be multiple packages that contain a class named Danny: com.kodicek.Danny com.day.lewis.Danny If you wanted to use the first class, you'd need to write all of it every time

Re: [Flashcoders] Create an object by name

2007-03-19 Thread Hans Wichman
Hi, new eval(_global.mypackage.MyClass) does the trick as well I believe. greetz JC On 3/19/07, Danny Kodicek [EMAIL PROTECTED] wrote: If I have a string, how can I make an object from the class it represents? Eg: I have class MyBigClass the string className contains the text Big

RE: [Flashcoders] What is deprecated from AS2 in AS3 ...

2007-03-19 Thread Merrill, Jason
Anyone have a list of what is deprecated from AS2 when migrating to AS3 (or even whats deprecated from AS1 to AS2).I'm currently skimming every single class available in I like this - it prints out really pretty too: http://actionscriptcheatsheet.com/blog/ Jason Merrill Bank of America

Re: [Flashcoders] Super and this

2007-03-19 Thread Mark Winterhalder
To be honest, I'm not really sure what is better. Certainly the Director way is a lot more flexible - you can generate and swap ancestors on the fly, which I think is pretty cool, a bit like inheritance via composition. If you're not using AS3 yet, you can do it. You can set an object's

Re: [Flashcoders] Re: Previously working SWF fails when reloaded in IE

2007-03-19 Thread Andy Herrman
I've run into that before. The issue seems to be timing-related. When you reload the page the SWF isn't re-downloaded (since it's cached), so it loads much faster, so some initialization stuff might run sooner than they did the first time. Here's how I fixed this (I run into it sometimes even

Re: [Flashcoders] stopDrag question

2007-03-19 Thread dr.ache
you compare the _x values of the mcs only once when you release mc1. when you want to check it while dragging you have to use onEnterFrame. by the way: as likely as not you will not drag your second mc exactly on the _x value of your first mc, so you should use an proximation (a region around

[Flashcoders] Poor video quality problem

2007-03-19 Thread creativity
Hi, I have dvd video and want to put it in flash. videos are long in duration, Embeding it is resulting in very poor quality and long time to load the output is to on cd-rom. if any one can help me getting good quality video in flash. thanks Abhi On 3/19/07, Dennis - I Sioux [EMAIL PROTECTED]

Re: [Flashcoders] Super and this

2007-03-19 Thread Dave Mennenoh
Isn't that what 'instantiate' means? By 'instantiate' I mean 'make an instance of'. Correct. Instantiate an instance... now that makes no sense. Dave - Head Developer www.blurredistinction.com Adobe Community Expert http://www.adobe.com/communities/experts/

Re: [Flashcoders] Create an object by name

2007-03-19 Thread Ian Thomas
On 3/19/07, Ian Thomas [EMAIL PROTECTED] wrote: That's all it is. A convent bit of syntactic sugar. It's exactly the same in Java. Um... _convenient_, obviously. Although that does conjure up some wacky images... Ian ___

RE: [Flashcoders] Create an object by name

2007-03-19 Thread Danny Kodicek
Hi Danny, An import statement is just a compiler-friendly shortcut. It has no effect whatsoever on the final code. Saying: import com.pkg.fred.Bucket; // later var bucket:Bucket=new Bucket(); is identical to saying just: var bucket:com.pkg.fred.Bucket=new

RE: [Flashcoders] Create an object by name

2007-03-19 Thread Danny Kodicek
I'm still not entirely sure what import actually *does* :) It tells flash where the class definitions can be found and distinguishes between classes of the same name, but different packages. You seem to be in a mega hurry Danny! I've been working on my current task for about nine

RE: [Flashcoders] Create an object by name

2007-03-19 Thread Danny Kodicek
I'm still not entirely sure what import actually *does* :) It tells flash where the class definitions can be found and distinguishes between classes of the same name, but different packages. You know, it occurs to me that import is an astonishingly bad name for this statement. Poorly

Re: [Flashcoders] Super and this

2007-03-19 Thread Ron Wheeler
I was simply suggesting that using the right words would make things clearer. Danny is right in a sense. Ron Karina Steffens wrote: Danny, I think what Ron means is, you don't instantiate the class _and_ the super class, as you would with Director. As you know (and for anyone that isn't

Re: [Flashcoders] Super and this

2007-03-19 Thread Andy Herrman
It's also very certain to drive another coder potentially working with your code in the future into insanity... I don't know. Sometimes that's a valid reason to do things like that. :) As powerful as being able to do that is, it's one of those features of Flash that always scares me. I tend

Re: [Flashcoders] stopDrag question

2007-03-19 Thread Pedro Taranto
your function control, just run 1 time, only when you release, you should put it on the mc.onEnterFrame, or start an interval when you startdrag it --Pedro Taranto Gustavo Duenas escreveu: Hi, I'm trying to stop the drag of a movie click when its x value equals the x value of other movie

Re: [Flashcoders] apollo is in macromedia labs

2007-03-19 Thread hank williams
I would imagine you can write in actionscript too, albeit AS3, but still actionscript. Hank On 3/19/07, dan [EMAIL PROTECTED] wrote: Too bad its onely for Flex :) I need it for flash ___ Flashcoders@chattyfig.figleaf.com To change your subscription

Re: [Flashcoders] Re: Previously working SWF fails when reloaded in IE

2007-03-19 Thread Mark Winterhalder
On 3/19/07, Andy Herrman [EMAIL PROTECTED] wrote: I've run into that before. The issue seems to be timing-related. When you reload the page the SWF isn't re-downloaded (since it's cached), so it loads much faster, so some initialization stuff might run sooner than they did the first time.

[Flashcoders] OT: Joost invite needed

2007-03-19 Thread moveup
Yes off topic, but I think any developer interested in online distributuiton of video should be checking this out. Anyone have an invite to share? Thanks Jim Bachalo [e] jbach at bitstream.ca [c] 416.668.0034 [w] www.bitstream.ca ...all

[Flashcoders] LocalConnection scope extend to different engine?

2007-03-19 Thread Jeff Gomes
Is the scope of a LocalConnection limited to a particular Flash engine, or can, for example, a Flash 9 projector use it to communicate with a Flash 8 projector? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] Passing vars to htmltext embedded swf

2007-03-19 Thread Stephen Matthews
Hi flashers, I am using an html text field to display some .swf s like the example below. img src='colbars/colourbarNas.swf' hspace='0' vspace='8' However I would like to pass the .swf some variables, or a variable that I can decode some vars from. I have tried this img

Re: [Flashcoders] stopDrag question

2007-03-19 Thread Gustavo Duenas
Thanks doctor, I'm going to try this, but a question, why don't use :Number? Someone told me that this might be necessary to use numeric values for x. is that right? this.onRelease = function() { this._parent.MC2.startDrag(true); } this.onEnterFrame = function() { var mc1X: Number =

[Flashcoders] project

2007-03-19 Thread Gustavo Duenas
hi I have this in mind, a 3d figure, a cube , ok this cube has a diferent image and a button in every one of its faces, so the button should trigger a particular code, but how can I handle this is 3d? and how can tell actionscript about every single face which has a different design and a

Re: [Flashcoders] wordpress and flash integration

2007-03-19 Thread Kerem İŞERİ
hi Joe, Im trying to use wordpress as source.. ofcourse some php will run inside to generate the content but i am searching the ways of getting them out from wp. i have used flash remoting before in some other projects with serversiders. I am not much experienced in php personally, so its kind

Re: [Flashcoders] I have small doubt

2007-03-19 Thread Kerem İŞERİ
hi .. yes you can do it but you need a serverside script in order to make it happen. you should use loadVars and your serverside script can take the variables easily and add inside the xml. goodluck. kerem. sirajudeen kamarul jaman wrote: hi toeverybody, this is first time to joining

[Flashcoders] Does ByteLoaded/bytesTotal work loading from CDROM ?

2007-03-19 Thread Fabio Sonnati
Does ByteLoaded / bytesTotal work loading from CDROM ? when I try, I get ByeLoaded = byteTotal since the beginning... ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Create an object by name

2007-03-19 Thread Paul Andrews
- Original Message - From: Danny Kodicek [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, March 19, 2007 2:36 PM Subject: RE: [Flashcoders] Create an object by name I'm still not entirely sure what import actually *does* :) It tells flash where the class

[Flashcoders] DirectX and standalone

2007-03-19 Thread Magnus Askenbäck
Hi all, A client asked me what the minimum requirement for DirectX are for a Flash 8 standalone running of a DVD? Is there really a need for DirectX? Just flash and some FLVs... Cheers, //Magnus ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] Poor video quality problem

2007-03-19 Thread Bob Wohl
The quality comes from the conversion process, not the embed. What are you using to convert the media? On 3/19/07, creativity [EMAIL PROTECTED] wrote: Hi, I have dvd video and want to put it in flash. videos are long in duration, Embeding it is resulting in very poor quality and long time

RE: [Flashcoders] Super and this

2007-03-19 Thread Danny Kodicek
I was simply suggesting that using the right words would make things clearer. Danny is right in a sense. Ron Karina Steffens wrote: Danny, I think what Ron means is, you don't instantiate the class _and_ the super class, as you would with Director. As you know (and for anyone that

Re: [Flashcoders] apollo is in macromedia labs

2007-03-19 Thread ben gomez farrell
You can compile any SWF + Application XML file into an Apollo application. You have to use the command-line for this if not using Flex. If you want to use the new features that Apollo brings to the table like file I/O, windowing, etc, you need to compile the Apollo SWC files into your SWF. I

Re: [Flashcoders] apollo is in macromedia labs

2007-03-19 Thread David Rorex
Yes, you can write AS3-only apps that don't use any part of flex at all. You can even do it for free with the Flex 2 SDK. I've heard that you can use AS2 apps in apollo, but that it is a pain because you do not have direct access to the apollo API. On 3/19/07, hank williams [EMAIL PROTECTED]

Re: [Flashcoders] Poor video quality problem

2007-03-19 Thread Muzak
Not sure you noticed, but this is FlashCoders Try the Flash Media List: http://www.flashcomguru.com/flashmedialist/ regards, Muzak - Original Message - From: creativity [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, March 19, 2007 3:24 PM Subject: [Flashcoders]

RE: [Flashcoders] Create an object by name

2007-03-19 Thread Steven Sacks | BLITZ
Most of the time, what I've seen is setting a temporary var to either an instance of the class, or in the case of a static class, setting it to a reference to the class. var myClass:MyClass = new com.client.project.package.MyClass(); or var myClass:MyClass = com.client.project.package.MyClass; I

RE: [Flashcoders] apollo is in macromedia labs

2007-03-19 Thread Steven Sacks | BLITZ
It's not only for Flex. Flex == Flash. That's like saying It's only for Ruby, not Rails. Rails is written in Ruby. Flex 2 is built with Flash. It's simply a bunch of classes and components written in AS3 that provide a framework for developing applications. Currently, the Apollo compiler is

Re: [Flashcoders] LocalConnection scope extend to different engine?

2007-03-19 Thread Muzak
You can communicate with any swf that supports LocalConnection, which means, Flash 6 and up. The mechanism has changed a bit in AS3, but that's about it. regards, Muzak - Original Message - From: Jeff Gomes [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, March

RE: [Flashcoders] Passing vars to htmltext embedded swf

2007-03-19 Thread Merrill, Jason
You're almost there: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_16417 Jason Merrill Bank of America Global Technology Operations Learning Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: [Flashcoders] stopDrag question

2007-03-19 Thread Steven Sacks | BLITZ
function compareX():Void { if (MC_Drag._x == mc2._x) { endDrag(); } } function beginDrag():Void { MC_Drag.startDrag(false, t, l, b, r); clearInterval(compareInterval); compareInterval = setInterval(this, compareX, 10); } function

Re: [Flashcoders] Does ByteLoaded/bytesTotal work loading from CDROM ?

2007-03-19 Thread jaco - pixeldump
or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com __ Informazione NOD32 2126 (20070319) __ Questo messaggio è

Re: [Flashcoders] Does ByteLoaded/bytesTotal work loading from CDROM ?

2007-03-19 Thread Zeh Fernando
Does ByteLoaded / bytesTotal work loading from CDROM ? when I try, I get ByeLoaded = byteTotal since the beginning... When loading local content, bytes loaded/total are either 0 or close values, or the correct number of total bytes. There's no streaming process involved as it happens

Re: [Flashcoders] I have small doubt

2007-03-19 Thread Gustavo Duenas
do you have an example of a server side page on cfm? Regards Gustavo Duenas On Mar 19, 2007, at 12:32 PM, Kerem İŞERİ wrote: hi .. yes you can do it but you need a serverside script in order to make it happen. you should use loadVars and your serverside script can take the variables

Re: [Flashcoders] Super and this

2007-03-19 Thread Andy Herrman
Oh, I don't even think of 'super' as any kind of identifier/variable. I think of it the same way I think of '.', '[]' or even '-' (in C), in that I think of it as an operator used to access something, not as a reference. 'super.' is just the way to access the parent implementation of a function,

Re: [Flashcoders] DirectX and standalone

2007-03-19 Thread Ian Thomas
There is no need for DirectX in this case. Not unless you've got a projector wrapper doing something fancy, which I'm guessing you don't (if it's just a standard Flash projector). Ian On 3/19/07, Magnus Askenbäck [EMAIL PROTECTED] wrote: Hi all, A client asked me what the minimum requirement

Re: [Flashcoders] Does ByteLoaded/bytesTotal work loading from CDROM ?

2007-03-19 Thread Andy Herrman
Then it's probably completely loaded. When using local media the load times will be very fast, unless the file is very large (on the order of a few hundred megs). I wouldn't be at all surprised if the bytesLoaded == bytesTotal from the very beginning. Just means it loads really fast. :)

Re: [Flashcoders] DirectX and standalone

2007-03-19 Thread Charles Parcell
Makes me think that they believe the DVD will run off a Video DVD Player. Meaning that it would run through Windows Media Player on a PC. You might want to check their expectations. Charles P. On 3/19/07, Magnus Askenbäck [EMAIL PROTECTED] wrote: Hi all, A client asked me what the minimum

Re: [Flashcoders] Does ByteLoaded/bytesTotal work loading from CDROM ?

2007-03-19 Thread Fabio Sonnati
://www.figleaf.com http://training.figleaf.com __ Informazione NOD32 2126 (20070319) __ Questo messaggio è stato controllato dal Sistema Antivirus NOD32 http://www.nod32.it ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] browser will not quit!!

2007-03-19 Thread Carolina Avila Coral
Hi: My client and his employees have flash player version 7.0.69 I tried with a new movie with only a button and the button has the code: on(release){ getURL(javascript:top.window.close();); } Then I tried with a new javascript funcion and with fscommand as you suggest in all these

Re: [Flashcoders] Super and this

2007-03-19 Thread Paul Andrews
- Original Message - From: Danny Kodicek [EMAIL PROTECTED] To: [EMAIL PROTECTED]; flashcoders@chattyfig.figleaf.com Sent: Monday, March 19, 2007 4:59 PM Subject: RE: [Flashcoders] Super and this I was simply suggesting that using the right words would make things clearer. Danny is

Re: [Flashcoders] Super and this

2007-03-19 Thread Ian Thomas
On 3/19/07, Andy Herrman [EMAIL PROTECTED] wrote: Oh, I don't even think of 'super' as any kind of identifier/variable. I think of it the same way I think of '.', '[]' or even '-' (in C), in that I think of it as an operator used to access something, not as a reference. 'super.' is just the way

Re: [Flashcoders] Does ByteLoaded/bytesTotal work loading from CDROM ?

2007-03-19 Thread [EMAIL PROTECTED]
the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com __ Informazione NOD32 2126 (20070319) __ Questo messaggio

Re: [Flashcoders] LocalConnection scope extend to different engine?

2007-03-19 Thread Jeff Gomes
Then perhaps what I am trying to do is possible, but I'm just doing something wrong. I need to be able to communicate between a Director Projector (Flash 8 Asset Xtra) and some SWFs authored in Flash 8 but running in the Flash 9 Universal Binary Player (because the target machine is an

[Flashcoders] window.close() doesn't work in player 7.0.69

2007-03-19 Thread Carolina Avila Coral
Hi: My client and his employees have flash player version 7.0.69 I tried with a new movie with only a button and the button has the code: on(release){ getURL(javascript:top.window.close();); } Then I tried with a new javascript funcion and with fscommand as you suggest in all emails in the

[Flashcoders] flv path vs loadmovie path

2007-03-19 Thread Latcho
WWW/INDEX.HTM WWW/SWF/MAIN.SWF WWW/CONTENT/VIDEO.FLV WWW/CONTENT/IMAGE.JPG why is the loadpath (in an online situation) of an image relative to the index.htm file location [ loadmovie(content/image.jpg) ] and is the flv path relative to the swf file location [ netstream url:

Re: [Flashcoders] Take me off your list

2007-03-19 Thread Blaine Fisher
Quoting Paul Andrews [EMAIL PROTECTED]: I'm sorry unsubscribe isn't working, but if you do like the list, why not just divert it to a folder using a mail rule? You don't have to read every message and can always read them later and it's sitting there as a useful resource to search.