Re: [Flashcoders] ANN: Screenweaver HX - Version 1.0

2006-09-02 Thread hank williams
but you won't be able to write it all in one language if you choose, nor will you be able to extend it how you see fit. Sure you will. They are including a browser engine which I assume will be gecko. This means they will support a plugin architecture. Its not the same thing as neko, but on

Re: [Flashcoders] ANN: Screenweaver HX - Version 1.0

2006-09-02 Thread Zárate
I assume will be gecko Hopefully your're right. I think this is a key point that Adobe shouldn't wait to disclose. Because at this point is something that they should alredy have decided. Having said that, it will be a huge surprise for me if they allow us freely adding our own plugins.

Re: [Flashcoders] ANN: Screenweaver HX - Version 1.0

2006-09-02 Thread Ian Thomas
On 9/2/06, Zárate [EMAIL PROTECTED] wrote: Having said that, it will be a huge surprise for me if they allow us freely adding our own plugins. Why not? They did with Director..? Ian ___ Flashcoders@chattyfig.figleaf.com To change your subscription

RE: [Flashcoders] Vob to FLV without Sound

2006-09-02 Thread Sönke Rohde
Hi, Thanks for clearing this up but I expected Squeeze to handle this internaly. Does anybody know a solution where video and audio of Vob-files are converted together? Thanks, Sönke -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Count Schemula

RE: [Flashcoders] Vob to FLV without Sound

2006-09-02 Thread Jim Berkey
I use Ulead Video Studio 10 for this. I import Vob, convert to mpeg1, then with the Flash Video Encoder I can convert mpeg1 to flv. jimbo *** REPLY SEPARATOR *** On 9/2/2006 at 1:18 PM Sönke Rohde wrote: Hi, Thanks for clearing this up but I expected Squeeze to handle this

Re: [Flashcoders] Creating a scrollable list: adding components to the scrollpane contents

2006-09-02 Thread Jeroen Beckers
Couldn't you put the list component in a movieclip and add attach the movieclip to the scrollPane (which is a lot easier). Also, what is your 'createUniqueInstanceName()' function ? Matt Bennett wrote: Hello Flashcoders, I'm building a scrollable list, and I keep track of the list items with

Re: [Flashcoders] Vob to FLV without Sound

2006-09-02 Thread erixtekila
I use Ulead Video Studio 10 for this. I import Vob, convert to mpeg1, then with the Flash Video Encoder I can convert mpeg1 to flv. Hm, FVE is one pass CBR only. Expect more quality with other tools. --- erixtekila http://blog.v-i-a.net/ ___

Re: [Flashcoders] Creating a scrollable list: adding components tothe scrollpane contents

2006-09-02 Thread jcarlos
the problem I think is related to var item = listContainer.createClassObject(symbolName, instanceName, this.getNextHighestDepth(), props); you shoul let DepthManager manage the Depth var item = listContainer.createClassChildAtDepth(symbolName, instanceName, DepthManager.kTop, props);

Re: [Flashcoders] Using assets from external SWF

2006-09-02 Thread Marcelo de Moraes Serpa
Hi Tony, There are some posts by me on the flashdevelop.org forums: http://www.flashdevelop.org/community/viewtopic.php?t=511 This should get you started :) The sharepoint trick was originally published on FlashKit, I don't remember the name or the link though, sorry. Try a search there.

Re: [Flashcoders] Re: OOP methodology and flash. I'm loosing my faith...

2006-09-02 Thread Marcelo de Moraes Serpa
Meinte, AS3 allows prototyping as far as I know. On 8/31/06, Meinte van't Kruis [EMAIL PROTECTED] wrote: I'm not sure prototyping can be done in as 3.0 since it does introduce sealed classes and such and is pretty strict oop as far as i can tell. But perhaps I've overlooked something, it would

[Flashcoders] knowing the llinkage id of a movieclip

2006-09-02 Thread PR Durand
Hi List Is there a way to know an MC affected export for actionscript linkage id via AS code? thx PiR ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] (no subject)

2006-09-02 Thread Pete Miller
I picked this book up after thumbing through it and deciding that one or two chapters would solve a problem I had. Later, when I read the entire book, I realized that the XML layout framework described by the author is quite useful. I am currently using it in a next-gen version of a project

Re: [Flashcoders] ListBox component, get Data (2nd Value)?!

2006-09-02 Thread Marshall MacGillivray
When i have to add more than one data i like to use objects rather than arrays like so var obj:Object = new Object(); obj.name = foo; obj.age = 18; obj.weight = 500; //lbs pretty big ! lista.addItem ({label:Shown on list,data:obj}); // then to get the data. age = lista.selectedItem.data.age;

[Flashcoders] newbie - FLVPlayback component and loading external FLV files via XML

2006-09-02 Thread flashcoders
Does anyone have an example of using the FLVPlayback component and loading external FLV files via XML? Right now I have a instance of the FLVPlayback component on my stage with an instance name of myFLVPlayback. In my actionscript, I have this: _root.myFLVPlayback._visible = false; which

[Flashcoders] Adobe at IBC

2006-09-02 Thread Weyert de Boer
Does anyone know which Adobe people will go to IBC? Yours, Weyert ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf

[Flashcoders] smooth MTASC/Mac workflow?

2006-09-02 Thread Josh Santangelo
Is anyone using MTASC on Mac in a workflow that doesn't require tons of jumping through hoops? Everything I've read seems incredibly complicated and brittle. I use TextMate but wouldn't be opposed to Eclipse or something instead. I generally work with FLAs that have all my assets in them

Re: [Flashcoders] smooth MTASC/Mac workflow?

2006-09-02 Thread John Grden
Yeah read my reply to your message on the Flasc list (www.osflash.org/flasc) now that flasc can execute apple script commands, you can use mtasc from the flash ide on a mac ;) what you're doing is completely doable and is the reason why I created Flasc in the first place ;) jpg On 9/2/06,

[Flashcoders] RE: [flexcoders] Adobe at IBC

2006-09-02 Thread David Mendels
Hi, I can't say off the top of my head, but we do have a booth there and there will be folks both from Adobe Europe and from HQ. I expect our main representation will be from teams associated with our video products: Flash Media Server, Video Production Suite, and of course, Flash authoring as

Re: [Flashcoders] smooth MTASC/Mac workflow?

2006-09-02 Thread Michael Bedar
Actually, could someone answer the same question in regards to Flex on the Mac? I have been just using a shell script to compile from bbedit, but I'd love a more integrated solution to hold me over ... mike On Sep 2, 2006, at 4:31 PM, John Grden wrote: Yeah read my reply to your message

Re: [Flashcoders] Vob to FLV without Sound

2006-09-02 Thread dnk
Sönke Rohde wrote: Hi, Thanks for clearing this up but I expected Squeeze to handle this internaly. Does anybody know a solution where video and audio of Vob-files are converted together? Thanks, Sönke Well this is a little bit of a 2 step process, but you could use handbrake if you are

Re: [Flashcoders] smooth MTASC/Mac workflow?

2006-09-02 Thread aaron smith
i succecssfully used TextMate and mtasc for a long time. I acatually loved the workflow. but since switching jobs have had t ogo back to PC.. anyway, in TextMate you can have it execute pre written command line commands and assign it shortcuts. Thats how I did it. And with mtasc, using existant

Re: [Flashcoders] Slighty OT: phone suggestions?

2006-09-02 Thread John Grden
yeah the wifi, is a great feature - exactly why I was looking at that model On 9/1/06, Serge Jespers [EMAIL PROTECTED] wrote: Bill Perry told me a while back that they were working on the FL2 player for S60 3rd edition phones (like the N80). Haven't heard back from him in a while though so I

[Flashcoders] mtasc and prototypes?

2006-09-02 Thread aaron smith
Hi all, quick question. I've been running into problems with mtasc. I think it is because of tweening classes. Like a tween class that has a bunch of prototypes added onto the movie clips. mc_tween2.as for example. ( http://hosted.zeh.com.br/mctween/). The way you add these in is by including the

Re: [Flashcoders] mtasc and prototypes?

2006-09-02 Thread Adam Pasztory
You can get lmc_tween to work, (I used it for Samurai Kittens) but it definitely takes some tinkering. How about using Fuse instead? http://www.mosessupposes.com/Fuse/index.html ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

Re: [Flashcoders] mtasc and prototypes?

2006-09-02 Thread Chris Allen
Hi Arron, I've never tried to use MTASC using a #include that you run in the first frame of a SWF that you then inject with code like you are doing, so I can't really say what your problem might be. From what I can tell it should be no problem, it's the same thing as putting code in the frame,

Re: [Flashcoders] mtasc and prototypes?

2006-09-02 Thread aaron smith
perfect. i'll give that a look. it's been a while since I looked at fuse. a huge makeover to the site.. smith On 9/2/06, Chris Allen [EMAIL PROTECTED] wrote: Hi Arron, I've never tried to use MTASC using a #include that you run in the first frame of a SWF that you then inject with code