[Flashcoders] Displace text in flash8

2005-11-28 Thread rishi
Hi

 

I need to change shape of text or displace text in flash 8 such as it
produces text straight from bottom and round from top 

In Other words text starts as small from beginning and is increasing
order with glyphs touching the increasing order. Itshould represent roof
text as well as valley text and I want some similar text effects in
flash8. Any ideas for text to shape and displace to an extent.

 

Thanks

Rishi

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Loading Text Dynamically - Any Good Wasy or Tutorials?

2005-11-28 Thread Sajid Saiyed
For loading content using PHP and MySql, you can refer to my tutorial here:
http://www.macromedia.com/devnet/flash/articles/flash_xmlphp.html

I wonder what you searched for on the web because there are numerous
tutorials on the web about loading content dynamically in flash.

Just randomly picking links I got after i searched google for "flash
dynamic load text":

http://www.informit.com/articles/article.asp?p=174349&seqNum=7&rl=1
http://www.actionscript.com/index.php/fw/1/loading-dynamic-content-in-flash/
http://www.kirupa.com/developer/mx/externaldata.htm
http://www.peachpit.com/articles/article.asp?p=28510&seqNum=5&rl=1

These are not the only once.

Sajid

On 11/29/05, Nicholas Chhabra <[EMAIL PROTECTED]> wrote:
> Hi Guys,
>
> Sorry to ask such a noobiful question but I've searched the web and
> haven't found many good flash tutorials covering dynamically laoding
> text/xml or whatever into a dynamic text box - if this is the right way
> to do things :-) , does anyone have a walkthrough or tutorial they could
> point me at or if this is the wrong way, what is the right way to
> dynamically load text (and if someone had a tutorial on loading text
> from a mySQL database it would be muhc appreciated!). Thanks in advance!
> ;-)
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Delegate scope - superclass issue?

2005-11-28 Thread Nick Griffiths
are you expecting it to call mySuperClass.myFunction, or 
mySubClass.myFunction?


As far as I know, if you have overridden myFunction in the subclass, 
that will be called, rather than the super class's definition.  I 
usually get around this with naming conventions, i.e. prefixing my 
private functions with the initials of the class.  It's ugly, but safer, 
especially when you do a lot of inheritance.


Nikolaj Selvik wrote:


Hi,

Thanks for welcoming me to your list!

I´ve run into a problem using MM's delegate class, couldn't find any info on 
this particular issue so here goes:

Example:

"mySubClass" inherits from "mySuperClass"

In "mySubClass" I have:

myObject.addEventListener("click",Delegate.create(this, this.myFunction));

works fine if "myFunction" is defined in "mySubclass", just as it should, but not if Its 
defined in "mySuperClass". Why?


Best Regards,

Nick
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



 



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] foldable content ?

2005-11-28 Thread Sajid Saiyed
Hi,
You can use some tree components available on the web.
You can search places like flashkit.com / kirupa.com / actionscript.org etc

Then use V2 scrollpane and attach your movieclip to scrollpane.

By default, the scrollpane will show or hide a scrollbar as your movie
size changes.

Hope that helps.

Sajid

On 28 Nov 2005 20:20:44 -, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Has anyone come across some component that can hide/show content and resize 
> the area like you can with div tags and javascript ?
>
> I'm doing something right now in javascript/dhtml and would rather do it in 
> flash but don't have the time to write the component, I was considering doing 
> a tree with a custom cell renderer but it also looked like more work than I 
> have client budget for.
>
> here is an example of the dhtml/javascript notice the scroll bar when the 
> content exceeds the divs contraints
>
> http://bluetubecom.web123.discountasp.net/clients/amvescap/jan.html
>
> Cheers
> Grant
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Loading Text Dynamically - Any Good Wasy or Tutorials?

2005-11-28 Thread Nicholas Chhabra

Hi Guys,

Sorry to ask such a noobiful question but I've searched the web and 
haven't found many good flash tutorials covering dynamically laoding 
text/xml or whatever into a dynamic text box - if this is the right way 
to do things :-) , does anyone have a walkthrough or tutorial they could 
point me at or if this is the wrong way, what is the right way to 
dynamically load text (and if someone had a tutorial on loading text 
from a mySQL database it would be muhc appreciated!). Thanks in advance! 
;-)

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Load/export Symbol in ActionScript

2005-11-28 Thread Frédéric v . Bochmann
Normally, you would keep the RMCSymbol in your library with the linkage and
class association and not use Object.registerClass. 

If you want to associated your symbol dynamically to a class at run-time you
can use Objec.registerClass("RMCSymbol", RMC); for example. This function
can only set your class association It doesn't create a fake symbol in
your run-time library for Flash to instantiate when you do
attachMovie("RMCSymbol", ...).

Creating a fake named linkage'd run-time symbol is done another way. 
But I don't remember it by hearth. Maybe someone else can feed on this one.

Basically, Object.registerClass associates a class (RMC) to a linkage'd
symbol ("RMCSymbol") that "must" exist. 

Hope that helps!
Fredz./

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of de-hack SWF
Sent: November 29, 2005 1:01 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Load/export Symbol in ActionScript

Dear all,

I am new to flash programming, so my question may be silly.

In the first frame of new flash document, I have the code like this.

trace("hello");
var rmc = _root.attachMovie("RMCSymbol", "rmc_1", 2);
trace(rmc);
RMC(rmc).init(100, 200);

Where RMC is a subclass of MovieClip. I created an empty RMCSymbol symbol
make the linkage between RMCSymbol and RMC class in Symbol Properties
dialog, and the swf works. Now, I delete RMCSymbol and try to add the
registration code like


var tmp:RMC;
Object.registerClass("RMCSymbol", RMC);

before the previous code. It does not work as what I had previously and
trace(rmc) prints undefined. Did I miss something here?

Many thanks!

Juguang

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Load/export Symbol in ActionScript

2005-11-28 Thread de-hack SWF
Dear all,

I am new to flash programming, so my question may be silly.

In the first frame of new flash document, I have the code like this.

trace("hello");
var rmc = _root.attachMovie("RMCSymbol", "rmc_1", 2);
trace(rmc);
RMC(rmc).init(100, 200);

Where RMC is a subclass of MovieClip. I created an empty RMCSymbol symbol
make the linkage between RMCSymbol and RMC class in Symbol Properties
dialog, and the swf works. Now, I delete RMCSymbol and try to add the
registration code like


var tmp:RMC;
Object.registerClass("RMCSymbol", RMC);

before the previous code. It does not work as what I had previously and
trace(rmc) prints undefined. Did I miss something here?

Many thanks!

Juguang
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] water simulation

2005-11-28 Thread Andy Johnston

Hey Miles,

Thanks for that one, I have to admit twas a wee bit over my head, really 
need some working as2 code if anyone has anything similar. Thanks for 
the link though I will have a more in depth read when I got some time.


Cheers

Andy



Andy,

Didn't think this link would be much help. butthere's a quicktime 
animation at the end which demonstrates his equation, and there seems 
to be a slosh effect ...

http://www.osc.edu/education/su_programs/si/si2005/projects/wave_motion/

Regards - Miles

At 08:02 PM 11/28/2005, Andy Johnston wrote:


Hi all,

Looking for some actionscript to simulate a body of water that is 
contained in a rectangular box. Think cutting a swimming pool in half 
then shaking it from side to side. Anyone got some physics code that 
would generate a constrained sloshing around motion?


any help or pointer mucho appreciated!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ROTATING WITH AS

2005-11-28 Thread eric dolecki
use an Tween class easeOut of some extra degrees from the position the
clip was last at when rolled out... and there will be your
"progressive slowdown"...

On 11/28/05, Sebastián Sirvent <[EMAIL PROTECTED]> wrote:
> My problem is not how to make a tweening, but how to make it slow
> down progressively until it stops when rolling Out the MC.
> Thanks
>
> On Nov 28, 2005, at 8:41 PM, Merrill, Jason wrote:
>
> > http://www.macromedia.com/devnet/flash/articles/tweening.html
> > http://chattyfig.figleaf.com/mailman/listinfo/flashnewbie
> >
> > Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com
> >
> >
> >
> >>> -Original Message-
> >>> From: [EMAIL PROTECTED]
> >>> [mailto:[EMAIL PROTECTED] On Behalf
> >>> Of Sebastián Sirvent
> >>> Sent: Monday, November 28, 2005 6:25 PM
> >>> To: Flashcoders mailing list
> >>> Subject: [Flashcoders] ROTATING WITH AS
> >>>
> >>> Hi,
> >>>
> >>> I need to rotate a logo, onRollover of different MCs.
> >>> I've got a list with the same logo on every item side, and when you
> >>> point to one sentence of this list, the logo on its side have to
> >>> start rotating, and when pointer rolls out, this logo has to stop
> >>> progressively.
> >>>
> >>> Any comment will be welcome.
> >>>
> >>> Thanks in advance
> >>>
> >>> Sebastian
> >
> >
> >
> >
> >
> > NOTICE:
> > This message is for the designated recipient only and may contain
> > privileged or confidential information. If you have received it in
> > error, please notify the sender immediately and delete the
> > original. Any other use of this e-mail by you is prohibited.
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ROTATING WITH AS

2005-11-28 Thread Sebastián Sirvent
My problem is not how to make a tweening, but how to make it slow  
down progressively until it stops when rolling Out the MC.

Thanks

On Nov 28, 2005, at 8:41 PM, Merrill, Jason wrote:


http://www.macromedia.com/devnet/flash/articles/tweening.html
http://chattyfig.figleaf.com/mailman/listinfo/flashnewbie

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Sebastián Sirvent
Sent: Monday, November 28, 2005 6:25 PM
To: Flashcoders mailing list
Subject: [Flashcoders] ROTATING WITH AS

Hi,

I need to rotate a logo, onRollover of different MCs.
I've got a list with the same logo on every item side, and when you
point to one sentence of this list, the logo on its side have to
start rotating, and when pointer rolls out, this logo has to stop
progressively.

Any comment will be welcome.

Thanks in advance

Sebastian






NOTICE:
This message is for the designated recipient only and may contain  
privileged or confidential information. If you have received it in  
error, please notify the sender immediately and delete the  
original. Any other use of this e-mail by you is prohibited.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] mac windows

2005-11-28 Thread Costello, Rob R
hello 

i'm running windows but having some problems with a swf on the Mac player  .. 
which isn't convenient to debug ... macs are few and far between where i work 
and play 

is there anyway to get a mac player to run under windows; or any online service 
that simulates a mac client? 

cheers

Rob 



Important - 
This email and any attachments may be confidential. If received in error, 
please contact us and delete all copies. Before opening or using attachments 
check them for viruses and defects. Regardless of any loss, damage or 
consequence, whether caused by the negligence of the sender or not, resulting 
directly or indirectly from the use of any attached files our liability is 
limited to resupplying any affected attachments. Any representations or 
opinions expressed are those of the individual sender, and not necessarily 
those of the Department of Education & Training.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] water simulation

2005-11-28 Thread Miles Thompson


Andy,

Didn't think this link would be much help. butthere's a quicktime animation 
at the end which demonstrates his equation, and there seems to be a slosh 
effect ...

http://www.osc.edu/education/su_programs/si/si2005/projects/wave_motion/

Regards - Miles

At 08:02 PM 11/28/2005, Andy Johnston wrote:

Hi all,

Looking for some actionscript to simulate a body of water that is 
contained in a rectangular box. Think cutting a swimming pool in half then 
shaking it from side to side. Anyone got some physics code that would 
generate a constrained sloshing around motion?


any help or pointer mucho appreciated!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] water simulation

2005-11-28 Thread Andy Johnston

Hi all,

Looking for some actionscript to simulate a body of water that is 
contained in a rectangular box. Think cutting a swimming pool in half 
then shaking it from side to side. Anyone got some physics code that 
would generate a constrained sloshing around motion?


any help or pointer mucho appreciated!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] ROTATING WITH AS

2005-11-28 Thread Merrill, Jason
http://www.macromedia.com/devnet/flash/articles/tweening.html
http://chattyfig.figleaf.com/mailman/listinfo/flashnewbie 

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com



>>-Original Message-
>>From: [EMAIL PROTECTED] 
>>[mailto:[EMAIL PROTECTED] On Behalf 
>>Of Sebastián Sirvent
>>Sent: Monday, November 28, 2005 6:25 PM
>>To: Flashcoders mailing list
>>Subject: [Flashcoders] ROTATING WITH AS
>>
>>Hi,
>>
>>I need to rotate a logo, onRollover of different MCs.
>>I've got a list with the same logo on every item side, and when you  
>>point to one sentence of this list, the logo on its side have to  
>>start rotating, and when pointer rolls out, this logo has to stop  
>>progressively.
>>
>>Any comment will be welcome.
>>
>>Thanks in advance
>>
>>Sebastian





NOTICE:
This message is for the designated recipient only and may contain privileged or 
confidential information. If you have received it in error, please notify the 
sender immediately and delete the original. Any other use of this e-mail by you 
is prohibited.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ROTATING WITH AS

2005-11-28 Thread eric dolecki
use an onEnterFrame function that can target different clips. when you
rollout, null the onEnterFame function, when something generates your
roll event, start it back up with a target clip.

On 11/28/05, Sebastián Sirvent <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I need to rotate a logo, onRollover of different MCs.
> I've got a list with the same logo on every item side, and when you
> point to one sentence of this list, the logo on its side have to
> start rotating, and when pointer rolls out, this logo has to stop
> progressively.
>
> Any comment will be welcome.
>
> Thanks in advance
>
> Sebastian
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] ROTATING WITH AS

2005-11-28 Thread Sebastián Sirvent

Hi,

I need to rotate a logo, onRollover of different MCs.
I've got a list with the same logo on every item side, and when you  
point to one sentence of this list, the logo on its side have to  
start rotating, and when pointer rolls out, this logo has to stop  
progressively.


Any comment will be welcome.

Thanks in advance

Sebastian
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] plant leaf animation in flash

2005-11-28 Thread Gerry Creighton

Do you mean like this example?
http://hosted.zeh.com.br/mctween/examples/leaves.swf

Gerry
 
...

http://www.thespikeranch.com
Certified Macromedia Flash MX Designer
 
...


On Nov 28, 2005, at 6:04 PM, Alp Güneysel wrote:


how can i animate leafs in flash, and making them look
natural?
i remember some sites that used plant leafes as a
navigation tool, but can't find their urls?

do you have some sites in your bookmark or can you
shed some light on how this can be possible?

my navigation looks something like this:
http://www.hfh.com.tr/leaf.jpg




__
Yahoo! Music Unlimited
Access over 1 million songs. Try it free.
http://music.yahoo.com/unlimited/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] plant leaf animation in flash

2005-11-28 Thread G�neysel
how can i animate leafs in flash, and making them look
natural?
i remember some sites that used plant leafes as a
navigation tool, but can't find their urls?

do you have some sites in your bookmark or can you
shed some light on how this can be possible?

my navigation looks something like this:
http://www.hfh.com.tr/leaf.jpg




__ 
Yahoo! Music Unlimited 
Access over 1 million songs. Try it free. 
http://music.yahoo.com/unlimited/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Scope problem with invoking functions within a class

2005-11-28 Thread old9
Thanks to your all. :)

On 11/29/05, Charles Parcell <[EMAIL PROTECTED]> wrote:
>
> Check this out.
>
> 
>
> Charles P.
>
>
> On 11/28/05, old9 <[EMAIL PROTECTED]> wrote:
> >
> > Hi list~, first post here.
> >
> > I'm a totally newbie to AS2.0, so I think this might be a dumb question
> .
> > o_o
> > I got a problem when I try to call a private function in the onload
> handle
> > of a inner XML object.
> >
> > // MyClass.as
> > class MyClass{
> >   private var myxml:XML;
> >   function MyClass(){
> > myxml = new XML();
> > myxml.onLoad = myXMLLoad;
> > myxml.load("somexml.xml");
> >   }
> >   private function myXMLLoad(){
> >  trace("xml loaded");
> >  myPrivateFunc();
> >   }
> >   private function myPrivateFunc(){
> >  trace(this);
> >   }
> > }
> >
> > //FLA file
> > import MyClass;
> > var t = new MyClass();//the output window shows "xml loaded" only.
> >
> > when I try to call the myPrivateFunc, it fails.
> > How to invoke that func when the XML instance is loaded?
> >
> > many thanks
> >
> >
> >
> > --
> >   t.E.l : +8605513602273
> >   m.o.B : +8613855184110
> > q.Q : 7387905
> > B.L.o.G : http://old9.wordpress.com
> >   E.m.A.i.L : qi.jiahui⊕gmail.com
> >
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> >
> >
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
>
>


--
  t.E.l : +8605513602273
  m.o.B : +8613855184110
q.Q : 7387905
B.L.o.G : http://old9.wordpress.com
  E.m.A.i.L : qi.jiahui⊕gmail.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Embedded Flash Communicating with PowerPoint

2005-11-28 Thread Jason Lutes
Is it possible to communicate between an embedded Flash movie and its
PowerPoint host (for navigation purposes)?

If possible, how?


-
pixelTwiddler, a.k.a. Jason


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Scope problem with invoking functions within a class

2005-11-28 Thread Charles Parcell
Check this out.



Charles P.


On 11/28/05, old9 <[EMAIL PROTECTED]> wrote:
>
> Hi list~, first post here.
>
> I'm a totally newbie to AS2.0, so I think this might be a dumb question .
> o_o
> I got a problem when I try to call a private function in the onload handle
> of a inner XML object.
>
> // MyClass.as
> class MyClass{
>   private var myxml:XML;
>   function MyClass(){
> myxml = new XML();
> myxml.onLoad = myXMLLoad;
> myxml.load("somexml.xml");
>   }
>   private function myXMLLoad(){
>  trace("xml loaded");
>  myPrivateFunc();
>   }
>   private function myPrivateFunc(){
>  trace(this);
>   }
> }
>
> //FLA file
> import MyClass;
> var t = new MyClass();//the output window shows "xml loaded" only.
>
> when I try to call the myPrivateFunc, it fails.
> How to invoke that func when the XML instance is loaded?
>
> many thanks
>
>
>
> --
>   t.E.l : +8605513602273
>   m.o.B : +8613855184110
> q.Q : 7387905
> B.L.o.G : http://old9.wordpress.com
>   E.m.A.i.L : qi.jiahui⊕gmail.com
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
>
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Scope problem with invoking functions within a class

2005-11-28 Thread Ian Thomas
Hi there...

This is a question which gets asked on a weekly basis (which does show a
serious design flaw in AS2!).

You can find the answer in the Flashcoders Wiki AS2 FAQ here:
http://www.osflash.org/flashcoders/as2

In short, it's all easier if you use the mx.utils.Delegate class or one of
it's replacements.

HTH,
  Ian

On 11/28/05, old9 <[EMAIL PROTECTED]> wrote:
>
> Hi list~, first post here.
>
> I'm a totally newbie to AS2.0, so I think this might be a dumb question .
> o_o
> I got a problem when I try to call a private function in the onload handle
> of a inner XML object.
>
> // MyClass.as
> class MyClass{
>   private var myxml:XML;
>   function MyClass(){
> myxml = new XML();
> myxml.onLoad = myXMLLoad;
> myxml.load("somexml.xml");
>   }
>   private function myXMLLoad(){
>  trace("xml loaded");
>  myPrivateFunc();
>   }
>   private function myPrivateFunc(){
>  trace(this);
>   }
> }
>
> //FLA file
> import MyClass;
> var t = new MyClass();//the output window shows "xml loaded" only.
>
> when I try to call the myPrivateFunc, it fails.
> How to invoke that func when the XML instance is loaded?
>
> many thanks
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Scope problem with invoking functions within a class

2005-11-28 Thread old9
Hi list~, first post here.

I'm a totally newbie to AS2.0, so I think this might be a dumb question .
o_o
I got a problem when I try to call a private function in the onload handle
of a inner XML object.

// MyClass.as
class MyClass{
  private var myxml:XML;
  function MyClass(){
myxml = new XML();
myxml.onLoad = myXMLLoad;
myxml.load("somexml.xml");
  }
  private function myXMLLoad(){
 trace("xml loaded");
 myPrivateFunc();
  }
  private function myPrivateFunc(){
 trace(this);
  }
}

//FLA file
import MyClass;
var t = new MyClass();//the output window shows "xml loaded" only.

when I try to call the myPrivateFunc, it fails.
How to invoke that func when the XML instance is loaded?

many thanks



--
  t.E.l : +8605513602273
  m.o.B : +8613855184110
q.Q : 7387905
B.L.o.G : http://old9.wordpress.com
  E.m.A.i.L : qi.jiahui⊕gmail.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Qauternions for avoiding gimbal-lock in 3D?

2005-11-28 Thread Jon Bradley


On Nov 27, 2005, at 6:39 PM, keith wrote:

I read all over the internet about Quaternions are the solution for 
avoiding Gimbal-lock,but I

dont understand the math enough to use them for rotating 3D points.

I've looked at 
http://www.macromedia.com/devnet/flash/articles/3d_classes_03.html.
Its a nice tutorial, however I need more examples to study with 
Quaternions used in Actionscript.


Please post links or tutorials with Actionscript using Quaternions.

Thanks,
-- Keith H --



Quats are not the 'solution' for avoiding gimbal lock.  Gimbal lock 
happens because euler rotations are expressed relative to a global 
coordinate system and need to be performed in a certain order to 
achieve a certain rotation. You get gimbal lock when you try to perform 
a local rotation of an object and then apply global transformations on 
top of that, which easily results in an improper rotation of an object 
if you don't code it properly.


Quats are primarily used for camera animation in 3d applications 
because they are higher order and include transformations and rotations 
in the same matrix set. They are great for path animation in 3d space 
because of the capability of using smooth interpolation.


A quick overview and simple description:
http://www.gamedev.net/reference/articles/article1199.asp

Not to convince you otherwise, but there really isn't a reason to use 
quaternions. Use axis/angle representation instead of quaternions for 
3d rotations, unless you really really need to do a lot of spherical 
linear interpolation (unlikely).


Jon Bradley
Visual Effects / Interactive / Animation
Post Central, Inc.
[EMAIL PROTECTED]
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Flash8 IDE Crashes when publishing with the Projects panel

2005-11-28 Thread John Grden
I gotta try gProject ;)

I'lll let you know if that fixes the issue

On 11/28/05, Ryan Matsikas <[EMAIL PROTECTED]> wrote:
>
> Another fan of gProject, w00t.
>
> About the network stuff, keep an eye on the blog.. we've been working on
> some updates and fixes for gProject ;)
>
> Cheers,
> Ryan
>
> On 11/28/05, Charles Parcell <[EMAIL PROTECTED]> wrote:
> >
> > No idea because I use gProject. Works like a champ (but not over a
> network
> > :( )
> >
> > 
> >
> > Charles P.
> >
> >
> > On 11/28/05, John Grden <[EMAIL PROTECTED]> wrote:
> > >
> > > on certain projects/files, the IDE crashes when I publish from the
> > > Projects
> > > panel.  Anyone know if this is a reported bug or what the resolution
> > might
> > > be?
> > >
> > > Thanks,
> > >
> > > --
> > > John Grden - Blitz
> > > ___
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > >
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



--
John Grden - Blitz
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Download XML Object via FileReference?

2005-11-28 Thread Ryan Matsikas
Nope, you can't use the FileReference object to write files.. it only
provides an API to upload or download existing files.

On 11/28/05, Marlon Harrison <[EMAIL PROTECTED]> wrote:
>
> I made a flash i that builds a custom xml file, and I wondering if
> it's possible to use Flash 8's new download functionality to take that
> xml object that's built via the interface and have Flash generate the
> file on it's own.
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Flash8 IDE Crashes when publishing with the Projects panel

2005-11-28 Thread Ryan Matsikas
Another fan of gProject, w00t.

About the network stuff, keep an eye on the blog.. we've been working on
some updates and fixes for gProject ;)

Cheers,
Ryan

On 11/28/05, Charles Parcell <[EMAIL PROTECTED]> wrote:
>
> No idea because I use gProject. Works like a champ (but not over a network
> :( )
>
> 
>
> Charles P.
>
>
> On 11/28/05, John Grden <[EMAIL PROTECTED]> wrote:
> >
> > on certain projects/files, the IDE crashes when I publish from the
> > Projects
> > panel.  Anyone know if this is a reported bug or what the resolution
> might
> > be?
> >
> > Thanks,
> >
> > --
> > John Grden - Blitz
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] foldable content ?

2005-11-28 Thread grant
Has anyone come across some component that can hide/show content and resize the 
area like you can with div tags and javascript ?

I'm doing something right now in javascript/dhtml and would rather do it in 
flash but don't have the time to write the component, I was considering doing a 
tree with a custom cell renderer but it also looked like more work than I have 
client budget for.

here is an example of the dhtml/javascript notice the scroll bar when the 
content exceeds the divs contraints

http://bluetubecom.web123.discountasp.net/clients/amvescap/jan.html

Cheers
Grant
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Flash8 IDE Crashes when publishing with the Projects panel

2005-11-28 Thread Charles Parcell
No idea because I use gProject. Works like a champ (but not over a network
:( )



Charles P.


On 11/28/05, John Grden <[EMAIL PROTECTED]> wrote:
>
> on certain projects/files, the IDE crashes when I publish from the
> Projects
> panel.  Anyone know if this is a reported bug or what the resolution might
> be?
>
> Thanks,
>
> --
> John Grden - Blitz
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ComboBox all jacked up

2005-11-28 Thread Charles Parcell
Holy Crap!!!  That totally works!

Now I just hope the hair that I have been pulling out the past week grows
back.

Thanks a million!!

Charles P.



On 11/28/05, Ian Thomas <[EMAIL PROTECTED]> wrote:
>
> The ComboBox is really quite broken.
>
> Another thing to try - set _lockroot=true on the ComboBox instance.
>
> HTH,
>   Ian
>
> On 11/28/05, Charles Parcell <[EMAIL PROTECTED]> wrote:
> >
> > OK, I dumped the ScrollPane Component completely. I have built a MC that
> > has
> > a few ComboBoxes in it. I place it on the Stage and added two arrow
> images
> > to the right as a scrollbar place holder.
> >
> > I added code to these arrows to simply move the MC with the ComboBoxes
> up
> > and down (theMC._y +/- 10). Simple enough.
> >
> > This works as expected. Then i load this SWF into a second SWF and my
> > ComboBox components go to Hell!!!  I have added the ComboBox component
> to
> > the loader SWF library and that at least allows me to click the thumb
> area
> > of the component and get a dropdown. But the dropdown area looks as if
> it
> > either has no background or it is being rendered behind the text that is
> > also in the MC.
> >
> > Please! For the love of all that is right in the world, someone throw me
> a
> > bone!  I can't believe that components are so simply broken!
> >
> > Running Flash 8
> > Win XP SP2
> > Happens is all browsers
> >
> > Charles P.
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ComboBox all jacked up

2005-11-28 Thread Ian Thomas
The ComboBox is really quite broken.

Another thing to try - set _lockroot=true on the ComboBox instance.

HTH,
  Ian

On 11/28/05, Charles Parcell <[EMAIL PROTECTED]> wrote:
>
> OK, I dumped the ScrollPane Component completely. I have built a MC that
> has
> a few ComboBoxes in it. I place it on the Stage and added two arrow images
> to the right as a scrollbar place holder.
>
> I added code to these arrows to simply move the MC with the ComboBoxes up
> and down (theMC._y +/- 10). Simple enough.
>
> This works as expected. Then i load this SWF into a second SWF and my
> ComboBox components go to Hell!!!  I have added the ComboBox component to
> the loader SWF library and that at least allows me to click the thumb area
> of the component and get a dropdown. But the dropdown area looks as if it
> either has no background or it is being rendered behind the text that is
> also in the MC.
>
> Please! For the love of all that is right in the world, someone throw me a
> bone!  I can't believe that components are so simply broken!
>
> Running Flash 8
> Win XP SP2
> Happens is all browsers
>
> Charles P.
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] ComboBox all jacked up

2005-11-28 Thread Charles Parcell
OK, I dumped the ScrollPane Component completely. I have built a MC that has
a few ComboBoxes in it. I place it on the Stage and added two arrow images
to the right as a scrollbar place holder.

I added code to these arrows to simply move the MC with the ComboBoxes up
and down (theMC._y +/- 10). Simple enough.

This works as expected. Then i load this SWF into a second SWF and my
ComboBox components go to Hell!!!  I have added the ComboBox component to
the loader SWF library and that at least allows me to click the thumb area
of the component and get a dropdown. But the dropdown area looks as if it
either has no background or it is being rendered behind the text that is
also in the MC.

Please! For the love of all that is right in the world, someone throw me a
bone!  I can't believe that components are so simply broken!

Running Flash 8
Win XP SP2
Happens is all browsers

Charles P.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Cross-Browser Get Flash Object Script

2005-11-28 Thread Jeff
I'm have trouble finding a good cross-browser script that gets a 
reference to a flash movie object.


Here's what I have right now:

function thisMovie(movieName) {

if (typeof(window.document[movieName]) != 'undefined') {
return window.document[movieName];
} else if (typeof(document.getElementById(movieName)) != 
'undefined') {
return document.getElementById(movieName);
} else if (typeof(window[movieName]) != 'undefined') {
return window[movieName];
}
}

The function needs to retrieve a reference to the object for use with 
other scripts.


Cheers,
Jeff
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Flash8 IDE Crashes when publishing with the Projects panel

2005-11-28 Thread John Grden
on certain projects/files, the IDE crashes when I publish from the Projects
panel.  Anyone know if this is a reported bug or what the resolution might
be?

Thanks,

--
John Grden - Blitz
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Freelance Flash Person Needed

2005-11-28 Thread Steven Schoolman
I am the director of a non-profit company that creates preventative health
educational software for middle school through college age students. We are
in need of someone to work on a few projects with us either freelance or
in-house. Requirements: know Flash inside and out; knowledge and experience
in Director, 3D, artificial intelligence as well as experience using
programs such as Poser or Mimic very helpful. We are in St. Louis, MO.
Excellent compensation. If interested please send resume by email only to:
[EMAIL PROTECTED] Thanks for your help.

Steve Schoolman

-  
Steven L. Schoolman
Co-Executive Director
Educational Multimedia, Inc.
609 Eastgate Ave.  Suite 202
St. Louis, MO  63130
ph: 314-454-3039   
fax: 314-727-3041
www.e-m-i.org 
-- 



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Delegate scope - superclass issue?

2005-11-28 Thread Ian Thomas
I've never had that problem.

Try removing the "this" from "this.myFunction". Shouldn't make any
difference - but I don't use it, and, as I said, I don't have the problem.
:-)

HTH,
  Ian

On 11/28/05, Nikolaj Selvik <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> Thanks for welcoming me to your list!
>
> I´ve run into a problem using MM's delegate class, couldn't find any info
> on this particular issue so here goes:
>
> Example:
>
> "mySubClass" inherits from "mySuperClass"
>
> In "mySubClass" I have:
>
> myObject.addEventListener("click",Delegate.create(this, this.myFunction));
>
> works fine if "myFunction" is defined in "mySubclass", just as it should,
> but not if Its defined in "mySuperClass". Why?
>
>
> Best Regards,
>
> Nick
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Delegate scope - superclass issue?

2005-11-28 Thread Nikolaj Selvik
Hi,

Thanks for welcoming me to your list!

I´ve run into a problem using MM's delegate class, couldn't find any info on 
this particular issue so here goes:

Example:

"mySubClass" inherits from "mySuperClass"

In "mySubClass" I have:

myObject.addEventListener("click",Delegate.create(this, this.myFunction));

works fine if "myFunction" is defined in "mySubclass", just as it should, but 
not if Its defined in "mySuperClass". Why?


Best Regards,

Nick
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Qauternions for avoiding gimbal-lock in 3D?

2005-11-28 Thread Danny Kodicek



[EMAIL PROTECTED] ha scritto:


All I've see online is Quaternions from a Mathematician's view that only
a mad-scientist would understand. (Don't understand all the mathmatical
notations, I rather see code.)
I'm looking for more explainations of Quaternions from an Actionscript
"code" point of view.
(C would be too confusing, but I'll settle for Java explainations 
though. )


-- Keith H --




Perhaps these could be interesting:

http://en.wikipedia.org/wiki/Quaternion
http://www.gamasutra.com/features/19980703/quaternions_01.htm


Without wishing to plug my book *too* often in a short space of time, I do 
cover quaternions there in a brief and fairly discursive way which might be 
easier to understand: http://www.amazon.com/gp/product/1584503300. I don't 
think the phrase 'gimbal lock' actually appears, though, so if you're 
looking for something that specific you might be better off with others' 
links: 3D is given quite a broad brush in the book.


You might also try Lengyel's Mathematics for 3D Game Programming, which has 
a decent section on quaternions and transforms in general.


Danny 


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Disabling F5 Key

2005-11-28 Thread JOR

Is there a way to trap and disable the F5 key when Flash has focus?

I have the javascript in place to prevent this on the rest of the html 
page but when the Flash movie has focus and F5 is pressed IE refreshes.


I've tried removing the keyListener inside the onKeyDown handler but 
that doesn't stop the event from bubbling out to the browser.



JOR


___
===  James O'Reilly
===
===  SynergyMedia, Inc.
===  www.synergymedia.net

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ::::::::::::: How to trace a movie ::::::::::::::: ? ? ?

2005-11-28 Thread Johannes Nel
anyway thanks for afterthought, which i still use.

On 11/28/05, g.wygonik <[EMAIL PROTECTED]> wrote:
>
> sadly, the word "trace" in the title is misleading. reading the
> question it appears as though the poster wants a thumbnail of a
> dynamic MovieClip to update as the main MovieClip updates.
>
> i think Flash 8's ability to take an existing MovieClip and grab a
> "screencap" of it via code and then display that in another place
> would be the best bet at this point.
>
> g.
>
> On 11/28/05, Marlon Harrison <[EMAIL PROTECTED]> wrote:
> > There's also this tutorial where you can install the debugger version
> > of the Flash Player and see the traces from any swf:
> >
> >
> http://www.actionscript.org/tutorials/beginner/trace_and_debug_from_your_browser/index.shtml
>
> --
> weblog: broadcast.artificialcolors.com
> blazePDF: www.blazepdf.com
> band: www.cutratebox.com
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



--
j:pn
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ::::::::::::: How to trace a movie ::::::::::::::: ? ? ?

2005-11-28 Thread g.wygonik
sadly, the word "trace" in the title is misleading. reading the
question it appears as though the poster wants a thumbnail of a
dynamic MovieClip to update as the main MovieClip updates.

i think Flash 8's ability to take an existing MovieClip and grab a
"screencap" of it via code and then display that in another place
would be the best bet at this point.

g.

On 11/28/05, Marlon Harrison <[EMAIL PROTECTED]> wrote:
> There's also this tutorial where you can install the debugger version
> of the Flash Player and see the traces from any swf:
>
> http://www.actionscript.org/tutorials/beginner/trace_and_debug_from_your_browser/index.shtml

--
weblog: broadcast.artificialcolors.com
blazePDF: www.blazepdf.com
band: www.cutratebox.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ::::::::::::: How to trace a movie ::::::::::::::: ? ? ?

2005-11-28 Thread Marlon Harrison
There's also this tutorial where you can install the debugger version
of the Flash Player and see the traces from any swf:

http://www.actionscript.org/tutorials/beginner/trace_and_debug_from_your_browser/index.shtml
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Download XML Object via FileReference?

2005-11-28 Thread Marlon Harrison
I made a flash i that builds a custom xml file, and I wondering if
it's possible to use Flash 8's new download functionality to take that
xml object that's built via the interface and have Flash generate the
file on it's own.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: Re: [Flashcoders] Re: Qauternions for avoiding gimbal-lock in 3D?

2005-11-28 Thread trevor
google it bruv!

quaternions site:gamedev.net

They have loads of stuff there that you'll be able to put into actionscript 
really easily - that's where i learnt how to use them. As another respondant 
said, you don't need to understand the 'why' just the 'how' which is nice, 
think of it as using a class someone else has written.

A lot of the sample code there is C++ but the explanations are clear enough i 
think

>
>All I've see online is Quaternions from a Mathematician's view that only
>a mad-scientist would understand. (Don't understand all the mathmatical
>notations, I rather see code.)
>I'm looking for more explainations of Quaternions from an Actionscript
>"code" point of view.
>(C would be too confusing, but I'll settle for Java explainations though. )
>
>-- Keith H --
>
>
>
>- Original Message -
>From: "A.Cicak" <[EMAIL PROTECTED]>
>Date: Monday, November 28, 2005 7:57 am
>Subject: [Flashcoders] Re: Qauternions for avoiding gimbal-lock in 3D?
>
>> you dont need actionscript tutorial, quaternions work everywhere in 
>> the same 
>> way, so just google for them, there are
>> many examples (most in C) but you can easily convert it to 
>> actionscript.
>> 
>> "keith" <[EMAIL PROTECTED]> wrote in message 
>> news:[EMAIL PROTECTED]
>> I read all over the internet about Quaternions are the solution for 
>> avoiding 
>> Gimbal-lock,but I
>> dont understand the math enough to use them for rotating 3D points.
>> 
>> I've looked at 
>> http://www.macromedia.com/devnet/flash/articles/3d_classes_03.html.
>> Its a nice tutorial, however I need more examples to study with 
>> Quaternions 
>> used in Actionscript.
>> 
>> Please post links or tutorials with Actionscript using Quaternions.
>> 
>> Thanks,
>> -- Keith H --
>> ___
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.com
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>> 
>> 
>> 
>> ___
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.com
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>> 
>___
>Flashcoders mailing list
>Flashcoders@chattyfig.figleaf.com
>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] DOS support for swf's

2005-11-28 Thread Mike Mountain
We have some LED dislays in the field that use very small res 16 colour
VGA graphics, all the hardware that runs them is quite old. Hence we use
old and bespoke software to create very small animation packages to run
on these systems. I'm looking for a solution to unify some of our
authoring packages and speed up production - and wondered if someone had
written an opens source DOS implimentation of the flash player (I didn't
hold out much hope) as this would allow us to utilise the small file
sizes and animation capabilities of the flash player as well as unifying
skills and production techniques with our more recent products.

Cheers

M

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of Nick Weekes
> Sent: 28 November 2005 11:46
> To: 'Flashcoders mailing list'
> Subject: RE: [Flashcoders] DOS support for swf's
> 
> Not 100%, but Id say no chance, due to the limitations of dos 
> + graphics..
> 
> Just out of curiosity, why??
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Qauternions for avoiding gimbal-lock in 3D?

2005-11-28 Thread Mark Winterhalder
On 11/28/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> All I've see online is Quaternions from a Mathematician's view that only
> a mad-scientist would understand. (Don't understand all the mathmatical
> notations, I rather see code.)
> I'm looking for more explainations of Quaternions from an Actionscript
> "code" point of view.
> (C would be too confusing, but I'll settle for Java explainations though. )

you don't have to understand quaternions in detail, only how to use
them and some of their properties. that's a huge difference, and much
easier :)

i found this faq extremely helpful:
http://skal.planet-d.net/demo/matrixfaq.htm

hth,
mark


--
http://snafoo.org/
jabber: [EMAIL PROTECTED]
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Font embedding using Font Symbols

2005-11-28 Thread Tomas Lehuta
Hello,
 
I need to embed fonts into my SWF using Font symbols in my library..
Could anybody tell me which character sents are embeded if a Font symbol is
created from an installed font.
I'd like to include all Unicode characters (for ex. Chinese characters of
Arial font) to be able to display multiple languages.. Is this possible?

best regards

Tomas Lehuta
---
Flash Developer
www.felisconsulting.com

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Qauternions for avoiding gimbal-lock in 3D?

2005-11-28 Thread maurizio piacenza [red cat]

[EMAIL PROTECTED] ha scritto:


All I've see online is Quaternions from a Mathematician's view that only
a mad-scientist would understand. (Don't understand all the mathmatical
notations, I rather see code.)
I'm looking for more explainations of Quaternions from an Actionscript
"code" point of view.
(C would be too confusing, but I'll settle for Java explainations though. )

-- Keith H --

 



Perhaps these could be interesting:

http://en.wikipedia.org/wiki/Quaternion
http://www.gamasutra.com/features/19980703/quaternions_01.htm

and:
http://www.macromedia.com/devnet/flash/articles/3d_classes.html


have also a look at this (not quaternions but interesting things about 3d):
http://www.kirupa.com/developer/actionscript/3dindex.htm

bye
red cat

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Qauternions for avoiding gimbal-lock in 3D?

2005-11-28 Thread khair
All I've see online is Quaternions from a Mathematician's view that only
a mad-scientist would understand. (Don't understand all the mathmatical
notations, I rather see code.)
I'm looking for more explainations of Quaternions from an Actionscript
"code" point of view.
(C would be too confusing, but I'll settle for Java explainations though. )

-- Keith H --



- Original Message -
From: "A.Cicak" <[EMAIL PROTECTED]>
Date: Monday, November 28, 2005 7:57 am
Subject: [Flashcoders] Re: Qauternions for avoiding gimbal-lock in 3D?

> you dont need actionscript tutorial, quaternions work everywhere in 
> the same 
> way, so just google for them, there are
> many examples (most in C) but you can easily convert it to 
> actionscript.
> 
> "keith" <[EMAIL PROTECTED]> wrote in message 
> news:[EMAIL PROTECTED]
> I read all over the internet about Quaternions are the solution for 
> avoiding 
> Gimbal-lock,but I
> dont understand the math enough to use them for rotating 3D points.
> 
> I've looked at 
> http://www.macromedia.com/devnet/flash/articles/3d_classes_03.html.
> Its a nice tutorial, however I need more examples to study with 
> Quaternions 
> used in Actionscript.
> 
> Please post links or tutorials with Actionscript using Quaternions.
> 
> Thanks,
> -- Keith H --
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> 
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Loading multiple images inside dynamic textfield

2005-11-28 Thread Sajid Saiyed
vspace works fien with images.
But it will spoil my layout becaause vspace gets applied to both, the
top and bottom of an image.

So So show the second image, I have to give vspace to the second image
just a little more then the first image height, this places the image
correctly, BUT, it also adds extra space equal to the vspace at the
bottom of the second image which is not required.

Looks like we need some more features here :)

Wonder if many people face this issue.

Sajid

On 11/28/05, MetaArt <[EMAIL PROTECTED]> wrote:
> ok, I see it...
> well, how I wrote, you have no enough text between the two images. The text
> that flow on right side is just five rows, when you need about 18/20 only
> for get the high of first image...
> Take a look at this demo: http://www.viawebinstitute.com/demo.php
> As you can see, many images are inside the textfield, but need to be placed
> with some text in the middle of images.
> About tips of Gregory, if you use hspace, this have no result, and vspace
> work just with text, not with images.
>
>  Enrico Tomaselli
>   +> web designer <+
>   [EMAIL PROTECTED]
> http://www.metatad.it
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Loading multiple images inside dynamic textfield

2005-11-28 Thread MetaArt
ok, I see it...
well, how I wrote, you have no enough text between the two images. The text
that flow on right side is just five rows, when you need about 18/20 only
for get the high of first image...
Take a look at this demo: http://www.viawebinstitute.com/demo.php
As you can see, many images are inside the textfield, but need to be placed
with some text in the middle of images.
About tips of Gregory, if you use hspace, this have no result, and vspace
work just with text, not with images.

 Enrico Tomaselli
  +> web designer <+
  [EMAIL PROTECTED]
http://www.metatad.it

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Re: Qauternions for avoiding gimbal-lock in 3D?

2005-11-28 Thread A.Cicak
you dont need actionscript tutorial, quaternions work everywhere in the same 
way, so just google for them, there are
many examples (most in C) but you can easily convert it to actionscript.


"keith" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
I read all over the internet about Quaternions are the solution for avoiding 
Gimbal-lock,but I
dont understand the math enough to use them for rotating 3D points.

I've looked at 
http://www.macromedia.com/devnet/flash/articles/3d_classes_03.html.
Its a nice tutorial, however I need more examples to study with Quaternions 
used in Actionscript.

Please post links or tutorials with Actionscript using Quaternions.

Thanks,
-- Keith H --
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Loading multiple images inside dynamic textfield

2005-11-28 Thread Sajid Saiyed
Hi,
There is a thin scrollbaar onthe right hand side.

Maybe its too small to be noticed.

You can scroll down to see the images.

Sajid

On 11/28/05, MetaArt <[EMAIL PROTECTED]> wrote:
> When I go to the page, just two blog are showed: Flash Blog is ready to
> view, and Flash Blog based on Wordpress.
> However, you must put enough text between the two images, so it flow on
> right side of first image, therefore fill one or two rows of entire width of
> thexfield, and therefore put the second image.
> I know, its a very bad bug, like other that you remark, the impossibility to
> center images, while for text you can do.
> We can just hope that in the next future Macromedia (or Adobe?...) solve
> this.
>
>  Enrico Tomaselli
>   +> web designer <+
>   [EMAIL PROTECTED]
> http://www.metatad.it
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Loading multiple images inside dynamic textfield

2005-11-28 Thread MetaArt
When I go to the page, just two blog are showed: Flash Blog is ready to
view, and Flash Blog based on Wordpress.
However, you must put enough text between the two images, so it flow on
right side of first image, therefore fill one or two rows of entire width of
thexfield, and therefore put the second image.
I know, its a very bad bug, like other that you remark, the impossibility to
center images, while for text you can do.
We can just hope that in the next future Macromedia (or Adobe?...) solve
this.

 Enrico Tomaselli
  +> web designer <+
  [EMAIL PROTECTED]
http://www.metatad.it

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Re: Loading multiple images inside dynamic text field

2005-11-28 Thread Gregory_GOusable
 Sajid,
 I can't see any hspace/vspace in your code:
  start code 
Today I was looking at the easter egg of Flash 8 and found pictures of two of 
my friends.

http://www.ssdesigninteractive.com/blog/archives/kp.jpg";
width="450" height="348" />

Testing multiple images inside dynamic text field.
http://www.ssdesigninteractive.com/blog/archives/amit.jpg"; width="450"
height="348" />  
  end code 

 IMHO, you'd better try to make a "testing movie" (a small file) separated from 
your
 blog.  This is the way I usually do.
  BTW, I've tried the solution  before sending it to list ;-)


-- 
Best regards,
 Gregory_GOusable

http://GOusable.com
Flash components development.
Usability services.

> Sorry the link had a spelling mistake:
> It should be
> http://www.ssdesigninteractive.com/flashBlog.html
> 
> Sajid
> 
> 
> On 11/28/05, Sajid Saiyed <[EMAIL PROTECTED]> wrote:
>> Still does'nt work.
>>
>> Has anyone tried loading multiple images in one dynamic textfield?
>>
>> I am stuck here.
>>
>> Gregory, I tried using HSPACE as u mentioned and u can see the result here.
>> http://www.ssdesigninteracative.com/flashBlog.html
>>
>> Scroll down a little to find an entry with images.
>>
>> HSPACE spoils the layout.
>> VSPACE also does the same.
>>
>> Thanks for any help.
>> Sajid


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Flash Remoting, NAT problem

2005-11-28 Thread Johan Lopes
Hi Jorge,

This could be a long shot but...

Make sure your Flash remoting Server is bound to an IP address? By
default it bounds to your localhost/127.0.0.1.

Find your frconfig.txt and make sure you put your internal network IP
address (192.168.0.x) in the right place. Otherwise, it'll only work
as a development server and take requests from Localhost only!



# Flash Remoting MX for .NET  -  Configuration File
# Each configuration property should begin on a new line using a key =
value format.
#
SN= YOUR SERIAL NUMBER
IP= YOUR IP
Log Level=Error
Log File Size=1048576



HTH,

/Johan

On 11/27/05, Jorge Tejada <[EMAIL PROTECTED]> wrote:
> Hi everybody, We have a Windows 2000 Server with CFMX7 installed, We are
> doing NAT to it from a Linux Server, because it is on our internal networtk,
> everything was fine, but when we test flash remoting it didn't work, what
> are we doing wrong?.
>
> Regards
>
> Jorge Carlos
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Loading multiple images inside dynamic textfield

2005-11-28 Thread Sajid Saiyed
Hi Enrico,

I put the BR tags, I also added some TEXT between images.

You can see the results, its putting the text on the right hand side
of the image.
I tried looking at the supported HTML tgas and it says, I can only
ALIGN to LEFT OR RIGHT.

Thats strange, no option for CENTRE align an image.

Since my image is smaller then the textfield width, the spacer text i
am putting is getting wrapped to the right side of imge and making my
image load over the other image.

To look at the problem i am talking about, go to the link and scroll
down to the blog entry caalled, FRIENDS AT MACROMEDIA.

Thanks.
Sajid

On 11/28/05, MetaArt <[EMAIL PROTECTED]> wrote:
> At the page you wrote the the url, I can't find any image...
> I just see text, with empty row after any text row...
> However, to load many images into a dynamic textfield, you must take care
> only of few rules:
> - put a  tag before and after the  tag
> - set the width of image always more smaller than textfield width
> - leave always some rows of text between two images
> Try this rules, and post again if don't work.
> Remember, the rules 2 and 3 mean much: you must place the images inside the
> text, so this can flow around image itself, and therefore set the width of
> images with an enough difference to textfield width; at last, this
> difference must leave space for 10/15 characters (this just for good reading
> reason).
>
>  Enrico Tomaselli
>   +> web designer <+
>   [EMAIL PROTECTED]
> http://www.metatad.it
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] [ann] Sydney Developers Group December Meeting

2005-11-28 Thread Chris Velevitch
Tues, 6th Dec, ActionScript 3 by Robin Hilliard at 6pm for 6:30 start
at MLC School Burwood.

Tonight Robin Hilliard of Rocketboots discuss and show us Actionscript 3.

While FlashDev meetings are free and open to all it's best to RSVP to
help with catering.

http://www.flashdev.org.au/program/
http://www.flashdev.org.au/venue/school/


Chris
--
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] DOS support for swf's

2005-11-28 Thread Nick Weekes
Not 100%, but Id say no chance, due to the limitations of dos + graphics..

Just out of curiosity, why??
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mike
Mountain
Sent: 28 November 2005 11:07
To: Flashcoders mailing list
Subject: [Flashcoders] DOS support for swf's

Shot in the dark here and I doubt I'll be successful but I may get
lucky:

Anyone know of any software that can play a swf full screen in DOS (say on a
486 for example) even if it's only flash player 1, 2 or 3?

Cheers

M
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Loading multiple images inside dynamic textfield

2005-11-28 Thread MetaArt
At the page you wrote the the url, I can't find any image...
I just see text, with empty row after any text row...
However, to load many images into a dynamic textfield, you must take care
only of few rules:
- put a  tag before and after the  tag
- set the width of image always more smaller than textfield width
- leave always some rows of text between two images
Try this rules, and post again if don't work.
Remember, the rules 2 and 3 mean much: you must place the images inside the
text, so this can flow around image itself, and therefore set the width of
images with an enough difference to textfield width; at last, this
difference must leave space for 10/15 characters (this just for good reading
reason).

 Enrico Tomaselli
  +> web designer <+
  [EMAIL PROTECTED]
http://www.metatad.it

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] loading txt file in many mc

2005-11-28 Thread Stephen Beattie

Try this,

coded in Outlook so may not work of the bat but should give you some idea.

loadVariables("file.txt", _root.mc);

prefix your mcs you want the variables to appear in with  or whatever
and then:

var prefix = 'pre_';
var seedMC = _root.mc;

foreach( var mc in this )
{   
if( mc._name.substr( 0,prefix.length ) == prefix )
{
foreach( var prop in seedMC )
{
if( prop.substr(0,1) != '_' )
{   // skip '_x', '_y', '_alpha' etc
mc[prop] = seedMC[prop];
}
}
}
}

It's always better to create a container property inside each mc to hold your 
data - then you can iterate over that ans skip all the MovieClip class 
properties which you want to ignore.

HTH

Stephen



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of MetaArt
Sent: 28 November 2005 10:51
To: Flashcoders mailing list
Subject: [Flashcoders] loading txt file in many mc


There is a way to laod, at the same time and with just one line code, a .txt
file content inside many mc on stage?
Without repeat "loadVariables("file.txt", _root.mc);" as much time as are
the mcs.

 Enrico Tomaselli
  +> web designer <+
  [EMAIL PROTECTED]
http://www.metatad.it

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Loading multiple images inside dynamic text field

2005-11-28 Thread Sajid Saiyed
Sorry the link had a spelling mistake:
It should be
http://www.ssdesigninteractive.com/flashBlog.html

Sajid


On 11/28/05, Sajid Saiyed <[EMAIL PROTECTED]> wrote:
> Still does'nt work.
>
> Has anyone tried loading multiple images in one dynamic textfield?
>
> I am stuck here.
>
> Gregory, I tried using HSPACE as u mentioned and u can see the result here.
> http://www.ssdesigninteracative.com/flashBlog.html
>
> Scroll down a little to find an entry with images.
>
> HSPACE spoils the layout.
> VSPACE also does the same.
>
> Thanks for any help.
> Sajid
>
> On 11/27/05, Gregory_GOusable <[EMAIL PROTECTED]> wrote:
> > Sajid,
> >
> > You need to add  tag instead of  AND hspace/vspace attributes
> > to your IMG.
> > Current html:
> > > > > > > src="http://www.ssdesigninteractive.com/blog/archives/kp.jpg";
> > > > width="450" height="348" />
> > > > 
> > > >  > > > src="http://www.ssdesigninteractive.com/blog/archives/amit.jpg";
> > > > width="450" height="348" />
> >
> > Need:
> >  > src="http://www.ssdesigninteractive.com/blog/archives/kp.jpg";
> >  width="450" height="348" />
> >  
> >  > src="http://www.ssdesigninteractive.com/blog/archives/amit.jpg";
> >  width="450" height="348"   hspace="180"  />
> >
> >  I think this should help.
> >
> >
> > --
> > Best regards,
> >  Gregory_GOusable
> > 
> > http://GOusable.com
> > Flash components development.
> > Usability services.
> >
> > >  Fri, 25 Nov 2005, Sajid Saiyed wrote:
> > >
> > > still noone?
> > >
> > > --Sajid
> > >
> > > On 11/25/05, Sajid Saiyed <[EMAIL PROTECTED]> wrote:
> > >> Hi,
> > >> Was anyone able to look at this question.
> > >>
> > >> Any feedback is appreciated.
> > >>
> > >> Thanks
> > >>
> > >> On 11/25/05, Sajid Saiyed <[EMAIL PROTECTED]> wrote:
> > >> > Hi,
> > >> > I was surprised to see this result.
> > >> >
> > >> > I have a Dynamic text field on stage.
> > >> > I am loading some XML data which contains HTML formatted text inside 
> > >> > CDATA tag.
> > >> >
> > >> > The content of CDATA is something like:
> > >> >
> > >> >  > >> > src="http://www.ssdesigninteractive.com/blog/archives/kp.jpg";
> > >> > width="450" height="348" />
> > >> > 
> > >> >  > >> > src="http://www.ssdesigninteractive.com/blog/archives/amit.jpg";
> > >> > width="450" height="348" />
> > >> >
> > >> > Now when I run the movie, the two images load BUT the spacing between
> > >> > the two images is just a line break given by .
> > >> >
> > >> > Also the images overlap each other.
> > >> >
> > >> > I expected the two images to load in line one fter another.
> > >> >
> > >> > Anyone faced this problem before?
> > >> >
> > >> > *** note: If you want to look at the actual problem, try this URL.
> > >> > Scroll down a bit to the post called "FRIENDS AT MACROMEDIA" .
> > >> >
> > >> > http://www.ssdesigninteractive.com/flashblog.html
> > >> >
> > >> > This is my flash frontend for Wordpress, The archives and search links
> > >> > are not working currently but you can explore otherwise.
> > >> >
> > >> > Thanks
> > >> >
> > >>
> >
> >
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Loading multiple images inside dynamic text field

2005-11-28 Thread Sajid Saiyed
Still does'nt work.

Has anyone tried loading multiple images in one dynamic textfield?

I am stuck here.

Gregory, I tried using HSPACE as u mentioned and u can see the result here.
http://www.ssdesigninteracative.com/flashBlog.html

Scroll down a little to find an entry with images.

HSPACE spoils the layout.
VSPACE also does the same.

Thanks for any help.
Sajid

On 11/27/05, Gregory_GOusable <[EMAIL PROTECTED]> wrote:
> Sajid,
>
> You need to add  tag instead of  AND hspace/vspace attributes
> to your IMG.
> Current html:
> > > > > src="http://www.ssdesigninteractive.com/blog/archives/kp.jpg";
> > > width="450" height="348" />
> > > 
> > >  > > src="http://www.ssdesigninteractive.com/blog/archives/amit.jpg";
> > > width="450" height="348" />
>
> Need:
>  src="http://www.ssdesigninteractive.com/blog/archives/kp.jpg";
>  width="450" height="348" />
>  
>  src="http://www.ssdesigninteractive.com/blog/archives/amit.jpg";
>  width="450" height="348"   hspace="180"  />
>
>  I think this should help.
>
>
> --
> Best regards,
>  Gregory_GOusable
> 
> http://GOusable.com
> Flash components development.
> Usability services.
>
> >  Fri, 25 Nov 2005, Sajid Saiyed wrote:
> >
> > still noone?
> >
> > --Sajid
> >
> > On 11/25/05, Sajid Saiyed <[EMAIL PROTECTED]> wrote:
> >> Hi,
> >> Was anyone able to look at this question.
> >>
> >> Any feedback is appreciated.
> >>
> >> Thanks
> >>
> >> On 11/25/05, Sajid Saiyed <[EMAIL PROTECTED]> wrote:
> >> > Hi,
> >> > I was surprised to see this result.
> >> >
> >> > I have a Dynamic text field on stage.
> >> > I am loading some XML data which contains HTML formatted text inside 
> >> > CDATA tag.
> >> >
> >> > The content of CDATA is something like:
> >> >
> >> >  >> > src="http://www.ssdesigninteractive.com/blog/archives/kp.jpg";
> >> > width="450" height="348" />
> >> > 
> >> >  >> > src="http://www.ssdesigninteractive.com/blog/archives/amit.jpg";
> >> > width="450" height="348" />
> >> >
> >> > Now when I run the movie, the two images load BUT the spacing between
> >> > the two images is just a line break given by .
> >> >
> >> > Also the images overlap each other.
> >> >
> >> > I expected the two images to load in line one fter another.
> >> >
> >> > Anyone faced this problem before?
> >> >
> >> > *** note: If you want to look at the actual problem, try this URL.
> >> > Scroll down a bit to the post called "FRIENDS AT MACROMEDIA" .
> >> >
> >> > http://www.ssdesigninteractive.com/flashblog.html
> >> >
> >> > This is my flash frontend for Wordpress, The archives and search links
> >> > are not working currently but you can explore otherwise.
> >> >
> >> > Thanks
> >> >
> >>
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] DOS support for swf's

2005-11-28 Thread Mike Mountain
Shot in the dark here and I doubt I'll be successful but I may get
lucky:

Anyone know of any software that can play a swf full screen in DOS (say
on a 486 for example) even if it's only flash player 1, 2 or 3?

Cheers

M
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] loading txt file in many mc

2005-11-28 Thread MetaArt
There is a way to laod, at the same time and with just one line code, a .txt
file content inside many mc on stage?
Without repeat "loadVariables("file.txt", _root.mc);" as much time as are
the mcs.

 Enrico Tomaselli
  +> web designer <+
  [EMAIL PROTECTED]
http://www.metatad.it

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] as like php?

2005-11-28 Thread MetaArt
Well, I try as you suggest...
I create a mc with an input txtfield inside, another mc with a dynamic
textfield, and a button with this action:
on (release) {
 var mytxt = _root.intxt.intxt;
 mytxt = "a\nb\nc\n";
 mytxt = mytxt.split("\n").join("");
 _root.outxt.testo = mytxt;
}
where 'intxt' is the mc with input field, and 'outxt' the dynamic textfield.
If I type:
worda
wordb
wordc
the result in outxt mc is:
a
b
c


 Enrico Tomaselli
  +> web designer <+
  [EMAIL PROTECTED]
http://www.metatad.it

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Install Flash player 8.5 for browsers

2005-11-28 Thread franto
I've clicked on every file in Player folder, and it's working now and
without reinstalling FB2 :)
thanks

On 11/28/05, Theodore E Patrick <[EMAIL PROTECTED]> wrote:
> In the Flex Builder 2 Alpha install, all player installers are within the
> directory:
>
> {FB2A1-INSTALLDIR}\Player\Version 8.5 alpha 1\Debug
>
> - ActiveX Installer
> - NS Installer
> - SAFlashPlayer.exe
>
> I also use Plug-in Switcher to manage all players on my systems. It is a
> great tool and makes testing and debugging in multiple players easy.
>
> http://www.kewbee.de/FlashPluginSwitcher/
>
> Cheers,
>
> Ted ;)
>
>
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:flashcoders-
> > [EMAIL PROTECTED] On Behalf Of franto
> > Sent: Monday, November 28, 2005 9:46 AM
> > To: Flashcoders mailing list
> > Subject: [Flashcoders] Install Flash player 8.5 for browsers
> >
> > Hi,
> >
> > how can I install Flash player 8.5 for browsers. I know, it can be
> > done when you are installing Flex Builder 2, but when I did it, i didn
> > want to install player for browsers, just standalone, to have flash
> > player 8 in browesers.
> >
> > But now I want to have 8.5 in browsers, but dunno how :( In flex
> > builders 2 folder there is folder player, where are .exe for
> > installing 8.5, but it seems it doesnt work :(
> >
> > I know that last possibility is reinstall FB2 , but I wantt to install
> > 8.5 without this feature :)
> >
> > Thank for your advances...
> > --
> > --
> > -
> > Franto
> >
> > http://blog.franto.com
> > http://www.flashcoders.sk
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > --
> > No virus found in this incoming message.
> > Checked by AVG Free Edition.
> > Version: 7.1.362 / Virus Database: 267.13.7/182 - Release Date: 11/24/2005
> >
>
> --
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.1.362 / Virus Database: 267.13.7/182 - Release Date: 11/24/2005
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>


--
-
Franto

http://blog.franto.com
http://www.flashcoders.sk
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Install Flash player 8.5 for browsers

2005-11-28 Thread Theodore E Patrick
In the Flex Builder 2 Alpha install, all player installers are within the
directory:

{FB2A1-INSTALLDIR}\Player\Version 8.5 alpha 1\Debug

- ActiveX Installer
- NS Installer
- SAFlashPlayer.exe

I also use Plug-in Switcher to manage all players on my systems. It is a
great tool and makes testing and debugging in multiple players easy. 

http://www.kewbee.de/FlashPluginSwitcher/

Cheers,

Ted ;)



> -Original Message-
> From: [EMAIL PROTECTED] [mailto:flashcoders-
> [EMAIL PROTECTED] On Behalf Of franto
> Sent: Monday, November 28, 2005 9:46 AM
> To: Flashcoders mailing list
> Subject: [Flashcoders] Install Flash player 8.5 for browsers
> 
> Hi,
> 
> how can I install Flash player 8.5 for browsers. I know, it can be
> done when you are installing Flex Builder 2, but when I did it, i didn
> want to install player for browsers, just standalone, to have flash
> player 8 in browesers.
> 
> But now I want to have 8.5 in browsers, but dunno how :( In flex
> builders 2 folder there is folder player, where are .exe for
> installing 8.5, but it seems it doesnt work :(
> 
> I know that last possibility is reinstall FB2 , but I wantt to install
> 8.5 without this feature :)
> 
> Thank for your advances...
> --
> --
> -
> Franto
> 
> http://blog.franto.com
> http://www.flashcoders.sk
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> --
> No virus found in this incoming message.
> Checked by AVG Free Edition.
> Version: 7.1.362 / Virus Database: 267.13.7/182 - Release Date: 11/24/2005
> 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.362 / Virus Database: 267.13.7/182 - Release Date: 11/24/2005
 

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders