[Flashcoders] [ANN]: Another PaperVision proj.com 3D - online class

2008-11-22 Thread Vic Cekvenich
I would like to inform you of an online (world wide) class on 3D Flex/Flash w/ Proj.com engine, using PaperVision: • Event details and to register: http://proj.com/Default.aspx?pageId=212996eventId=32084EventViewMode=EventDetails • 1 class composed of 2 sessions: on mornings of December 13 and

[Flashcoders] Ann. class: 3D Interactive UI, Papervision w/ Flex for Games and more- hands on

2008-10-22 Thread Vic Cekvenich
In SF on 11/20. more info at: http://papervision.proj.com : A 10 hour bootcamp in Flex to learn 3D using Papervision. Taught by professional trainer Vic Cekvenich. We will cover hands on labs from scratch: * Setting up the SDK * Warm up: 2D Motion * 3D Primitives * 3D Math

[Flashcoders] What does this error msg mean?

2006-09-29 Thread vic
A class's instance variables may only be initialized to compile-time constant expressions. Victor ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[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

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

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: head script type=text/javascript src=scripts/swfobject.js/script /head body !--start new code for MS IE activeX issue-- div id=navigation

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

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

[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,

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

Re: [Flashcoders] Q: passing flash form data with NO server sidescripting

2006-09-27 Thread vic
You could put a php file on another server and hit that. If you do I think you need to allowDomain and have a crossDomain XML file on the server, if memory serves correct. V -- Original Message -- From: [EMAIL PROTECTED] Reply-To: Flashcoders mailing

Re: [Flashcoders] Delegating Events and AS2

2006-09-27 Thread vic
flashcoders@chattyfig.figleaf.com Sent: Wednesday, September 27, 2006 8:13 AM Subject: Re: [Flashcoders] Delegating Events and AS2 I think Delegate gives you what you're talking about Vic - control over your scope issues. Delegate enables you to manage scope with in your class. So, if you have

Re: [Flashcoders] Trying to create an emptyMovieClip and then loadanimage into it

2006-09-26 Thread vic
+' into '+imgMovieClip) imgMovieClip.loadMovie(newImageToLoad) } } But it does not work and I feel that it is a scope issue but I am not sure why. Thanks, V -- Original Message -- From: vic [EMAIL PROTECTED] Reply-To: Flashcoders mailing list

Re: [Flashcoders] Trying to create an emptyMovieClip and then load animage into it

2006-09-26 Thread vic
Shoot, that is reverted code...hold a tick and I will reprise it the way it was when it was looking tight and NOT working. Sorry, V -- Original Message -- From: vic [EMAIL PROTECTED] Reply-To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Trying to create an emptyMovieClip and then load an image into it

2006-09-26 Thread vic
I have a Class, I am trying to create an empty movieClip on the stage, that is going well because I see this when i hit ctl+alt+v: Variable _level0.imgViewer = [object #8] {} Movie Clip: Target=_level0.emptyViewerContainer_mc Movie Clip: Target=_level0.emptyThumbContainer_mc Movie Clip:

Re: [Flashcoders] Delegating Events and AS2

2006-09-26 Thread vic
Hey Dan, I like the way you do it, its pretty simple. But here is, what probably will be an incredibly stupid question: How do I capture the event? Thanks, V I personally use an extremely simplified way of dealing with events. I've used EventDispatcher before, but it feels like overkill

Re: [Flashcoders] Delegating Events and AS2

2006-09-26 Thread vic
upon scope. Anyone have any example? Thanks, V -- Original Message -- From: Dan Rogers [EMAIL PROTECTED] Reply-To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Date: Tue, 26 Sep 2006 20:55:32 -0700 Vic, if you've ever used the XML

Re: [Flashcoders] embedded font not displaying

2006-09-25 Thread vic
I have been having font issues with Flash for the longest time. First, I want to say hello to you all, I am brand new here and really impressed by the level of programming. I came from actionscript.org where I almost always help people out but I dont think that is going to be the case for me

Re: [Flashcoders] embedded font not displaying

2006-09-25 Thread vic
be good. hth vic! Jpg PS welcome to the crack habbit of FlashCoders ;) On 9/25/06, Mendelsohn, Michael [EMAIL PROTECTED] wrote: Make sure you also have this line: myText.html = true; Does anyone have the solution...it could be myText.htmlText = 'foo' but I am not sure