Re: [Flashcoders] 3D engine for dynamic text

2013-01-14 Thread Claudio M. E. Bastos Iorio
I agree with the guys here on considering Away3D as a first choice.
However, let me also include another library, very similar to away3D 
Alternativa regarding specs and benchmarks, but also including a cleaner 3D
asset integration pipeline: Flare3D.

Let me know if you have more questions.

Claudio M. E. Bastos Iorio
http://www.blumersolutions.com
 On Jan 14, 2013 7:47 PM, Beatrix Krümmer-Frau birik...@hotmail.de
wrote:

 Away3D is the right choice, its easy to use and has a TextFiled3D Class.
 Together with a TextExtrusion Class you can make realy nice stuff.

 *Beatrix Kruemmer-Frau*
 Director Actionscripthero.org
 Master of Arts in Designer | Developer | CEH-LPIG

 www.actionscripthero.org | @ASHero_org | @birikini

 Am 14.01.2013 22:50, schrieb Randall Tinfow:

 Know little about 3D for AS3, so I'm struggling to decide where to focus
 my efforts.  What's the recommendation for a library that will build a 3D
 model and animate in realtime from input text?

 Papervision3D
 Away3D
 Sandy3D
 Alternativa3D?

 Hopefully the learning curve will not bury me.

 Thanks,

 Randy Tinfow
 IMAGE PLANT





 __**_
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.**com Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/**mailman/listinfo/flashcodershttp://chattyfig.figleaf.com/mailman/listinfo/flashcoders



 __**_
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.**com Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/**mailman/listinfo/flashcodershttp://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


RE: [Flashcoders] 3D engine for dynamic text

2013-01-14 Thread Claudio M. E. Bastos Iorio
I've did it.
You have a Flash exporter in Unity. Is not as mature as you would expect,
but it works. 
However, take into account that you'll need to avoid using certain Unity
classes, etc if you target Flash.
Definitely worth it, but also consider the learning curve as well.


Claudio M. E. Bastos Iorio
http://www.blumersolutions.com

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl
DeSaulniers
Sent: Monday, January 14, 2013 11:51 PM
To: Flash Coders List
Subject: Re: [Flashcoders] 3D engine for dynamic text

Has anyone tried Unity 3D? Do you know if it works with flash.
I have that one and was wanting to try it out, just hadn't yet.
Worth the time or no? There is also Swift 3D which has been updated recently
(I believe).
Swift 3D works with vectors well as far as I could tell.

Best,
Karl

On Jan 14, 2013, at 3:50 PM, Randall Tinfow wrote:

 Know little about 3D for AS3, so I'm struggling to decide where to 
 focus my efforts.  What's the recommendation for a library that will 
 build a 3D model and animate in realtime from input text?

 Papervision3D
 Away3D
 Sandy3D
 Alternativa3D?

 Hopefully the learning curve will not bury me.

 Thanks,

 Randy Tinfow
 IMAGE PLANT





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

Karl DeSaulniers
Design Drumm
http://designdrumm.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


[Flashcoders] AS2 open pps file from flash project

2011-10-05 Thread Bassam M
Hi Guys

can I open pps file from flash project, if anyone knows please help

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


[Flashcoders] AS3 load and unload swf from different movies

2011-06-13 Thread Bassam M
hi guys
I'm try to move from AS2 to AS3 I did some work with AS3 it seems to be easy
anyway i have problem with load and unload swf, in AS2 I use to use

loadMovie(movie.swf,level)
then from the movie.swf I can use back button to load the main movie again
or unload the movie if the level more the 0
in AS3 I use code
menu.movieBtn.addEventListener(MouseEvent.CLICK,loadMovieSwf);

function loadMovieSwf(event:Event)
{
var requestURL:URLRequest = new URLRequest(movie.swf)
var loader:Loader = new Loader()
loader.load(requestURL)
addChildAt(loader)

}

the problem I'm not able to unload movie from movie.swf I can unload
movie.swf from the main movie by this code
loader.unloadAndStop();
removeChild(_loader);
loader= null;
but if I place this code in movie.swf I get error
it was easy to do it in AS2 just unloadMovie(level)
I'm doing project with many swf files I have to load it from main page and
go back to main page I hope the problem is clear

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


Re: [Flashcoders] AS3 load and unload swf from different movies

2011-06-13 Thread Bassam M
Hi Ben
pls give me the link let me go through  it may help, I also had problem with
memory when i try to load movie into another  because I still didn't get the
logic of AS3 for load and unload.

On Tue, Jun 14, 2011 at 1:32 AM, Ben Sand b...@bensand.com wrote:

 Looked into this a while ago. Bottom line was you can never guarantee
 an unload, so repeated load/unload always have the potential for
 memory leaks.

 In the case of Flex apps it was never possible to completely clear
 them from memory.

 Our solution was to load other swfs in another window, though I
 appreciate this won't suit everyone. It may be possibleto load them on
 the same page with JavaScript communication between apps. If there is
 a physical overlap between the display areas, eg using z-index of CSS
 you may give up the option of 3d acceleration in flash 11 and there
 may be issues with display on some operating systems/ browsers

 On my phone now, but I can give links if you're interested

 On Tuesday, 14 June 2011, Bassam M sense...@gmail.com wrote:
  hi guys
  I'm try to move from AS2 to AS3 I did some work with AS3 it seems to be
 easy
  anyway i have problem with load and unload swf, in AS2 I use to use
 
  loadMovie(movie.swf,level)
  then from the movie.swf I can use back button to load the main movie
 again
  or unload the movie if the level more the 0
  in AS3 I use code
  menu.movieBtn.addEventListener(MouseEvent.CLICK,loadMovieSwf);
 
  function loadMovieSwf(event:Event)
  {
  var requestURL:URLRequest = new URLRequest(movie.swf)
  var loader:Loader = new Loader()
  loader.load(requestURL)
  addChildAt(loader)
 
  }
 
  the problem I'm not able to unload movie from movie.swf I can unload
  movie.swf from the main movie by this code
  loader.unloadAndStop();
  removeChild(_loader);
  loader= null;
  but if I place this code in movie.swf I get error
  it was easy to do it in AS2 just unloadMovie(level)
  I'm doing project with many swf files I have to load it from main page
 and
  go back to main page I hope the problem is clear
 
  thank you
  Bassam
  ___
  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] XML Gallery Viewer

2011-06-07 Thread Bassam M
Hi Guys
I need AS2 xml gallery viewer, it should be thumbnail and big image
something like this http://www.flashgallery.org/demo.html
but I need to have the fla source file to modify the code

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


Re: [Flashcoders] XML Gallery Viewer

2011-06-07 Thread Bassam M
Jason I knew all this but I was hoping to save time.
Thanks

On Tue, Jun 7, 2011 at 5:50 PM, Merrill, Jason 
jason.merr...@bankofamerica.com wrote:

  but I need to have the fla source file to modify the code

 I think a better approach is to:

 1. Learn how to load XML and get the data.
 2. Learn how to create display objects with code, animate and present them.
 3. Learn how to load external images.


  Jason Merrill
  Instructional Technology Architect
  Bank of America  Global Learning





 ___

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com [mailto:
 flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Bassam M
 Sent: Tuesday, June 07, 2011 3:24 AM
 To: Flash Coders List
 Subject: [Flashcoders] XML Gallery Viewer

 Hi Guys
 I need AS2 xml gallery viewer, it should be thumbnail and big image
 something like this http://www.flashgallery.org/demo.html
 but I need to have the fla source file to modify the code

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

 --
 This message w/attachments (message) is intended solely for the use of the
 intended recipient(s) and may contain information that is privileged,
 confidential or proprietary. If you are not an intended recipient, please
 notify the sender, and then please delete and destroy all copies and
 attachments, and be advised that any review or dissemination of, or the
 taking of any action in reliance on, the information contained in or
 attached to this message is prohibited.
 Unless specifically indicated, this message is not an offer to sell or a
 solicitation of any investment products or other financial product or
 service, an official confirmation of any transaction, or an official
 statement of Sender. Subject to applicable law, Sender may intercept,
 monitor, review and retain e-communications (EC) traveling through its
 networks/systems and may produce any such EC to regulators, law enforcement,
 in litigation and as required by law.
 The laws of the country of each sender/recipient may impact the handling of
 EC, and EC may be archived, supervised and produced in countries other than
 the country in which you are located. This message cannot be guaranteed to
 be secure or free of errors or viruses.

 References to Sender are references to any subsidiary of Bank of America
 Corporation. Securities and Insurance Products: * Are Not FDIC Insured * Are
 Not Bank Guaranteed * May Lose Value * Are Not a Bank Deposit * Are Not a
 Condition to Any Banking Service or Activity * Are Not Insured by Any
 Federal Government Agency. Attachments that are part of this EC may have
 additional important disclosures and disclaimers, which you should read.
 This message is subject to terms available at the following link:
 http://www.bankofamerica.com/emaildisclaimer. By messaging with Sender you
 consent to the foregoing.
 ___
 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] send email from flash project (exe)

2011-05-10 Thread Bassam M
Hi Cor
do you know why I can't receive Arabic text ,if I try to send  Arabic text
flash send data  like this %D9%84%D8%A8%D9%84%D8%A7%D8%AA%EF%BB%99, and I'm
recieving empty email, asp.net code working fine.

any idea

Thanks
Bassam

On Thu, May 5, 2011 at 2:32 AM, Bassam M sense...@gmail.com wrote:

 Thanks you Cor
 my code now working the problem was in the server

 Regard's
 Bassam


 On Thu, May 5, 2011 at 12:54 AM, Cor c...@chello.nl wrote:

 Hi Bassam,

 Try this:

 newLoadVars = new URLVariables();
 loadvarSend=new URLRequest((http://.sensemis.com/test/contact.aspx
 );
 loadvarSend.method=URLRequestMethod.POST;
 loadvarSend.data=newLoadVars;
 loadvarLoader=new URLLoader  ;
 loadvarLoader.dataFormat=URLLoaderDataFormat.VARIABLES;
 loadvarLoader.addEventListener(Event.COMPLETE, completeLoginHandler,
 false,
 0, true);
  newLoadVars.myName1 = main.name.txt_name.text;
 newLoadVars.myEmail1 = main.email.txt_email.text;
 newLoadVars.mySubject1 = main.subject.txt_subject.text;
 newLoadVars.myMassage1 = main.msg.txt_msg.text;
 loadvarLoader.load(loadvarSend);


 Regards,
 Cor van Dooren
 The Netherlands


 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Bassam M
 Sent: donderdag 5 mei 2011 9:43
 To: Flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] send email from flash project (exe)

 Hi Guys
 I'm I want to send email from flash project file I tried to use
 sendAndLoad
 but it's not working this is the Code

 var newLoadVars = new LoadVars();
newLoadVars.myName1 = main.name.txt_name.text;
newLoadVars.myEmail1 = main.email.txt_email.text;
newLoadVars.mySubject1 = main.subject.txt_subject.text;

newLoadVars.myMassage1 = main.msg.txt_msg.text;
newLoadVars.sendAndLoad(
 http://.sensemis.com/test/contact.aspx
 ,newLoadVars,POST);
trace(newLoadVars)

 I need help please

 Thanks
 Bassam
 ___
 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] send email from flash project (exe)

2011-05-10 Thread Bassam M
Hi Groeten
i embed it but not working

Thanks
Bassam

On 5/10/11, Cor c...@chello.nl wrote:
 Hi Bassam,

 You have to embed the Arabic characters.

 Groeten,
 Cor van Dooren
 www.codobyte.com
 --
  There are only 10 types of people in the world:
Those who understand binary and those who don't.

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Bassam M
 Sent: dinsdag 10 mei 2011 11:10
 To: Flash Coders List
 Subject: Re: [Flashcoders] send email from flash project (exe)

 Hi Cor
 do you know why I can't receive Arabic text ,if I try to send  Arabic text
 flash send data  like this %D9%84%D8%A8%D9%84%D8%A7%D8%AA%EF%BB%99, and I'm
 recieving empty email, asp.net code working fine.

 any idea

 Thanks
 Bassam

 On Thu, May 5, 2011 at 2:32 AM, Bassam M sense...@gmail.com wrote:

 Thanks you Cor
 my code now working the problem was in the server

 Regard's
 Bassam


 On Thu, May 5, 2011 at 12:54 AM, Cor c...@chello.nl wrote:

 Hi Bassam,

 Try this:

 newLoadVars = new URLVariables();
 loadvarSend=new
 URLRequest((http://.sensemis.com/test/contact.aspx
 );
 loadvarSend.method=URLRequestMethod.POST;
 loadvarSend.data=newLoadVars;
 loadvarLoader=new URLLoader  ;
 loadvarLoader.dataFormat=URLLoaderDataFormat.VARIABLES;
 loadvarLoader.addEventListener(Event.COMPLETE, completeLoginHandler,
 false, 0, true);
  newLoadVars.myName1 = main.name.txt_name.text;
 newLoadVars.myEmail1 = main.email.txt_email.text;
 newLoadVars.mySubject1 = main.subject.txt_subject.text;
 newLoadVars.myMassage1 = main.msg.txt_msg.text;
 loadvarLoader.load(loadvarSend);


 Regards,
 Cor van Dooren
 The Netherlands


 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of
 Bassam M
 Sent: donderdag 5 mei 2011 9:43
 To: Flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] send email from flash project (exe)

 Hi Guys
 I'm I want to send email from flash project file I tried to use
 sendAndLoad but it's not working this is the Code

 var newLoadVars = new LoadVars();
newLoadVars.myName1 = main.name.txt_name.text;
newLoadVars.myEmail1 = main.email.txt_email.text;
newLoadVars.mySubject1 = main.subject.txt_subject.text;

newLoadVars.myMassage1 = main.msg.txt_msg.text;
newLoadVars.sendAndLoad(
 http://.sensemis.com/test/contact.aspx
 ,newLoadVars,POST);
trace(newLoadVars)

 I need help please

 Thanks
 Bassam
 ___
 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

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


[Flashcoders] send email from flash project (exe)

2011-05-05 Thread Bassam M
Hi Guys
I'm I want to send email from flash project file I tried to use sendAndLoad
but it's not working
this is the Code

var newLaodVars = new LoadVars();
newLaodVars.myName1 = main.name.txt_name.text;
newLaodVars.myEmail1 = main.email.txt_email.text;
newLaodVars.mySubject1 = main.subject.txt_subject.text;

newLaodVars.myMassage1 = main.msg.txt_msg.text;
newLaodVars.sendAndLoad(http://.sensemis.com/test/contact.aspx
,newLaodVars,POST);
trace(newLaodVars)

I need help please

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


Re: [Flashcoders] send email from flash project (exe)

2011-05-05 Thread Bassam M
Thanks you Cor
my code now working the problem was in the server

Regard's
Bassam

On Thu, May 5, 2011 at 12:54 AM, Cor c...@chello.nl wrote:

 Hi Bassam,

 Try this:

 newLoadVars = new URLVariables();
 loadvarSend=new URLRequest((http://.sensemis.com/test/contact.aspx;);
 loadvarSend.method=URLRequestMethod.POST;
 loadvarSend.data=newLoadVars;
 loadvarLoader=new URLLoader  ;
 loadvarLoader.dataFormat=URLLoaderDataFormat.VARIABLES;
 loadvarLoader.addEventListener(Event.COMPLETE, completeLoginHandler, false,
 0, true);
  newLoadVars.myName1 = main.name.txt_name.text;
 newLoadVars.myEmail1 = main.email.txt_email.text;
 newLoadVars.mySubject1 = main.subject.txt_subject.text;
 newLoadVars.myMassage1 = main.msg.txt_msg.text;
 loadvarLoader.load(loadvarSend);


 Regards,
 Cor van Dooren
 The Netherlands


 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Bassam M
 Sent: donderdag 5 mei 2011 9:43
 To: Flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] send email from flash project (exe)

 Hi Guys
 I'm I want to send email from flash project file I tried to use sendAndLoad
 but it's not working this is the Code

 var newLoadVars = new LoadVars();
newLoadVars.myName1 = main.name.txt_name.text;
newLoadVars.myEmail1 = main.email.txt_email.text;
newLoadVars.mySubject1 = main.subject.txt_subject.text;

newLoadVars.myMassage1 = main.msg.txt_msg.text;
newLoadVars.sendAndLoad(http://.sensemis.com/test/contact.aspx
 ,newLoadVars,POST);
trace(newLoadVars)

 I need help please

 Thanks
 Bassam
 ___
 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] Removing movieClip from memory

2010-10-25 Thread m...@rcello
Hi Folks!

I have a doubt of how to remove a movieClip from the stage using
removeChild.
I put some sample code in this message and the mc 'ball' has a sound in it.
The process to attach a movie clip on Stage works fine! Also the process to
remove but...

Why does the sound still play without the object on Stage?
What can I do to remove it really from the memory?

var ball:MovieClip = new Ball();
ball.x = ball.y = 100;
addChild(ball);
stage.addEventListener(MouseEvent.CLICK, onClick, false, 0, true);
function onClick(evt:MouseEvent):void {
stage.removeEventListener(MouseEvent.CLICK, onClick);
this.removeChild(ball);
ball=null
trace(ball)
}

If somebody help me to fix it and continue my job, I'll be very thankful!

-- 
Marcelo
-
Email - Msn - GTalk
marcelo.tec...@gmail.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Removing movieClip from memory

2010-10-25 Thread m...@rcello
Hi Nathan. Thanks to answering me.

The sound really stoped, but if If put a EnterFrame function inside a ball
starting a trace (for example), it continue working inside a function.
But the sound was a sample. the object still working hidden in memory.
Do you have any ideia how to destroy an object with sounds, functions etc?

Thanks again!


On Mon, Oct 25, 2010 at 3:54 PM, Nathan Mynarcik nat...@mynarcik.comwrote:

 import flash.media.SoundMixer;

 SoundMixer.stopAll();

 Nathan Mynarcik
 nat...@mynarcik.com
 www.mynarcik.com

 http://www.mynarcik.com/feed/rss.xml
 http://www.twitter.com/NMynarcik
 
 http://www.facebook.com/pages/Nathan-Mynarcik-Interactive-Web-Developer/265263144230
 
  http://www.linkedin.com/in/nathanmynarcik




 On Mon, Oct 25, 2010 at 1:37 PM, m...@rcello marcelo.tec...@gmail.com
 wrote:

  Hi Folks!
 
  I have a doubt of how to remove a movieClip from the stage using
  removeChild.
  I put some sample code in this message and the mc 'ball' has a sound in
 it.
  The process to attach a movie clip on Stage works fine! Also the process
 to
  remove but...
 
  Why does the sound still play without the object on Stage?
  What can I do to remove it really from the memory?
 
  var ball:MovieClip = new Ball();
  ball.x = ball.y = 100;
  addChild(ball);
  stage.addEventListener(MouseEvent.CLICK, onClick, false, 0, true);
  function onClick(evt:MouseEvent):void {
 stage.removeEventListener(MouseEvent.CLICK, onClick);
 this.removeChild(ball);
 ball=null
 trace(ball)
  }
 
  If somebody help me to fix it and continue my job, I'll be very thankful!
 
  --
  Marcelo
  -
  Email - Msn - GTalk
  marcelo.tec...@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




-- 
Marcelo
-
Email - Msn - GTalk
marcelo.tec...@gmail.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] flash X html5

2010-04-20 Thread m...@rcello
Hi Folks!

This is my first message in this forum
Im a Brazillian Flash developer and i'd like to ask you about the future of
Flash platform.

Few times ago I became a little worried about the increasing of css/xhtml
web sites instead of flash websites. Actually I can sae many sites that
before was created using flash but now they're just using flash in some
elements on page.

I wanna know your oppinion about it. Should we really feel worry about the
css+js integration and the apple to turn off flash player inside iphone,
ipad, etc, or flash will always this

Sorry for some english errors in this message.

Thank's to everyone!

-- 
Marcelo
-
Email - Msn - GTalk
marcelo.tec...@gmail.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] calender component

2010-03-05 Thread Bassam M
Hi guys
anyone know where can I get free calender event component

I really need it

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


Re: [Flashcoders] JPGEncoder and com folder

2009-09-28 Thread Bassam M
Hi Glen
all this I knew I actually ask the question wrong way,my question I use
Library Graffiti AS3 but this library call JPGEncoder from import
com.adobe.images.JPGEncoder; my question was where to place JPGEncoder.
and where I can download JPGEncoder code .then I find out that I have to
create adobe folder and images folder and place it inside
first I thought this folder located inside the flash CS4 folder.

anyway thank you


On Mon, Sep 28, 2009 at 12:05 AM, Glen Pike postmas...@glenpike.co.ukwrote:

 Hi,

   This is really a bit of a newbie question, so if you have any more really
 basic ones like this, I would suggest trying the other list -
 http://chattyfig.figleaf.com/mailman/options/flashnewbie/ - but to give
 you a bit of a pointer...
 You can unzip the as3corelib files anywhere you like.  If you unzip in
 the same location as your project / FLA file, then you should see a folder
 called com in there - Flash will compile your movie okay because the
 classpath automatically includes the folder the FLA is in.

   If you put them somewhere else, you need to tell Flash where to look when
 compiling - add to your classpath.  Search for this in the Flash help
 because there are 2 places you can set it (for each fla file and globally)

   HTH

   Glen

 Bassam M wrote:

 Mike I'm confuse can you tell me where to copy the folder, I don't know
 where is com folder and the class I use Flash CS4



 On Fri, Sep 25, 2009 at 7:49 AM, Mike Chambers mcham...@adobe.com
 wrote:



 You need to download the code from the as3corelib library:

 http://code.google.com/p/as3corelib/

 mike chambers

 m...@adobe.com


 On Sep 24, 2009, at 4:36 PM, Bassam M wrote:

  Hi guys anybody know where is the folder  com.adobe I'm confuse about
 the


 class I don't know wher it's and I want to use JPEGEncoder but I'm
 getting
 error 1172: Definition com.adobe.images:JPGEncoder could not be found.
 so I want to place it inside the exact folder
 any Idea
 ___
 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




 --

 Glen Pike
 01326 218440
 www.glenpike.co.uk http://www.glenpike.co.uk


 ___
 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] Adobe Air loader another PDF File

2009-09-28 Thread Bassam M
hi guys

I'm trying to loader pdf file using XML to retrieve the URL  and I have
CombBox to list all the files ,and I need to load another file every time I
change the silder for the CombBox
the problem is the pdf file load only first time and dosent  change if I
select another one from the list, I dont know what the the probelm I tried
manything like removeChild and I tried to use container but no change, only
first time the file load

this is Adobe air application
this is the code

cb_list.addEventListener(SliderEvent.CHANGE,changehandler);
function changehandler(e:Event):void {

var sort1:String=cb_list.value;
var id:String = myXML.tip.(title == sort1)@id.toxmlstring();
//trace(id)
var slectedtip = myXML.tip.(title == sort1).fulltip.text();
tit_label.text=myXML.tip.(@ID == id).title .text();
date_label.text=myXML.tip.(@ID == id).date.text();
full_tip.text=myXML.tip.(@ID == id).fulltip.text();
var flashfileURL = myXML.tip.(@ID == id).picURL.text();
swfURL.text=flashfileURL;
var url:String = new String();
url= myXML.tip.(@ID == id).picURL.text().toXMLString();

var requestpdf:URLRequest=new URLRequest(url);
var container:Sprite = new Sprite();

var pdf = new HTMLLoader();
pdf.height=stage.stageHeight-150;
pdf.width=stage.stageWidth-270;
pdf.y=100;
pdf.x=260;
pdf.load(requestpdf);

   pdf.addEventListener(Event.COMPLETE, completeHandler);


function completeHandler(event:Event):void {

addChild(pdf);
}
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] JPGEncoder and com folder

2009-09-28 Thread Bassam M
yes it's done thank you

On Mon, Sep 28, 2009 at 7:19 PM, Glen Pike postmas...@glenpike.co.ukwrote:

 Hi,
 Sorry - I probably got the wrong end of the stick too.
 Did you sort out the problem?

   Glen


 Bassam M wrote:

 Hi Glen
 all this I knew I actually ask the question wrong way,my question I use
 Library Graffiti AS3 but this library call JPGEncoder from import
 com.adobe.images.JPGEncoder; my question was where to place JPGEncoder.
 and where I can download JPGEncoder code .then I find out that I have to
 create adobe folder and images folder and place it inside
 first I thought this folder located inside the flash CS4 folder.

 anyway thank you


 On Mon, Sep 28, 2009 at 12:05 AM, Glen Pike postmas...@glenpike.co.uk
 wrote:



 Hi,

  This is really a bit of a newbie question, so if you have any more
 really
 basic ones like this, I would suggest trying the other list -
 http://chattyfig.figleaf.com/mailman/options/flashnewbie/ - but to give
 you a bit of a pointer...
You can unzip the as3corelib files anywhere you like.  If you unzip in
 the same location as your project / FLA file, then you should see a
 folder
 called com in there - Flash will compile your movie okay because the
 classpath automatically includes the folder the FLA is in.

  If you put them somewhere else, you need to tell Flash where to look
 when
 compiling - add to your classpath.  Search for this in the Flash help
 because there are 2 places you can set it (for each fla file and
 globally)

  HTH

  Glen

 Bassam M wrote:



 Mike I'm confuse can you tell me where to copy the folder, I don't know
 where is com folder and the class I use Flash CS4



 On Fri, Sep 25, 2009 at 7:49 AM, Mike Chambers mcham...@adobe.com
 wrote:





 You need to download the code from the as3corelib library:

 http://code.google.com/p/as3corelib/

 mike chambers

 m...@adobe.com


 On Sep 24, 2009, at 4:36 PM, Bassam M wrote:

  Hi guys anybody know where is the folder  com.adobe I'm confuse about
 the




 class I don't know wher it's and I want to use JPEGEncoder but I'm
 getting
 error 1172: Definition com.adobe.images:JPGEncoder could not be found.
 so I want to place it inside the exact folder
 any Idea
 ___
 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





 --

 Glen Pike
 01326 218440
 www.glenpike.co.uk http://www.glenpike.co.uk


 ___
 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




 --

 Glen Pike
 01326 218440
 www.glenpike.co.uk http://www.glenpike.co.uk

 ___
 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] JPGEncoder and com folder

2009-09-27 Thread Bassam M
Mike I'm confuse can you tell me where to copy the folder, I don't know
where is com folder and the class I use Flash CS4



On Fri, Sep 25, 2009 at 7:49 AM, Mike Chambers mcham...@adobe.com wrote:

 You need to download the code from the as3corelib library:

 http://code.google.com/p/as3corelib/

 mike chambers

 m...@adobe.com


 On Sep 24, 2009, at 4:36 PM, Bassam M wrote:

  Hi guys anybody know where is the folder  com.adobe I'm confuse about the
 class I don't know wher it's and I want to use JPEGEncoder but I'm getting
 error 1172: Definition com.adobe.images:JPGEncoder could not be found.
 so I want to place it inside the exact folder
 any Idea
 ___
 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] JPGEncoder and com folder

2009-09-24 Thread Bassam M
Hi guys anybody know where is the folder  com.adobe I'm confuse about the
class I don't know wher it's and I want to use JPEGEncoder but I'm getting
error 1172: Definition com.adobe.images:JPGEncoder could not be found.
so I want to place it inside the exact folder
any Idea
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] streaming video on my server

2009-09-09 Thread Bassam M
thank you Jared, I found the solution it was the MIME TYPE i have to add flv
MIME type to the IIS

http://kb2.adobe.com/cps/194/tn_19439.html



On Wed, Sep 9, 2009 at 1:05 AM, jared stanley jared.stan...@gmail.comwrote:

 I remember running into this a few years ago; it had to do with the
 server not recognizing the .flv filetype - i would check that first.

 as far as just playing it off your server, you might want to try
 progressive download instead of streaming; that is the most common way
 of serving video and sounds like it might suit your needs.


 On Tue, Sep 8, 2009 at 6:46 AM, Bassam Msense...@gmail.com wrote:
  Hi Guys
 
  I have problem with playing video on my server, I create video player
 using
  the media components and every thing working fine , the video play fine I
  have not problem but when I upload the file to my site it stop working
 not
  video stream, I also used another player but same problem and I got error
  message (media not found)
  I need to know do I have to install flash media server on my server to
 play
  the video because my server don't have flash media server or please
  someboday tell my what to do
 
  Thanks
  Bassam
  ___
  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] streaming video on my server

2009-09-08 Thread Bassam M
Hi Guys

I have problem with playing video on my server, I create video player using
the media components and every thing working fine , the video play fine I
have not problem but when I upload the file to my site it stop working not
video stream, I also used another player but same problem and I got error
message (media not found)
I need to know do I have to install flash media server on my server to play
the video because my server don't have flash media server or please
someboday tell my what to do

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


[Flashcoders] Flash and Video

2009-06-01 Thread Lehr, Theodore M (N-SGIS)
I have a .mov file that I want to import into a movie and then slow it
down (slow motion). Any way to do this?

 

Ted

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


[Flashcoders] franch Symbols not showing

2009-04-10 Thread Bassam M
Hi everybody
I'm doing one project in French it's flash CD presentation  but i have this
problem
Symbols like ë and é not showing in textfield I don't know what to do if
anyone know how to solve this problem please tell me I need to deliver the
project soon

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


Re: [Flashcoders] franch Symbols not showing

2009-04-10 Thread Bassam M
I tryed to embed Latin and Auto Fill  but still those symbole not showing (*é
à) *

On Fri, Apr 10, 2009 at 2:09 PM, laurent laur...@logiquefloue.org wrote:

 Bassam M a écrit :

  Hi everybody
 I'm doing one project in French it's flash CD presentation  but i have
 this
 problem
 Symbols like ë and é not showing in textfield I don't know what to do if
 anyone know how to solve this problem please tell me I need to deliver the
 project soon

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




 you have to embed the latin characters. The minimum one is enough. If not
 just add thos characters
 L
 ___
 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] franch Symbols not showing

2009-04-10 Thread Bassam M
thank you guys It was font problem
its solved

On Fri, Apr 10, 2009 at 2:30 PM, Matt S. mattsp...@gmail.com wrote:

 did you try typing those specific characters into the embed input field?

 .m

 On Fri, Apr 10, 2009 at 9:25 AM, Bassam M sense...@gmail.com wrote:
  I tryed to embed Latin and Auto Fill  but still those symbole not showing
 (*é
  à) *
 
  On Fri, Apr 10, 2009 at 2:09 PM, laurent laur...@logiquefloue.org
 wrote:
 
  Bassam M a écrit :
 
   Hi everybody
  I'm doing one project in French it's flash CD presentation  but i have
  this
  problem
  Symbols like ë and é not showing in textfield I don't know what to do
 if
  anyone know how to solve this problem please tell me I need to deliver
 the
  project soon
 
  Thanks
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
 
 
  you have to embed the latin characters. The minimum one is enough. If
 not
  just add thos characters
  L
  ___
  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] franch Symbols not showing

2009-04-10 Thread Bassam M
I just changed the font to arial and it's working fine
thanks

On Fri, Apr 10, 2009 at 2:43 PM, Bassam M sense...@gmail.com wrote:

  thank you guys It was font problem
 its solved

   On Fri, Apr 10, 2009 at 2:30 PM, Matt S. mattsp...@gmail.com wrote:

 did you try typing those specific characters into the embed input field?

 .m

 On Fri, Apr 10, 2009 at 9:25 AM, Bassam M sense...@gmail.com wrote:
  I tryed to embed Latin and Auto Fill  but still those symbole not
 showing (*é
  à) *
 
  On Fri, Apr 10, 2009 at 2:09 PM, laurent laur...@logiquefloue.org
 wrote:
 
  Bassam M a écrit :
 
   Hi everybody
  I'm doing one project in French it's flash CD presentation  but i have
  this
  problem
  Symbols like ë and é not showing in textfield I don't know what to do
 if
  anyone know how to solve this problem please tell me I need to deliver
 the
  project soon
 
  Thanks
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
 
 
  you have to embed the latin characters. The minimum one is enough. If
 not
  just add thos characters
  L
  ___
  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


[Flashcoders] HTMLLoader problem

2009-02-23 Thread Lehr, Theodore M (N-SGIS)
I'm having a funny issue with HTMLLoader.  I'm getting a 1046: Type was
not found or was not a compile-time constant: HTMLLoader. Error for the
line of code below.

public var _htmlLoader:HTMLLoader = new HTMLLoader();

I'm importing HTMLLoader and URLLoader.  The odd part to me is the code
I am using to create a simple browser window works perfectly for an AIR
application, but when I try it in a Flash program I get the error.  Is
HTMLLoader only for AIR?  
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] to increase and decrease the size of a video

2009-02-06 Thread Ricardo M. Portilho

Hi,
I was wondering if it is possible to action script a slider to increase and
decrease the size of a video component that plays flv or a for swf video on
a higher level than main movie.
Any ideas?

tanks,
R. 


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


[Flashcoders] Starting a new thread

2009-02-06 Thread Ricardo M. Portilho


- Original Message - 
From: allandt bik-elliott (thefieldcomic.com) alla...@gmail.com

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Thursday, February 05, 2009 2:26 PM
Subject: Re: [Flashcoders] Does Flash fire any event(s) when...


Excuse me friend and all friends,
I didn't mean to do this hijajacked threads was a mistake, I really sorry, 
and you are 100% right,

so I just send a new thread I hope you can help me,

my best regards
R.



you could certainly increase / decrease the scale of a clip/sprite
containing a video playing flv

could you start a new thread in future, please? - i find these hijacked
threads really hard to follow

thanks



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


[Flashcoders] Does Flash fire any event(s) when...

2009-02-05 Thread Ricardo M. Portilho

Hi,
I was wondering if it is possible to action script a slider to increase and 
decrease the size of a video component that plays flv or a for swf video on 
a higher level than main movie.

Any ideas?

tanks,
R. 


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


Re: SPAM-LOW: Re: [Flashcoders] Arabic flipping

2008-12-04 Thread Bassam M
I have the same problem I tried everything but I couldn't solve the text
broken at the end of the of the line

If anybody know how to solve this problem please let me know it's know years
I'm having this prb



Thanks

On Thu, Dec 4, 2008 at 6:59 PM, Mike Grunwald [EMAIL PROTECTED]wrote:

 @Cedric

 I did see that. The problem with that is it's not XML. When I try to wrap
 any of the translations in tags, the words shift order. It has to have
 something to do with mixing Eastern and Western characters. I think it's
 tied to the alignment. Since Arabic is right justified, it displays properly
 when those are the only characters in the document. As soon as you introduce
 a Western character, it must automatically switch the justification and by
 doing so it flips the order of the Eastern words.



 On Dec 4, 2008, at 12:41 PM, Cedric Muller wrote:

 :(

 Did you see this post ?
 http://joeabiraad.com/design/how-to-write-arabic-in-flash-8/36

 hth,
 Cedric

 @Cedric

 It is weird and crazy.I know it's happening, so there's no need to show
 the client.

 PS I haven't taken hallucinogens in quite sometime so I'm ruling out a
 Flashback. Other people see it too.


 Mike Grunwald

 McDill Design
 626 N Water St
 Milwaukee, WI 53202
 414.277.8111
 mcdilldesign.com

 On Dec 4, 2008, at 11:57 AM, Cedric Muller wrote:

 OT but could you open the XLS and take a snapshot of the text, and then
 send to your client, to check if it is correct.
 Then, if ok, could you copy / paste this text into another document
 (like word, txt, xml) and take snapshots in order to send them to your
 client ?

 I find 'the order of words rearranged' very weird, almost crazy.

 hth,
 Cedric

 Not a stupid question @Ian.

 It's not  a matter of each individual character reversing the order. If
 it were I could convert the string to an array and reorder it ah la:

 var myCharity_L2R:String = myXML.ARB.CHARITY;
 var myCharity_R2L:String = myCharity_L2R.split().reverse().join();

  The actual problem is it's taking the order of words and rearranging
 them. And to answer you, it's not displaying properly in the SWF.



 On Dec 4, 2008, at 11:00 AM, Ian Thomas wrote:

 This is probably a stupid question - but does it matter?

 By which I mean - it may flip RTL text so that it's LTR in the XML
 file, but when it actually gets to the screen, is it still flipped?
 Can you control the flipping in the display on the screen, rather than
 worrying about it in the XML file?

 Ian

 On Thu, Dec 4, 2008 at 4:22 PM, Mike Grunwald
 [EMAIL PROTECTED] wrote:

 OK... I think I've reached the end of the internet as well as the end
 of my
 patients.

 I've been trying to figure out a way to take translations that I've
 received
 in an Excel spreadsheet and paste them into an XML document. The XML
 is
 UTF-8 and it's plain text (of course). No matter what editor (Flex
 Builder
 3, Dreamweaver, Text Edit, WordPad, NotePad, Word, etc.) or OS (OSX
 10.4,
 Windows XP) or combination of the two, it seems that when I try to
 combine
 the eastern translation with western markup (XML tags, or even
 western
 characters for that matter), as soon as I drop in a single character,
 if
 flips the orientation of the translated Arabic text?!?

 Everything that I find on the internet leads me hopeful down a path
 of
 ultimate disappointment. I know that I'm not the only one with this
 problem
 and I'm sure one of you has experienced this. Please let me in on you
 secrets. I beg you...

 Let me just clarify—My problem is not font related (I've got that all
 sorted
 out), and for the most part it's not really Flash related (except for
 the
 fact that I'm using this XML content for dynamic text fields). this
 list is
 probably not the proper place for this question, but I'm out of
 options and
 I thinking that I'm going to have to scrap some of the digging I've
 done in
 relation to getting text to display properly and make alterations to
 my
 application to load images instead of live type.

 Somebody... Anybody Help a brotha out!




 ___
 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] mouse event still down

2008-12-02 Thread Bassam M
hi guys

I have flash scroller it's working fine in flash but i have to use the
flash file in Director so when i use in director i have this problem .
if i try to drag the scroller down the mouse will release and scroller
will stop
I use this code

on (press)
{
startDrag (, false, 0, 0, 0, _parent._parent.line._height -
_parent._parent.dragMC._height);
}
on (release, releaseOutside)
{
stopDrag ();
}

i need to know how can I keep mouse press in director ther is one
event _mouse.stillDown  I need some thing same or if I can use
addListener

please need help urgent

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


Re: [Flashcoders] Good CMS options?

2008-11-14 Thread m

maybe that one:

http://www.flashden.net/item/flash-xml-editor/7588

best marcel


On 14.11.08 21:45, sebastian [EMAIL PROTECTED] wrote:

 Hi,
 
 Someone mentioned AIR XML editors as an easier way to allow clients to
 do content management.
 
 I have a few websites created now that are XML driven and I was
 wondering if there is a good CMS option [Content Management System]
 around that people are using to help clients circumvent the 'technical'
 barrier that XML and FTP still pose to the average person. The general
 issue seems to be that human-error is prone, and thus it breaks too
 easily [upload into the wrong FTP folder, forget to close a tag etc]
 
 I did a google search and came up with:
 
 http://flash.fincanon.com/archives/124
 
 Which is free and it works, only I can't see anyway to pre-define tags
 and attributes. My Flash and PHP/HTML systems are expected modules.
 Modules are pre-defined tags with specific attributes.
 
 So I was wondering if there is and AIR XML editor [or a web based
 editor-- which would be even better!] that also allows me, the webadmin,
 the pre-define tags and then just have the client fill in the
 values/upload pictures etc. as they please.
 
 If there is no free CMS option, and I do find a killer CMS that is not
 too expensive and does all that I am expecting [= allows customization],
 I could part with some cash.
 
 Thanks for any advice you may offer,
 
 Best,
 
 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


Re: [Flashcoders] open word document from flash

2008-10-24 Thread Bassam M
Hi Mendelson
I download Buddy API but I'm not able to open word file from director I can
open txt file by baOpenFile() can you tyell me to open word file or excel
from director using Buddy API.

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


[Flashcoders] open word document from flash

2008-10-23 Thread Bassam M
Hi guy
Is there anyway that I can open word-excel files from flash


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


RE: [Flashcoders] Selling a Flash website

2008-09-29 Thread Lehr, Theodore M (N-SGIS)
Ebay?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gert-Jan
van der Wel
Sent: Monday, September 29, 2008 11:18 AM
To: Flash Coders List
Subject: [Flashcoders] Selling a Flash website

Hi everybody,

This might be a little off topic, but hopefully someone can help me out.

For the last couple of years a friend and I were happily running a  
project on the side called T-signers.com. It's a site where people can  
design and order their own custom t-shirts. It's always been a  
pleasure to work on it, but recently a couple of things have changed  
and we can't find the time anymore to work on it. At this moment we're  
thinking about selling it or finding some enthusiastic developers to  
continue the project. Does anybody know how we should handle this?

Thanks!
Gert-Jan
___
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] Selling a Flash website

2008-09-29 Thread Lehr, Theodore M (N-SGIS)
That's probably what I would do - you simply package the domain name with your 
files and be done with it...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gert-Jan van der 
Wel
Sent: Monday, September 29, 2008 2:03 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Selling a Flash website

@Paul: It's a good suggestion, but we can't afford to hire someone at this
moment. We're making money, but not enough to hire someone.

@Theodore: Ebay could be an option. Has anybody done this?

Gert-Jan

2008/9/29 Lehr, Theodore M (N-SGIS) [EMAIL PROTECTED]

 Ebay?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Gert-Jan
 van der Wel
 Sent: Monday, September 29, 2008 11:18 AM
 To: Flash Coders List
 Subject: [Flashcoders] Selling a Flash website

 Hi everybody,

 This might be a little off topic, but hopefully someone can help me out.

 For the last couple of years a friend and I were happily running a
 project on the side called T-signers.com. It's a site where people can
 design and order their own custom t-shirts. It's always been a
 pleasure to work on it, but recently a couple of things have changed
 and we can't find the time anymore to work on it. At this moment we're
 thinking about selling it or finding some enthusiastic developers to
 continue the project. Does anybody know how we should handle this?

 Thanks!
 Gert-Jan
 ___
 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




-- 
Gert-Jan van der Wel
Co-Founder  CTO, Floorplanner.com

+31 (0)10 281 0799
+31 (0)6 1665 0338
[EMAIL PROTECTED]
http://www.floorplanner.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


[Flashcoders] Textarea

2008-09-26 Thread Lehr, Theodore M (N-SGIS)
I have a textarea that I am filling with an image followed by text - I
want the text to appear under the image but I can not figure out how to
get a hard return in after the image - I could do a bunch of br/'s but
it will be dynamic so there is no telling how big the image will be -
any ideas?

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


RE: [Flashcoders] Textarea

2008-09-26 Thread Lehr, Theodore M (N-SGIS)
1 sounds a little more involved than I want to get... 2 was my first
approach, but I end up with a (vertically speaking) very small scrolling
textfield - and it just does not look good - so my goal was to mimic a
div with an overflow of auto where the whole thing (image and text)
scrolls

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Rogers
Sent: Friday, September 26, 2008 10:27 AM
To: Flash Coders List
Subject: Re: [Flashcoders] Textarea

Two suggestions:

1) It's a bit extreme but in the end I think it would work.  Use the  
BitmapData Class to collect the image data, then use it to add  
additional transparent pixels to the left or right making the total  
width of the image the same width of your text field.  You then must  
use something like the PNGEncoder class to save it as a PNG and save  
it to a server using AMFPHP.  Make sure your .htmlText references this  
file directory and file name. Tthe transparent pixels should push the  
text below the image.

Here is the link to the PNGEncoder class:

http://www.5etdemi.com/blog/archives/2006/12/as3-png-encoder-faster-bett
er/

2) You could do all that but I would be more inclined to have the text  
field and picture be separate and have textfield's .y and .height  
properties adjust dynamically to the bitmap data of the dynamic image.



On Sep 26, 2008, at 8:56 AM, Lehr, Theodore M (N-SGIS) wrote:

 I have a textarea that I am filling with an image followed by text - I
 want the text to appear under the image but I can not figure out how  
 to
 get a hard return in after the image - I could do a bunch of br/'s  
 but
 it will be dynamic so there is no telling how big the image will be -
 any ideas?

 ___
 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] Textarea in MC issue

2008-09-26 Thread Lehr, Theodore M (N-SGIS)
I have a textarea mc that is getting put into another MC  The
problem I am having is when someone clicks on it - a green outline
appears around the textarea - and when you scroll - all of the text
becomes selected and the scroll OCCASSIONALLY gets stuck on the bottom 0
any thoughts?

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


[Flashcoders] HTML in a TextArea

2008-09-18 Thread Lehr, Theodore M (N-SGIS)
OK - so I have a textarea that I am having hold an image followed by
text... by default the text follows immediately by the text - I want the
text to be below the image... I have tried br/ and that works but the
size of the images is dynamic so there is no hard answer... I have also
tried p/p or wrapping the image in a div but none of those seem to
work - How can I get the text to be below the image no matter what?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] avoid red-eye effect library in photographs made in actionscript - possible?

2008-09-09 Thread Claudio M. E. Bastos Iorio
Hi, is possible the subject?
Is there any library/algorithm to avoid the red eye effect in a
photograph made in actionscript? I'm working on AIR, so access to file
system is covered.
If not, has any of you tried some library/solution? Any
help/link/idea is welcome. I'm making my research on this but can't
find anything..

Regards


_
Claudio M. E. Bastos Iorio
http://www.blumer.com.ar


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


[Flashcoders] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
I have a TexrArea I am creating via:

 

mx.controls.TextArea

 

I am trying to find a way to make it so the text is not selectable -
when I select some text I get a green border around the textarea - I
would like to get that to not show up and I am thinking that if they can
not select the text it will not show up... any ideas?

 

 

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


RE: [Flashcoders] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Yeah - didn't seem to affect anything


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Merrill,
Jason
Sent: Tuesday, September 09, 2008 12:06 PM
To: Flash Coders List
Subject: RE: [Flashcoders] TextArea class properties

Have you tried selectable = false?

Jason Merrill 
Bank of America 
Enterprise Technology  Global Risk LLD 
Instructional Technology  Media

Join the Bank of America Flash Platform Developer Community 

Are you a Bank of America associate interested in innovative learning
ideas and technologies?
Check out our internal  Innovative Learning Blog  subscribe. 


___
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] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Beauty - this works - but it is graying out my text - how can I maintain
the same text color when it is disabled... is there a style that is
applicable?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jon
Bradley
Sent: Tuesday, September 09, 2008 12:35 PM
To: Flash Coders List
Subject: Re: [Flashcoders] TextArea class properties

On Sep 9, 2008, at 12:05 PM, Merrill, Jason wrote:

 Have you tried selectable = false?

I think it might be:

textAreaInstance.enabled = false;

Getting rid of the focus rect is generally a separate issue though,  
but when the component 'enabled' property is set to false, the focus  
rect shouldn't show.

- jon


___
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] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Beauty - thanks all

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ian
Thomas
Sent: Tuesday, September 09, 2008 12:48 PM
To: Flash Coders List
Subject: Re: [Flashcoders] TextArea class properties

Try the style 'disabledColor'.
The docs are here:
http://livedocs.adobe.com/flex/3/langref/mx/controls/TextArea.html

Ian

On Tue, Sep 9, 2008 at 5:41 PM, Lehr, Theodore M (N-SGIS) 
[EMAIL PROTECTED] wrote:

 Beauty - this works - but it is graying out my text - how can I
maintain
 the same text color when it is disabled... is there a style that is
 applicable?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Jon
 Bradley
 Sent: Tuesday, September 09, 2008 12:35 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] TextArea class properties

 On Sep 9, 2008, at 12:05 PM, Merrill, Jason wrote:

  Have you tried selectable = false?

 I think it might be:

 textAreaInstance.enabled = false;

 Getting rid of the focus rect is generally a separate issue though,
 but when the component 'enabled' property is set to false, the focus
 rect shouldn't show.

 - jon


 ___
 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


[Flashcoders] Component Issue

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Ok - so I have a movie that serves something like a template. Content is
populated via creating text fields... removing movies and creating them
again

 

It all worked fine until I started using a textarea component... It
seems like the inclusion of components is screwing something up where
the textfields are not getting removed and content is getting piled on
top of each other

 

I know thiis is not much info and I do not have much to go on right now
- does this sound familiar with anyone - it only happended sense I
started including a component

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


RE: [Flashcoders] Component Issue

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Good old Google - it seems that getNextHighestDepth sets things out of
reach for removeMovieClip

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lehr,
Theodore M (N-SGIS)
Sent: Tuesday, September 09, 2008 3:24 PM
To: Flash Coders List
Subject: [Flashcoders] Component Issue

Ok - so I have a movie that serves something like a template. Content is
populated via creating text fields... removing movies and creating them
again

 

It all worked fine until I started using a textarea component... It
seems like the inclusion of components is screwing something up where
the textfields are not getting removed and content is getting piled on
top of each other

 

I know thiis is not much info and I do not have much to go on right now
- does this sound familiar with anyone - it only happended sense I
started including a component

___
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] textarea and transparent background

2008-09-05 Thread Lehr, Theodore M (N-SGIS)
I am changing the background color of a textarea via:

textArea.setStyle(backgroundColor,0xcc);

What I am wondering is if I can make it transparent?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] textarea and transparent background

2008-09-05 Thread Lehr, Theodore M (N-SGIS)
Thanks for the suggestion, but no dice

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Cor
Sent: Friday, September 05, 2008 11:15 AM
To: 'Flash Coders List'
Subject: RE: [Flashcoders] textarea and transparent background

Try textArea.setStyle(backgroundColor,0x00cc);

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lehr,
Theodore M (N-SGIS)
Sent: vrijdag 5 september 2008 17:08
To: Flash Coders List
Subject: [Flashcoders] textarea and transparent background

I am changing the background color of a textarea via:

textArea.setStyle(backgroundColor,0xcc);

What I am wondering is if I can make it transparent?
___
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] textarea and transparent background

2008-09-05 Thread Lehr, Theodore M (N-SGIS)
Thanks- it seems to be white by default - I'll try your suggestions -
I've been searching the docs and the web...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Glen
Pike
Sent: Friday, September 05, 2008 11:23 AM
To: Flash Coders List
Subject: Re: [Flashcoders] textarea and transparent background

Hi,

I am thinking that if you don't set a style, your text area will be 
transparent.  Although you might be able to specify none or 
transparent as a style - check the doc's for styling the component.

Glen

Lehr, Theodore M (N-SGIS) wrote:
 I am changing the background color of a textarea via:

 textArea.setStyle(backgroundColor,0xcc);

 What I am wondering is if I can make it transparent?
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


   

-- 

Glen Pike
01326 218440
www.glenpike.co.uk http://www.glenpike.co.uk

___
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] textarea and transparent background

2008-09-05 Thread Lehr, Theodore M (N-SGIS)
Thanks - finally found it in the docs:

// Give all TextArea components transparent backgrounds.
_global.styles.TextArea.backgroundColor = undefined;

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lehr,
Theodore M (N-SGIS)
Sent: Friday, September 05, 2008 11:35 AM
To: Flash Coders List
Subject: RE: [Flashcoders] textarea and transparent background

Thanks- it seems to be white by default - I'll try your suggestions -
I've been searching the docs and the web...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Glen
Pike
Sent: Friday, September 05, 2008 11:23 AM
To: Flash Coders List
Subject: Re: [Flashcoders] textarea and transparent background

Hi,

I am thinking that if you don't set a style, your text area will be 
transparent.  Although you might be able to specify none or 
transparent as a style - check the doc's for styling the component.

Glen

Lehr, Theodore M (N-SGIS) wrote:
 I am changing the background color of a textarea via:

 textArea.setStyle(backgroundColor,0xcc);

 What I am wondering is if I can make it transparent?
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


   

-- 

Glen Pike
01326 218440
www.glenpike.co.uk http://www.glenpike.co.uk

___
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] Dynamic Scrollable textfield

2008-09-04 Thread Lehr, Theodore M (N-SGIS)
Is there a way to make a textfield created via:

 

createTextField

 

scrollable through actionscript?

 

Ted

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


RE: [Flashcoders] Dynamic Scrollable textfield

2008-09-04 Thread Lehr, Theodore M (N-SGIS)
Thanks, but I am talking about having it scroll, not just be
multilined... Ideally, I would like to do it as simple as a div does in
html (style=overflow:auto; height:400px;) is there a simple way like
this in as?

Ted

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Cor
Sent: Thursday, September 04, 2008 12:42 PM
To: 'Flash Coders List'
Subject: RE: [Flashcoders] Dynamic Scrollable textfield

Set it to multlLine

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lehr,
Theodore M (N-SGIS)
Sent: donderdag 4 september 2008 18:20
To: Flash Coders List
Subject: [Flashcoders] Dynamic Scrollable textfield

Is there a way to make a textfield created via:

 

createTextField

 

scrollable through actionscript?

 

Ted

___
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] code acting differently

2008-09-04 Thread Lehr, Theodore M (N-SGIS)
I have this simple code:

 

createClassObject(mx.controls.TextArea, textArea, 0, {editable:false,
html:true, wordWrap:true, vScrollPolicy:auto});

textArea.setSize(250, 225);

textArea.move(25, 50);

textArea.text = bContent 1/bbrbrLorem ipsum dolor sit amet,
Integer vitae quam. Aliquam vestibulum. Curabitur nibh eros, tincidunt
eu, imperdiet non, pulvinar vel, pede. Cras scelerisque, neque non
fermentum suscipit, nulla nisl varius risus, brbrLorem ipsum dolor
sit amet, Integer vitae quam. Aliquam vestibulum. Curabitur nibh eros,
tincidunt eu, imperdiet non, pulvinar vel, pede. Cras scelerisque, neque
non fermentum suscipit, nulla nisl varius risus, brbrLorem ipsum
dolor sit amet, Integer vitae quam. Aliquam vestibulum. Curabitur nibh
eros, tincidunt eu, imperdiet non, pulvinar vel, pede. Cras scelerisque,
neque non fermentum suscipit, nulla nisl varius risus, brbrLorem
ipsum dolor sit amet, Integer vitae quam. Aliquam vestibulum. Curabitur
nibh eros, tincidunt eu, imperdiet non, pulvinar vel, pede. Cras
scelerisque, neque non fermentum suscipit, nulla nisl varius risus, ;

trace(textArea);

 

 

On one machine it works fine and textArea traces to _level0.textArea

 

On another machine it does not work and textArea is undefined... is
there something I am missing to be able to create the object?

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


RE: [Flashcoders] code acting differently

2008-09-04 Thread Lehr, Theodore M (N-SGIS)
Never mind... I was not including the textarea in the library of the one
movie...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lehr,
Theodore M (N-SGIS)
Sent: Thursday, September 04, 2008 3:34 PM
To: Flash Coders List
Subject: [Flashcoders] code acting differently

I have this simple code:

 

createClassObject(mx.controls.TextArea, textArea, 0, {editable:false,
html:true, wordWrap:true, vScrollPolicy:auto});

textArea.setSize(250, 225);

textArea.move(25, 50);

textArea.text = bContent 1/bbrbrLorem ipsum dolor sit amet,
Integer vitae quam. Aliquam vestibulum. Curabitur nibh eros, tincidunt
eu, imperdiet non, pulvinar vel, pede. Cras scelerisque, neque non
fermentum suscipit, nulla nisl varius risus, brbrLorem ipsum dolor
sit amet, Integer vitae quam. Aliquam vestibulum. Curabitur nibh eros,
tincidunt eu, imperdiet non, pulvinar vel, pede. Cras scelerisque, neque
non fermentum suscipit, nulla nisl varius risus, brbrLorem ipsum
dolor sit amet, Integer vitae quam. Aliquam vestibulum. Curabitur nibh
eros, tincidunt eu, imperdiet non, pulvinar vel, pede. Cras scelerisque,
neque non fermentum suscipit, nulla nisl varius risus, brbrLorem
ipsum dolor sit amet, Integer vitae quam. Aliquam vestibulum. Curabitur
nibh eros, tincidunt eu, imperdiet non, pulvinar vel, pede. Cras
scelerisque, neque non fermentum suscipit, nulla nisl varius risus, ;

trace(textArea);

 

 

On one machine it works fine and textArea traces to _level0.textArea

 

On another machine it does not work and textArea is undefined... is
there something I am missing to be able to create the object?

___
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] UIScrollBar and Style

2008-09-04 Thread Lehr, Theodore M (N-SGIS)
OK, so I am using:

 

createClassObject(mx.controls.TextArea, textArea, 0, {editable:false,
html:true, wordWrap:true, vScrollPolicy:auto});

textArea.setSize(250, 225);

textArea.move(25, 50);

textArea.text = bContent 1/bbrbrLorem ipsum dolor sit amet,
Integer vitae quam. Aliquam vestibulum. Curabitur nibh eros, tincidunt
eu, imperdiet non, pulvinar vel, pede. Cras scelerisque, neque non
fermentum suscipit, nulla nisl varius risus, brbrLorem ipsum dolor
sit amet, Integer vitae quam. Aliquam vestibulum. Curabitur nibh eros,
tincidunt eu, imperdiet non, pulvinar vel, pede. Cras scelerisque, neque
non fermentum suscipit, nulla nisl varius risus, brbrLorem ipsum
dolor sit amet, Integer vitae quam. Aliquam vestibulum. Curabitur nibh
eros, tincidunt eu, imperdiet non, pulvinar vel, pede. Cras scelerisque,
neque non fermentum suscipit, nulla nisl varius risus, brbrLorem
ipsum dolor sit amet, Integer vitae quam. Aliquam vestibulum. Curabitur
nibh eros, tincidunt eu, imperdiet non, pulvinar vel, pede. Cras
scelerisque, neque non fermentum suscipit, nulla nisl varius risus, ;

 

to create a textarea and scroll when necessary... I am able to style the
textarea the way I want to with:

 

textArea.setStyle(backgroundColor,0xcc);

 

How do I reach the UIScrollBar to set the style?

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


[Flashcoders] change text problem

2008-08-30 Thread Bassam M
Hello
I have this code to load movie and and keydown space
movie loading fine but I have problem with change the text in tit_txt is
dynamic  textfield

 _root.tit_txt.text = _root[tit+num] ;
the text value always movie1 I don't know why I trace (_root[tit+num])
it's change but the text movie 1 , movie2 ... but in text field not
change please see the code and help me to solve it




stop();
var tit1:String = Movie1;
var tit2:String = Movie2;
var tit3:String = Movie3;
var tit4:String = Movie4;
var tit5:String = Movie5;
var tit6:String = Movie6;
var tit7:String = Movie7;
var tit8:String = Movie8;
var tit9:String = Movie9;
var tit10:String = Movie10;
var num:Number = 0;
var keyListener:Object = new Object();
keyListener.onKeyDown = function() {
 if (Key.isDown(Key.SPACE)) {
  if (num=9) {
   num = num+1;
// load movie
   mplayer.contentPath = test_0+num+.flv;
// change text
   _root.tit_txt.text = _root[tit+num];
  } else {
   gotoAndPlay(last);
  }
  trace(num);
 }
};

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


[Flashcoders] XML and best method

2008-08-28 Thread Lehr, Theodore M (N-SGIS)
I have a project that involves xml... I am wondering how I should
organize my xml... would it be best (from a flash perspective) for it to
be on huge xml file with lots and lots of children - or would I be
better off breaking it into multiple xml files where one xml tag
references another xml file and so on...

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


[Flashcoders] barcode

2008-07-24 Thread Lehr, Theodore M (N-SGIS)
If I want to make a mc that is a bar code - is it a simple matter of
getting a bar code font? 

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


RE: [Flashcoders] Resizing Images

2008-07-24 Thread Lehr, Theodore M (N-SGIS)
I get an error on: var b:Bitmap;

It allows for BitmapData?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matt S.
Sent: Tuesday, July 22, 2008 12:59 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Resizing Images

smoothing. Cast the image as a Bitmap and apply smoothing, and you'll
be able to resize without image degradation.

function loadTheImage(iMG):void {
url = uploads/+iMG+.jpg;
var request:URLRequest = new URLRequest(url);
var loader:Loader = new Loader();
loader.load(request);
loader.contentLoaderInfo.addEventListener(Event.COMPLETE,
onThumbLoad);

loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,
preLoader);

}

function onThumbLoad(e:Event):void {
//cast the loaded content as Bitmap
var b:Bitmap;
b = e.target.content as Bitmap;
b.smoothing = true;

this.img_mc.addChild(b);
}

.m


On Tue, Jul 22, 2008 at 12:40 PM, Lehr, Theodore M (N-SGIS)
[EMAIL PROTECTED] wrote:
 I have a small movie where I am importing images and dynamically
 resizing them - the problem is that when it is shrunken - it gets
really
 pixellated - I am using jpegs - is there a way to make it so they look
 better - maybe import a different type of image ?

 ___
 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] Resizing Images

2008-07-24 Thread Lehr, Theodore M (N-SGIS)
The class or interface 'Bitmap' could not be loaded

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matt S.
Sent: Thursday, July 24, 2008 1:09 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Resizing Images

On Thu, Jul 24, 2008 at 12:50 PM, Lehr, Theodore M (N-SGIS)
[EMAIL PROTECTED] wrote:
 I get an error on: var b:Bitmap;

 It allows for BitmapData?


What error did you get?

.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] Resizing Images

2008-07-24 Thread Lehr, Theodore M (N-SGIS)
What if I max out at 2.0 - how would I smooth the images?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Helmut
Granda
Sent: Thursday, July 24, 2008 2:28 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Resizing Images

you need the bitmap class:
import flash.display.Bitmap;

On Thu, Jul 24, 2008 at 1:01 PM, Lehr, Theodore M (N-SGIS) 
[EMAIL PROTECTED] wrote:

 The class or interface 'Bitmap' could not be loaded

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Matt
S.
 Sent: Thursday, July 24, 2008 1:09 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Resizing Images

 On Thu, Jul 24, 2008 at 12:50 PM, Lehr, Theodore M (N-SGIS)
 [EMAIL PROTECTED] wrote:
  I get an error on: var b:Bitmap;
 
  It allows for BitmapData?
 

 What error did you get?

 .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




-- 
...helmut
___
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] Resizing Images

2008-07-22 Thread Lehr, Theodore M (N-SGIS)
I have a small movie where I am importing images and dynamically
resizing them - the problem is that when it is shrunken - it gets really
pixellated - I am using jpegs - is there a way to make it so they look
better - maybe import a different type of image ?

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


[Flashcoders] Listeners and onLoadComplete

2008-07-14 Thread Lehr, Theodore M (N-SGIS)
Trying again

 

I have:

 

this.createEmptyMovieClip(img_mc,999);

var my_mcl:MovieClipLoader = new MovieClipLoader();

mclListener.onLoadComplete = function(target_mc:MovieClip):Void {

   trace(onLoadComplete: +target_mc);

};

my_mcl.addListener(mclListener);

my_mcl.loadClip(http://www.helpexamples.com/flash/images/image1.jpg,
img_mc);

 

 

I am not getting the trace - does this code look right?

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


RE: [Flashcoders] Listeners and onLoadComplete

2008-07-14 Thread Lehr, Theodore M (N-SGIS)
Ahhh... I'm an idiot - thanks

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Hans
Wichman
Sent: Monday, July 14, 2008 3:37 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Listeners and onLoadComplete

Hi,
im missing the creating of the listener?
JC

On Mon, Jul 14, 2008 at 9:14 PM, Lehr, Theodore M (N-SGIS) 
[EMAIL PROTECTED] wrote:

 Trying again



 I have:



 this.createEmptyMovieClip(img_mc,999);

 var my_mcl:MovieClipLoader = new MovieClipLoader();

 mclListener.onLoadComplete = function(target_mc:MovieClip):Void {

   trace(onLoadComplete: +target_mc);

 };

 my_mcl.addListener(mclListener);

 my_mcl.loadClip(http://www.helpexamples.com/flash/images/image1.jpg,
 img_mc);





 I am not getting the trace - does this code look right?

 ___
 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] AS3 - Displaying images from a directory

2008-07-13 Thread Bassam M
Sjm  I asked this question before and I got the answer as the following

If your item classes are card1, card2, card3 and so on, and your code
currently works...


AboutButton.addEventListener(MouseEvent.CLICK, gocard);
function gocard(e:MouseEvent):void {
///
var cardName:String = card+String(1 + uint(Math.random()*49));  //
49 is the number of clips you have

var cardClass:Object = getDefinitionByName(cardName) as Object
var newcard:* = new cardClass();
// replace the asterisk i used for the base class that all your cards
extend from
///

 this.addChild(newcard);
 newcard.x = 25;
 newcard.y = 45;
}


I hope this help


On 7/8/08, Rich Shupe [EMAIL PROTECTED] wrote:

 these should all work:

 --FlashVar will work if you can edit the template (still no server-side
 required),
 --a list in a text or XML file where no server interaction is required but
 an external file is needed (should work unless your CMS radically alters
 your directory structure)
 --a pre-defined list or filename structure, as suggested (although I'd add
 error handling for the final failure)


 On 7/8/08 9:54 AM, SJM - Flash [EMAIL PROTECTED] wrote:

  My problem is the flash file is going to be embeded into a templete page
 to be
  added to a CMS unfortunatly there is no option for me to use any
 additional
  XML, PHP, ASP, Pearl script etc... the way i thought it would work is the
 path
  to the images would be a flash var!

 Rich
 http://www.LearningActionScript3.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] AS3 - Displaying images from a directory

2008-07-13 Thread Bassam M
Sorry I didn't get ur question right I thought from library !

On 7/13/08, Bassam M [EMAIL PROTECTED] wrote:

 Sjm  I asked this question before and I got the answer as the following

 If your item classes are card1, card2, card3 and so on, and your code
 currently works...


 AboutButton.addEventListener(MouseEvent.CLICK, gocard);
 function gocard(e:MouseEvent):void {
 ///
 var cardName:String = card+String(1 + uint(Math.random()*49));  //
 49 is the number of clips you have

 var cardClass:Object = getDefinitionByName(cardName) as Object
 var newcard:* = new cardClass();
 // replace the asterisk i used for the base class that all your cards
 extend from
 ///

  this.addChild(newcard);
  newcard.x = 25;
  newcard.y = 45;
 }


 I hope this help


  On 7/8/08, Rich Shupe [EMAIL PROTECTED] wrote:

 these should all work:

 --FlashVar will work if you can edit the template (still no server-side
 required),
 --a list in a text or XML file where no server interaction is required but
 an external file is needed (should work unless your CMS radically alters
 your directory structure)
 --a pre-defined list or filename structure, as suggested (although I'd add
 error handling for the final failure)


 On 7/8/08 9:54 AM, SJM - Flash [EMAIL PROTECTED] wrote:

  My problem is the flash file is going to be embeded into a templete page
 to be
  added to a CMS unfortunatly there is no option for me to use any
 additional
  XML, PHP, ASP, Pearl script etc... the way i thought it would work is
 the path
  to the images would be a flash var!

 Rich
 http://www.LearningActionScript3.comhttp://www.learningactionscript3.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


[Flashcoders] loop or if

2008-07-13 Thread Bassam M
Hi guys
 I have this simple question
I have this script

btn.addEventListener(MouseEvent.CLICK, f1);
function f1(e:MouseEvent):void {
 var i:Number = 2 ;
 if (i  10) {
  i = i++;
  trace(i =  + i);
 }
}
I want to multiple i when I click on btn I m getting i =  2 always i don't
understand  I need to change fon first click 2 then second 4 and so until 10

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



Re: [Flashcoders] loop or if

2008-07-13 Thread Bassam M
Yes sorry its traces 3 but I want to do something like on click multiple the
i var or and variable as I said first click i=2 then second click i = 4 and
so untile i =10

On 7/13/08, Hans Wichman [EMAIL PROTECTED] wrote:

 Hi,

 function f1(e:MouseEvent):void {
 var i:Number = 2 ;   //set i to 2
 if (i  10) {  //if i10 = true, so this always executes
 i = i++;  //i = now 3
 trace(i =  + i);  //traces 3 not 2?
 }
 you probably want to declare i as an instance variable, not a local var and
 then do i += i; or  i *= 2; or i = 1;

 greetz
 JC

 On Sun, Jul 13, 2008 at 12:56 PM, Bassam M [EMAIL PROTECTED] wrote:

  Hi guys
   I have this simple question
  I have this script
 
  btn.addEventListener(MouseEvent.CLICK, f1);
  function f1(e:MouseEvent):void {
   var i:Number = 2 ;
   if (i  10) {
   i = i++;
   trace(i =  + i);
   }
  }
  I want to multiple i when I click on btn I m getting i =  2 always i
 don't
  understand  I need to change fon first click 2 then second 4 and so until
  10
 
  thank u
  ___
  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] loop or if

2008-07-13 Thread Bassam M
Cor thank you it's working

On 7/13/08, Bassam M [EMAIL PROTECTED] wrote:

 Yes sorry its traces 3 but I want to do something like on click multiple
 the i var or and variable as I said first click i=2 then second click i = 4
 and so untile i =10

 On 7/13/08, Hans Wichman [EMAIL PROTECTED] wrote:

 Hi,

 function f1(e:MouseEvent):void {
 var i:Number = 2 ;   //set i to 2
 if (i  10) {  //if i10 = true, so this always executes
 i = i++;  //i = now 3
 trace(i =  + i);  //traces 3 not 2?
 }
 you probably want to declare i as an instance variable, not a local var
 and
 then do i += i; or  i *= 2; or i = 1;

 greetz
 JC

 On Sun, Jul 13, 2008 at 12:56 PM, Bassam M [EMAIL PROTECTED] wrote:

  Hi guys
   I have this simple question
  I have this script
 
  btn.addEventListener(MouseEvent.CLICK, f1);
  function f1(e:MouseEvent):void {
   var i:Number = 2 ;
   if (i  10) {
   i = i++;
   trace(i =  + i);
   }
  }
  I want to multiple i when I click on btn I m getting i =  2 always i
 don't
  understand  I need to change fon first click 2 then second 4 and so
 until
  10
 
  thank u
  ___
  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] tracing height

2008-07-08 Thread Lehr, Theodore M (N-SGIS)
I have:

 

_root.imageMovie.loadMovie(stepImageArray[0]);

sizeImage();

 

function sizeImage () {

trace(_root.imageMovie._height);

}

 

But I keep getting 0 I am guessing because the trace is fired before the
image is loaded... how can I make sure this function does not fire until
the image is loaded. I tried:

 

_root.imageMovie.onLoad = function() {

 

}

 

But that does not seem to fire at all

 

My ultimate goal is to control the size of the image that is being
loaded to make sure it is not too big

 

Thanks!

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


RE: [Flashcoders] tracing height

2008-07-08 Thread Lehr, Theodore M (N-SGIS)
Ok - so I have tried the following:

this.createEmptyMovieClip(img_mc, 999);
var my_mcl:MovieClipLoader = new MovieClipLoader();

mclListener.onLoadComplete = function(target_mc:MovieClip,
status:Number):Void {
trace(onLoadComplete:  + target_mc);
};

my_mcl.addListener(mclListener);

my_mcl.loadClip(http://www.helpexamples.com/flash/images/image1.jpg;,
img_mc);

and while the clip loads I am not getting a trace... that's really what
I need

Ted

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gabino
Travassos
Sent: Tuesday, July 08, 2008 11:24 AM
To: Flash Coders List
Subject: Re: [Flashcoders] tracing height

- Original Message - 
From: Lehr, Theodore M (N-SGIS) [EMAIL PROTECTED]
To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Tuesday, July 08, 2008 8:56 AM
Subject: [Flashcoders] tracing height


I have:



 _root.imageMovie.loadMovie(stepImageArray[0]);

 sizeImage();



 function sizeImage () {

trace(_root.imageMovie._height);

 }



 But I keep getting 0 I am guessing because the trace is fired before 
 the
 image is loaded... how can I make sure this function does not fire 
 until
 the image is loaded. I tried:



 _root.imageMovie.onLoad = function() {



 }



 But that does not seem to fire at all



 My ultimate goal is to control the size of the image that is being
 loaded to make sure it is not too big



 Thanks!

Hi Theodore,

There might be better ways than what I am using, but this works. For 
each image I create a new movieclip which onEnterFrame resizes the 
target loadMovie image to a set size, and then removes itself so it 
doesn't keep working needlessly.

This is cut and pasted from a project where images are sourced from XML,

so it might have some extraneous ...


   mrand=Math.round(Math.random()*3000);
 tname='img'+mrand;
 _root.createEmptyMovieClip(tname, imagedepth); imagedepth++;
 _root['img'+mrand].createEmptyMovieClip('md', imagedepth);
 
_root['img'+mrand].md.loadMovie(images.childNodes[i].attributes['imgloc'
]);
 _root['img'+mrand]._x=images.childNodes[i].attributes['x'];
 _root['img'+mrand]._y=images.childNodes[i].attributes['y'];
 trace(images.childNodes[i].attributes['imgloc']);

 // image sizer
 mrand=Math.round(Math.random()*3000);
 sizer=tname+'sizer'+mrand; imagedepth++;
 _root.createEmptyMovieClip(sizer, imagedepth); imagedepth++;
 _root[sizer].pushw=images.childNodes[i].attributes['w'];
 _root[sizer].pushh=images.childNodes[i].attributes['h'];
 _root[sizer].clipname=tname;
 //trace(images.childNodes[i].attributes['w']);
 _root[sizer].onEnterFrame=function(){
  trace(this.clipname + ' ' + this.pushw + ' ' + this.pushh);
  _root[this.clipname]._width=this.pushw;
  _root[this.clipname]._height=this.pushh;
  //trace(this.clipname); // img0sizer
  if(!init){ init=1; }
  if((this.pushw)(this.pushh)(init30)){
// counts to 30 frames and quits, should be enough
   this.removeMovieClip();
  }
  init++;
 }



___
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] Flash And AJAX

2008-07-02 Thread Bassam M
Hi guys
anyone can tell me where to find tutorial to use AJAX wih flash  I need to
know how can I call flash file from flash menu and load flash file without
refesh the page
only the URL change like this http://domain.com/#/about for about page and
is I click services the URl change  http://domain.com/#/services
and the services page load without refersh
please help me to find out how can I do it

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


Re: [Flashcoders] random drawing

2008-06-30 Thread Bassam M
Dear Ashim

I didn't understanad hot to do it can you do sample for me with button on
click on the button will insert the card to the stage

I tryed to do it my self  I user this code to insert the card from stage but
I couldn't use with your code

this is my code to insert card1 i don't know how to make it random

AboutButton.addEventListener(MouseEvent.CLICK, gocard);
function gocard(e:MouseEvent):void {
 var newcard:card1 = new card1();
 this.addChild(newcard);
 newcard.x = 25;
 newcard.y = 45;
}

thank you

On 6/30/08, Ashim D'Silva [EMAIL PROTECTED] wrote:

 If you're using AS3, everything in your library that's set to export
 for Actionscript will have a unique Class which you need to call to
 instantiate it.
 Use getDefinitionByName to turn a randomly selected string into a
 class definitiion and then call it.

 Example:

 If your library has 50 objects and their named: Card1, Card2, Card3 and so
 on.

 var cardName:String = Card+String(1 + uint(Math.random()*49));
 var cardClass:Object = getDefinitionByName(cardName) as Object
 var card:Sprite = new cardClass();

 The last line you can substitue your classes and parameters. Then run
 this code 7 times.

 2008/6/30 Bassam M [EMAIL PROTECTED]:
  Hi
 
  I'm trying to make game in this game I have 50 movie clip in the library
  I want when I click on one button call draw i want to show 7 of this
 movie
  clips on the stage but i want to select randomly 7 of 50 or more or once
 i
  click draw i want to draw one card  by one random
  can anyone help me please how to do it
 
  Tank you
  Bassam
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 



 --
 Random Lines 3D
 My online portfolio
 www.therandomlines.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


[Flashcoders] Drag and Snapping

2008-06-30 Thread Lehr, Theodore M (N-SGIS)
I have a mc that I am dragging... when I click on it - it snaps to 0,0
of the movie... I do not remember running into this before How can I
make it so it does not snap to a coordinate, but just stays where it is?

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


RE: [Flashcoders] Drag and Snapping

2008-06-30 Thread Lehr, Theodore M (N-SGIS)
Nevermind - I got it... hiccup in the code...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lehr,
Theodore M (N-SGIS)
Sent: Monday, June 30, 2008 12:57 PM
To: Flash Coders List
Subject: [Flashcoders] Drag and Snapping

I have a mc that I am dragging... when I click on it - it snaps to 0,0
of the movie... I do not remember running into this before How can I
make it so it does not snap to a coordinate, but just stays where it is?

___
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] random drawing

2008-06-29 Thread Bassam M
Hi

I'm trying to make game in this game I have 50 movie clip in the library
I want when I click on one button call draw i want to show 7 of this movie
clips on the stage but i want to select randomly 7 of 50 or more or once i
click draw i want to draw one card  by one random
can anyone help me please how to do it

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


Re: [Flashcoders] Flip movie clip

2008-06-16 Thread Bassam M
thank you Willem
I tried

var rotate:String = cw;
function rotat(event:MouseEvent):void {
 if (rotate== cw) {
  rotate = cww;
  this.mainmov.scaleY *= -1;
  this.mainmov.y = (this.mainmov.stage.stageHeight / 1) -
(this.mainmov.height / 1);
 } else if (rotate == cww) {
  rotate = cw;
  this.mainmov.scaleY *= -1;
  this.mainmov.y = (this.mainmov.stage.stageHeight / 2) -
(this.mainmov.height / 2);
 }
}
ro.addEventListener(MouseEvent.CLICK, rotat);

I change the movie clip name to   this.mainmov
but the problem if I change the movie size of make it full screen it will
change the potion
is there anyway to flip it in same postion

Bassam


On 6/13/08, Geografiek [EMAIL PROTECTED] wrote:

 Hi Bassam,
 How about:
 function filp(event:MouseEvent):void {
mySampleMC.scaleY *= -1;
mySampleMC.y =  mySampleMC.y - mySampleMC.height;
 }
 Willem


 Op 12-jun-2008, om 14:44 heeft Bassam M het volgende geschreven:

   Hi
 I have Video playing in the center of the stage and I'm using button to
 filp
 it
 function filp(event:MouseEvent):void {

  mySampleMC.scaleY *= -1;
 }

 mySampleMC.addEventListener(MouseEvent.CLICK, flip);

 but the problem when I flip it change Y postion and go up ,
 I wnat to flip it and keep it in same postion


 Help please

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




 =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
 Geografiek is a Dutch, Utrecht-based map and chart design company.
 Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or
 cell phone: (+31)6-26372378
 or by fax: (+31)302719687
 snail mail: Hooghiemstraplein 89 3514 AX UTRECHT
 Visit our website at: http://www.geografiek.nl
 =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=


 ___
 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] Flip movie clip

2008-06-13 Thread Bassam M
Need help here please

On 6/12/08, Bassam M [EMAIL PROTECTED] wrote:

 yes it's

 On 6/12/08, Jiri Heitlager [EMAIL PROTECTED] wrote:

 Is the center point in the middle?

 Jiri

 Bassam M wrote:

  Hi
 I have Video playing in the center of the stage and I'm using button to
 filp
 it
 function filp(event:MouseEvent):void {

  mySampleMC.scaleY *= -1;
 }

 mySampleMC.addEventListener(MouseEvent.CLICK, flip);

 but the problem when I flip it change Y postion and go up ,
 I wnat to flip it and keep it in same postion


 Help please

 Thanks
 Bassam
 ___
 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] Flip movie clip

2008-06-12 Thread Bassam M
 Hi
I have Video playing in the center of the stage and I'm using button to filp
it
function filp(event:MouseEvent):void {

 mySampleMC.scaleY *= -1;
}

mySampleMC.addEventListener(MouseEvent.CLICK, flip);

but the problem when I flip it change Y postion and go up ,
I wnat to flip it and keep it in same postion


Help please

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


Re: [Flashcoders] Flip movie clip

2008-06-12 Thread Bassam M
yes it's

On 6/12/08, Jiri Heitlager [EMAIL PROTECTED] wrote:

 Is the center point in the middle?

 Jiri

 Bassam M wrote:

  Hi
 I have Video playing in the center of the stage and I'm using button to
 filp
 it
 function filp(event:MouseEvent):void {

  mySampleMC.scaleY *= -1;
 }

 mySampleMC.addEventListener(MouseEvent.CLICK, flip);

 but the problem when I flip it change Y postion and go up ,
 I wnat to flip it and keep it in same postion


 Help please

 Thanks
 Bassam
 ___
 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] Player 8 and the Alert component

2008-05-13 Thread Lehr, Theodore M (N-SGIS)
The problem seems to be that the alert component is in a mc that is
being loaded into another mc... is this a known issue? Any thought on
how I get it to work?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Glen
Pike
Sent: Wednesday, May 07, 2008 2:43 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Player 8 and the Alert component

Hi,

Yes, you may need to drag an instance of it onto the stage in your 
FLA file so it gets compiled in.

Glen

Lehr, Theodore M (N-SGIS) wrote:
 Should the Alert component work in 8 (player)?

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


   

-- 

Glen Pike
01326 218440
www.glenpike.co.uk http://www.glenpike.co.uk

___
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] Player 8 and the Alert component

2008-05-07 Thread Lehr, Theodore M (N-SGIS)

Should the Alert component work in 8 (player)?

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


[Flashcoders] OT: php forum

2008-04-17 Thread Lehr, Theodore M (N-SGIS)
Anyone know of a good php forum?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] OT: php forum

2008-04-17 Thread Lehr, Theodore M (N-SGIS)
Sorry - I meant something like this where I can turn to when I have a
problem

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Glen
Pike
Sent: Thursday, April 17, 2008 10:45 AM
To: Flash Coders List
Subject: Re: [Flashcoders] OT: php forum

Phorum - this is okay, easy to customise the look when you find the 
template folder, header, footer  css
PHPBB - horrible to integrate with - tried doing a system to 
automatically add new users for a CMS to the forum and had to rewrite 
large chunks of code - does not separate code from SQL from content.
The people from Wordpress were working on a system called BBPress - 
looked promising, but have not tried it out.

HTH


Lehr, Theodore M (N-SGIS) wrote:
 Anyone know of a good php forum?
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


   

-- 

Glen Pike
01326 218440
www.glenpike.co.uk http://www.glenpike.co.uk

___
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] dynamic text and _alpha

2008-04-15 Thread Lehr, Theodore M (N-SGIS)

I am changing the _alpha value of a mc when a button is clicked A
dynamic textbox in the mc is not being affected by it... Everything else
in the mc is... how can I change the _alpha value of a dynamic textbox
in a mc?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] dynamic text and _alpha

2008-04-15 Thread Lehr, Theodore M (N-SGIS)
That did it - thanks

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Glen
Pike
Sent: Tuesday, April 15, 2008 9:59 AM
To: Flash Coders List
Subject: Re: [Flashcoders] dynamic text and _alpha

You may have problems changing text alpha if the TextField is not using 
embedded fonts.

Lehr, Theodore M (N-SGIS) wrote:
 I am changing the _alpha value of a mc when a button is clicked A
 dynamic textbox in the mc is not being affected by it... Everything
else
 in the mc is... how can I change the _alpha value of a dynamic textbox
 in a mc?
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


   

-- 

Glen Pike
01326 218440
www.glenpike.co.uk http://www.glenpike.co.uk

___
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] code review

2008-04-15 Thread Lehr, Theodore M (N-SGIS)
What is wrong with this code:

for (i=1; i6; i++) {
 _root.main_content[p_+i].setTextFormat(portNavOff);
}

P_1, p_2,  are dynamic text fields.   Should this be working or
can I not target a text field like this?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] sending email as/php

2008-04-14 Thread Lehr, Theodore M (N-SGIS)
Sorry for posting such a basic but I did google first... I am trying:

 

As: 

 

loadVariablesNum (mail.php, 0, POST);

 

php:

?php

 

$comment=$_GET['ucomment'];

$name=$_GET['uname'];

$email=$_GET['uemail'];

 

mail([EMAIL PROTECTED], subject, Name: .$name.\nEmail:
.$email.\n\nComment: .$comment);

?

 

I am not getting the variable values...

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


RE: [Flashcoders] sending email as/php

2008-04-14 Thread Lehr, Theodore M (N-SGIS)
Thanks for the response - but I am getting the same results

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gabino
Travassos
Sent: Monday, April 14, 2008 12:00 PM
To: Flash Coders List
Subject: Re: [Flashcoders] sending email as/php

hi Theodore

Use $_POST if you're sending POST. Use $_GET when you're pulling
variables 
out of the url, like index.php?id=980;

I'd also recommend strip_tags().

$comment=strip_tags($_POST['ucomment']);

And look up sql injection.

Gabino

- Original Message - 
From: Lehr, Theodore M (N-SGIS) [EMAIL PROTECTED]
To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Monday, April 14, 2008 9:29 AM
Subject: [Flashcoders] sending email as/php


 Sorry for posting such a basic but I did google first... I am trying:



 As:



 loadVariablesNum (mail.php, 0, POST);



 php:

 ?php



$comment=$_GET['ucomment'];

$name=$_GET['uname'];

$email=$_GET['uemail'];



mail([EMAIL PROTECTED], subject, Name: .$name.\nEmail:
 .$email.\n\nComment: .$comment);

 ?



 I am not getting the variable values...

 ___
 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] sending email as/php

2008-04-14 Thread Lehr, Theodore M (N-SGIS)
Same results if I:
$comment=$_POST['ucomment'];
$name=$_POST['uname'];
$email=$_POST['uemail'];



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Pete
Hotchkiss
Sent: Monday, April 14, 2008 11:55 AM
To: Flash Coders List; Flash Coders List
Subject: RE: [Flashcoders] sending email as/php

your using POST to send the data - and then trying to retrieve with GET


-Original Message-
From: [EMAIL PROTECTED] on behalf of Lehr,
Theodore M (N-SGIS)
Sent: Mon 14/04/2008 16:29
To: Flash Coders List
Subject: [Flashcoders] sending email as/php
 
Sorry for posting such a basic but I did google first... I am trying:

 

As: 

 

loadVariablesNum (mail.php, 0, POST);

 

php:

?php

 

$comment=$_GET['ucomment'];

$name=$_GET['uname'];

$email=$_GET['uemail'];

 

mail([EMAIL PROTECTED], subject, Name: .$name.\nEmail:
.$email.\n\nComment: .$comment);

?

 

I am not getting the variable values...

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

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__

___
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] movement

2008-04-10 Thread Lehr, Theodore M (N-SGIS)
No - on a PC viewing it in IE



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Rogers
Sent: Tuesday, April 08, 2008 4:13 PM
To: Flash Coders List
Subject: Re: [Flashcoders] movement

are you using safari?

On Apr 8, 2008, at 2:41 PM, Lehr, Theodore M (N-SGIS) wrote:

 I have a mc I am moving via AS - it moves at a fine pace in the player
 inside flash - but when I view it via the browser, it really slows
 down... why would this happen?



 ted

 ___
 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] movement

2008-04-10 Thread Lehr, Theodore M (N-SGIS)
You are right - that does seem to make a difference - except I am
noticing that set default it runs fine - it is when I make it
transparent (which I need it to be) it then slows down

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of mario
gonzalez
Sent: Thursday, April 10, 2008 9:30 AM
To: Flash Coders List
Subject: Re: [Flashcoders] movement

Make sure you set the window mode to opaque OR transparent... not
default.
That seems to make a huge difference:

wmode not set:
http://hugo.wddg.com/blogfiles/wmode/wmodedefault.html

wmode set to opaque:
http://hugo.wddg.com/blogfiles/wmode/wmodeopaque.html


Both are using the same swf only difference between the two is the tag 
as you can see in the source.
Hope this helps, cus it sure has helped me a ton.


Mario Gonzalez.


Cory Petosky wrote:
 My buddy and I were playing with some performance benchmarks we wrote
 (put 100 bitmaps on the screen by manual blits to a backing
 BitmapData). We weren't surprised that it ran stably at 120 FPS in the
 Flash IDE. We were alarmed to discover, however, that the same SWF ran
 at a mere 80 FPS in the Flash standalone player and was just under 60
 FPS when viewed in the browser.

 Windows XP, Flash CS3 Professional, IE7.

 On Tue, Apr 8, 2008 at 3:20 PM, David Rogers [EMAIL PROTECTED]
wrote:
   
 if you are on a mac, try enabling or disabling rosetta in the info
panel of
 the application icon

  On Apr 8, 2008, at 2:41 PM, Lehr, Theodore M (N-SGIS) wrote:



 
 I have a mc I am moving via AS - it moves at a fine pace in the
player
 inside flash - but when I view it via the browser, it really slows
 down... why would this happen?



 ted

 ___
 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

 



 --
 Cory Petosky : Lead Developer : PUNY
 1618 Central Ave NE Suite 130
 Minneapolis, MN 55413
 Office: 612.216.3924
 Mobile: 240.422.9652
 Fax: 612.605.9216
 http://www.punyentertainment.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
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] movement

2008-04-08 Thread Lehr, Theodore M (N-SGIS)
I have a mc I am moving via AS - it moves at a fine pace in the player
inside flash - but when I view it via the browser, it really slows
down... why would this happen?

 

ted

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


[Flashcoders] moving a symbol with AS

2008-04-04 Thread Lehr, Theodore M (N-SGIS)
How can I move an object with AS and be able to watch it move? I am not
talking about simply giving it a new x or y - I want to animate it to
move
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] mouse x and y

2008-03-11 Thread Lehr, Theodore M (N-SGIS)

How can I trace the x and y of the mouse? I would want to grab it on a
click

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


[Flashcoders] calculating distance between two points

2008-03-11 Thread Lehr, Theodore M (N-SGIS)
How do you calculate the distance between two points with different x
and y values? I know it is some simple math formula - I just don't know
it
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] RE: calculating distance between two points

2008-03-11 Thread Lehr, Theodore M (N-SGIS)
Nevermind sorry

-Original Message-
From: Lehr, Theodore M (N-SGIS) 
Sent: Tuesday, March 11, 2008 8:05 AM
To: 'Flash Coders List'
Subject: calculating distance between two points

How do you calculate the distance between two points with different x
and y values? I know it is some simple math formula - I just don't know
it
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


  1   2   3   4   >