[Flashcoders] Multilingual apps for Flash with as2

2013-01-24 Thread Sumeet Kumar
Hi All,

I am creating a multilingual as2 app and the data for this app will come
from XML. I need to target almost 17 language(including Arabic and urdu). I
have heard that Arabic and urdu are very difficult to implement in flash.
Can anyone guide me in right direction to implement these languages. 


Any suggestions in this regard would be great

Regards
Sumeet Kumar


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


RE: [Flashcoders] making as3 movie scorm compliant

2013-01-15 Thread Sumeet Kumar
Have a look at http://scorm.com/

This is a good guide for someone starting scorm

Regards
Sumeet Kumar


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Paul A.
Sent: Tuesday, January 15, 2013 5:41 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] making as3 movie scorm compliant

I'm curious about this too. Scorm seems to be some magic fairy dust
sprinkled upon software - I have yet to come across a definitive guide
(though I haven't tried that hard).

On 15/01/2013 11:03, Hans Wichman wrote:
 Hi list,

 assuming I have a flash movie which communicates with a custom CMS, 
 what would need to be done to make it scorm compliant?

 As far as I can tell, I'll need some scorm as classes to communicatie 
 with the wrapper, but how can I test whether everything works, etc, I 
 have absolutely no experience with LMSes etc and to me it's kind of 
 hazy how everything fits together, which in turn makes it hard to know 
 where to start/look. Is there a definite scorm specs, which will work 
 with any LMS, so that I can simply pick a free open source LMS 
 somewhere to test my development progress?

 TIA
 Hans
 ___
 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] making as3 movie scorm compliant

2013-01-15 Thread Sumeet Kumar
Also, you can visit adl website for all the standards and specs.

http://scorm.com also allows you to upload your package and test it for
scorm compliance


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Hans Wichman
Sent: Tuesday, January 15, 2013 4:33 PM
To: Flash Coders List
Subject: [Flashcoders] making as3 movie scorm compliant

Hi list,

assuming I have a flash movie which communicates with a custom CMS, what
would need to be done to make it scorm compliant?

As far as I can tell, I'll need some scorm as classes to communicatie with
the wrapper, but how can I test whether everything works, etc, I have
absolutely no experience with LMSes etc and to me it's kind of hazy how
everything fits together, which in turn makes it hard to know where to
start/look. Is there a definite scorm specs, which will work with any LMS,
so that I can simply pick a free open source LMS somewhere to test my
development progress?

TIA
Hans
___
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] IPAD App code optimization

2013-01-14 Thread Sumeet Kumar
Regarding this point:

- use a profiler to see what your app is doing with respect to object
creation/memory
[can someone suggest a profiler to use with CS6...i have searched but not
able to find one]

Regards
Sumeet Kumar


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Sumeet Kumar
Sent: Monday, January 14, 2013 12:32 PM
To: 'Flash Coders List'
Subject: RE: [Flashcoders] IPAD App code optimization

Thanks Hans and Deepanjan for your guidancei will try these methods and
then post where I reached.

Thanks again.

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Hans Wichman
Sent: Friday, January 11, 2013 7:40 PM
To: Flash Coders List
Subject: Re: [Flashcoders] IPAD App code optimization

Hi Sumeet,

some stuff is much more important than other stuff:
- DRY - don't repeat yourself: cache calculations (sinus tables, array
lengths, radian conversion etc)
- Create as few objects as possible, eg use ObjectPooling
- try to stay away from movieclips and sprites, use bitmaps and spritesheets
whereever possible
- if rendering performance is your bottleneck, starling might help
- only cacheAsBitmap / Matrix if you know what you are doing
- only optimize if required, is your app running slow? If so, when?
- use a framecounter (eg mr doobs stats) to see where the framerate drops
are
- use a profiler to see what your app is doing with respect to object
creation/memory
- dispose bitmapdatas if you no longer use them and can't reuse them
- etc etc

hth
JC


On 11-1-2013 11:57, Sumeet Kumar wrote:
 Hi All,

   

 I am creating a very basic IPAD app. Adobe says we need to build the 
 app with code optimization. I have completed development of the app.

   

 For code optimization,  I am removing listeners, using sprites instead 
 of movieclip, clearing Timers etc...what else I can do to optimize my
code..or
 What do adobe really mean by code optimization.

   

 Can anyone please guide me in this regard.

   

 Regards

 Sumeet Kumar

   

   

 ___
 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] IPAD App code optimization

2013-01-13 Thread Sumeet Kumar
Thanks Hans and Deepanjan for your guidancei will try these methods and
then post where I reached.

Thanks again.

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Hans Wichman
Sent: Friday, January 11, 2013 7:40 PM
To: Flash Coders List
Subject: Re: [Flashcoders] IPAD App code optimization

Hi Sumeet,

some stuff is much more important than other stuff:
- DRY - don't repeat yourself: cache calculations (sinus tables, array
lengths, radian conversion etc)
- Create as few objects as possible, eg use ObjectPooling
- try to stay away from movieclips and sprites, use bitmaps and spritesheets
whereever possible
- if rendering performance is your bottleneck, starling might help
- only cacheAsBitmap / Matrix if you know what you are doing
- only optimize if required, is your app running slow? If so, when?
- use a framecounter (eg mr doobs stats) to see where the framerate drops
are
- use a profiler to see what your app is doing with respect to object
creation/memory
- dispose bitmapdatas if you no longer use them and can't reuse them
- etc etc

hth
JC


On 11-1-2013 11:57, Sumeet Kumar wrote:
 Hi All,

   

 I am creating a very basic IPAD app. Adobe says we need to build the app
 with code optimization. I have completed development of the app.

   

 For code optimization,  I am removing listeners, using sprites instead of
 movieclip, clearing Timers etc...what else I can do to optimize my
code..or
 What do adobe really mean by code optimization.

   

 Can anyone please guide me in this regard.

   

 Regards

 Sumeet Kumar

   

   

 ___
 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] IPAD App code optimization

2013-01-11 Thread Sumeet Kumar
Hi All,

 

I am creating a very basic IPAD app. Adobe says we need to build the app
with code optimization. I have completed development of the app. 

 

For code optimization,  I am removing listeners, using sprites instead of
movieclip, clearing Timers etc...what else I can do to optimize my code..or
What do adobe really mean by code optimization.

 

Can anyone please guide me in this regard.

 

Regards

Sumeet Kumar

 

 

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


[Flashcoders] RE: elearing content using adobe air for ipad

2012-06-13 Thread Sumeet Kumar
Hi All,

I have to do some research on creating elearning courses for iPad. Has any
tried to develop eLearning content using adobe air? 
Any suggestions or ideas in this regard would be great.

Regards
Sumeet Kumar





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


RE: [Flashcoders] RE: elearing content using adobe air for ipad

2012-06-13 Thread Sumeet Kumar
Thanks a lot for such a quick reply. 

I haven't googled  it much but you guessed it right,  I am bit worried about
some features like

1.   Will urlloader/loader(inbuilt as3 class) classes work fine. I wish
to load swf built in as3 in my main file.
2.  can we use animations for app
3.  in general what is the apple response to adobe air apps when we
submit it for approval.

Regards
Sumeet Kumar









-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Hans Wichman
Sent: Wednesday, June 13, 2012 6:35 PM
To: Flash Coders List
Subject: Re: [Flashcoders] RE: elearing content using adobe air for ipad

Hi Sumeet,

is the question about flash content on the ipad, or eLearning content in
particular. If so, what aspects in particular are you 'worried' about?
For flash/air development on the ipad in general, its awesome;).

There is a lot of tooling and information out there, which will probably
take you a day or two to get up to speed with, for example using the
helloworld samples provided by adobe (dont have the url handy).
With the new air sdk's and starling performance is less of an issue as well,
but a steeper learning curve, so using basic flash (non starling/3d etc) you
might have to put in some more time to optimize the content. In general if
this is your first ipad project but you are familiar with flash, I'd say
somewhere between 1.2 - 2 times your original estimate:) depending on the
size of the project.

Any features in particular you are wondering about?

regards
Hans


On 13/06/2012 14:35, Sumeet Kumar wrote:
 Hi All,

 I have to do some research on creating elearning courses for iPad. Has 
 any tried to develop eLearning content using adobe air?
 Any suggestions or ideas in this regard would be great.

 Regards
 Sumeet Kumar





 ___
 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] Integrating help with mac adobe air app

2011-10-16 Thread Sumeet kumar
Hi All,

 

I want to create help for mac for my adobe air app(I want it to look like
the mac help). But I am not able to find able anything related to this. Most
of the apps have given links to the web. Have anyone done this. Any guidance
in this regard would be great.

 

Thanks in advance

 

Sumeet Kumar

 

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


RE: [Flashcoders] Integrating help with mac adobe air app

2011-10-16 Thread Sumeet kumar
Hi Karl

Thanks a lot for the help. But I am looking for the guidance in some other
direction. I want to integrate help with mac. The link given below points me
towards integrating menus with mac.


Regards
Sumeet Kumar

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl
DeSaulniers
Sent: Sunday, October 16, 2011 6:48 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Integrating help with mac adobe air app

Hi Kumar,
This isn't flash, but you may be able to roll your own with the idea.  
Has a step-by-step.

http://webdesignerwall.com/tutorials/css3-dropdown-menu

http://www.webappers.com/2010/03/02/mac-like-multi-level-dropdown-menu-with-
css3/

and then I found this..

http://flash-menu-templates.com/horizontal-mac-like-flash-menu-maker.html

HTH,
Best,

Karl


On Oct 16, 2011, at 8:02 AM, Sumeet kumar wrote:

 Hi All,



 I want to create help for mac for my adobe air app(I want it to look 
 like the mac help). But I am not able to find able anything related to 
 this. Most of the apps have given links to the web. Have anyone done 
 this. Any guidance in this regard would be great.



 Thanks in advance



 Sumeet Kumar



 ___
 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


RE: [Flashcoders] Array Limit

2011-08-04 Thread Sumeet Kumar
4000 is not a very small number for array... I have tested it for very high
values. and you will hit the loop limit before you hit the array limit. So
4000,1 , 10 array should be fine. 

For making an array empty  just assign myarray = []

And I believe array is the best method to do it

And to get the last point var point = myarray[myarray.length -1]




-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of nasim h
Sent: Thursday, August 04, 2011 11:12 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Array Limit

I want to have an array of x,y I use array of object like this var
arr:Array=new Array arr[0]=new Object()
arr[0].x=10
arr[0].y=22

..
I have 4000 or more point because i want to save point of draw wave tore
draw it . i use array to save point what is Array limit 
and is there better way to do it
how can i emty array to use it again ?
how can i get last point
thx

___
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] Solved NativeProcess On Mac

2011-07-31 Thread Sumeet Kumar
Thanks  a lot for your reply.

I will go with the second option only. Thanks again.

Regards
Sumeet Kumar

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik
Andersson
Sent: Friday, July 29, 2011 8:14 PM
To: Flash Coders List
Subject: Re: [Flashcoders] NativeProcess On Mac

Glen Pike skriver:
 Hi,

 Unless you can use /usr/sbin/diskutil as your File name and pass the 
 other elements of the command line as separate arguments, then you 
 might have to be more creative with your approach.

 1. Write a shell script that encapsulates this command and call that.

 2. Capture the output of the first command and use Regular expressions 
 to extract the UUID yourself?

 Glen


I am with the second option, no need to let some other program do the string
juggling that you can do yourself.


___
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] NativeProcess On Mac

2011-07-29 Thread Sumeet Kumar
Hi All,

 

I am using Nativeprocess in adobe air for a MAC desktop application. I need
to find the volume UUID for mac. I have found a shell script command which
is like this

/usr/sbin/diskutil info / | /usr/bin/awk '$0 ~ /UUID/ { print $3 }'

 

 

This command works fine on Mac Terminal. But I am not able to figure out how
to use this with NativeProcess API.

 

Any help or suggestion on this regard would be great

 

Regards

Sumeet Kumar

 

 

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


RE: [Flashcoders] NativeProcess On Mac

2011-07-29 Thread Sumeet Kumar
Thanks Karl.
But I want to run shell script from adobe air and also I  am able to run
simple shell script commands from the native process API. 

The problem in the this command mentioned below is

/usr/sbin/diskutil info / | /usr/bin/awk '$0 ~ /UUID/ { print $3 }'

That it has two commands , the first one is /usr/sbin/diskutil info / and
the second one is /usr/bin/awk '$0 ~ /UUID/ { print $3 }' seprated by |

And the second command takes the ouput of first command as input. And I
don't know how to use this in adobe air native process API

Hope I am able to explain my problem in a better way now. Apologies for not
being very clear in my first email.

Thanks again.

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl
DeSaulniers
Sent: Friday, July 29, 2011 5:20 PM
To: Flash Coders List
Subject: Re: [Flashcoders] NativeProcess On Mac

Hi Sumeet,
Found this. Take a look.

http://www.adobe.com/devnet/air/flash/quickstart/articles/
interacting_with_native_process.html

Looks like it talks about integrating with XCode, which is what I think you
need for mac. But it has both mac and pc.

Also, I googled Flash NativeProcess API and XCode, there looked to be  a
barrel full.

HTH,
Best,
Karl


On Jul 29, 2011, at 6:38 AM, Sumeet Kumar wrote:

 Hi All,



 I am using Nativeprocess in adobe air for a MAC desktop application. I 
 need to find the volume UUID for mac. I have found a shell script 
 command which is like this

 /usr/sbin/diskutil info / | /usr/bin/awk '$0 ~ /UUID/ { print $3 }'





 This command works fine on Mac Terminal. But I am not able to figure 
 out how to use this with NativeProcess API.



 Any help or suggestion on this regard would be great



 Regards

 Sumeet Kumar





 ___
 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] Calling applescript from Adobe AIR

2011-07-20 Thread Sumeet Kumar
Hi All,

 

Is there any way by which I can call Applescript from Adobe air?

Any help or suggestion on this regard would be great.

 

Regards

Sumeet Kumar

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


RE: [Flashcoders] Calling applescript from Adobe AIR

2011-07-20 Thread Sumeet Kumar
Thanks a lot for the help Glen,

One more question, I am using flex builder 3 and flex SDK 3.2.0, But I am
not able to find the nativeprocess API in this configuration. I tried
overlaying adobe air 2.0 on flex SDK 3.2.0 as mentioned in some forums but
still it does not work. Do I need flash builder 4 to make the nativeprocess
API work. 

Thanks Again,
Sumeet Kumar



 



-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Glen Pike
Sent: Wednesday, July 20, 2011 2:35 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Calling applescript from Adobe AIR

Hi,

 Not sure, but if AppleScript files can be executable like shell scripts
in Linux, then you can call them from Air desktop using the Native Process
API.

 If you download Air Launchpad and get it to generate the source code
example for the Native Process API, you can then hack it to try your code,
see my example below which starts an SSH session using putty on Windows -
did not try on Mac as I don't have one, but should also be able to make it
work on Linux.

 Glen

protected function runProcess():void
 {
 var file:File = new File();
 try
 {
if (Capabilities.os.toLowerCase().indexOf(win)  -1)
 {
 file = new File(C:\\Documents and
Settings\\Will\\Desktop\\Downloads\\Progs\\putty.exe);
 }
 else if
(Capabilities.os.toLowerCase().indexOf(mac)  -1)
 {
 file = new File(/sbin/ssh);
 if (file == null)
 file = new File(/bin/ssh);
 else if (file == null)
 file = new File(/usr/bin/ssh);
 }
 else if
(Capabilities.os.toLowerCase().indexOf(linux)  -1)
 {
 file = new File(/sbin/ssh);
 if (file == null)
 file = new File(/bin/ssh);
 else if (file == null)
 file = new File(/usr/bin/ssh);
 }

 var
nativeProcessStartupInfo:NativeProcessStartupInfo = new
NativeProcessStartupInfo();
 nativeProcessStartupInfo.executable = file;
 var args:Vector.String = new Vector.String;
 args.push(-P);
 args.push(50030)
 args.push(-l);
 args.push(username);
 args.push(-pw);
 args.push(password);
 args.push(-L);
 args.push(2080:localhost:2080);
 args.push(-L);
 args.push(7766:localhost:7766);
 args.push(192.168.0.19);
 nativeProcessStartupInfo.arguments = args;
 process = new NativeProcess();
 process.start(nativeProcessStartupInfo);

 
process.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA, onStdout);
 
process.addEventListener(ProgressEvent.STANDARD_ERROR_DATA, onError);
 }
 catch (e:Error)
 {
 Alert.show(e.message, Error);
 }
 }

On 20/07/2011 07:42, Sumeet Kumar wrote:
 Hi All,



 Is there any way by which I can call Applescript from Adobe air?

 Any help or suggestion on this regard would be great.



 Regards

 Sumeet Kumar

 ___
 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] AIR + AS2.0

2011-07-11 Thread Sumeet Kumar
Hi All,

I am developing an application for adobe AIR. The code for the application
is written in as2.0.  I am using HtmlLoader class to load the html file
which has the actionscript 2.0.swf file embedded in it. The structure goes
like this

FLEX/AS3.0(Desktop Application)HTMLLoader Object--HTMLFile (having
a Actionscript 2.0 swf file)


 Some part of the application like file Handling, handling images is done in
AS3.0(In Flex Builder). The communication part is working great. But when I
use Alert.show method in Flex. The modal transparency of the alert method
does not seem to work and it shows greyish-white background for the alert. I
want to make this background transparent.

Any Help or suggestion in this regard would be great.

Regards
Sumeet Kumar


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


[Flashcoders] Flash CS4 to Flash CS5: Size Problem

2010-10-08 Thread Sumeet Kumar

Hi All,

We have 13 MB .fla file in flash CS4. I downloaded the trial version of the 
flash cs5 and saved it as a flash cs5 document(.fla). The file size changed 
to 400 MB.
The file size is not a problem for me.but it has become very difficult 
to work the file for example opening and saving of the file takes a lot of 
time.


Are we doing something wrong ?

Can somebody enlighten us on this.

Regards
Sumeet Kumar



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


Re: [Flashcoders] Flash CS4 to Flash CS5: Size Problem

2010-10-08 Thread Sumeet Kumar

Thanks for the reply

.dat files in the bin folder are taking up the majority of the size

Regards
Sumeet Kumar

- Original Message - 
From: Henrik Andersson he...@henke37.cjb.net

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Friday, October 08, 2010 3:48 PM
Subject: Re: [Flashcoders] Flash CS4 to Flash CS5: Size Problem


Save as XFL and report back what files are taking up the majority of the 
size.

___
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] Flash CS4 to Flash CS5: Size Problem Solved

2010-10-08 Thread Sumeet Kumar
Save and Compact on the CS4 file and then converting it to flash cs5 
solved the problem for me.


Thanks
Sumeet Kumar


- Original Message - 
From: Sumeet Kumar sume...@sebiz.net

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Friday, October 08, 2010 4:07 PM
Subject: Re: [Flashcoders] Flash CS4 to Flash CS5: Size Problem



Thanks for the reply

.dat files in the bin folder are taking up the majority of the size

Regards
Sumeet Kumar

- Original Message - 
From: Henrik Andersson he...@henke37.cjb.net

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Friday, October 08, 2010 3:48 PM
Subject: Re: [Flashcoders] Flash CS4 to Flash CS5: Size Problem


Save as XFL and report back what files are taking up the majority of the 
size.

___
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] Combat Game in flash

2010-07-26 Thread Sumeet Kumar


Hi All,

We are developing a one to one combat game(sword fighting). We are planning 
to use AS3.0 and Flash cs4. Are there any tutorials/sample code available 
for help?

Any guidance in this regard would be great help.

Thanks
Sumeet




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


Re: [Flashcoders] Combat Game in flash

2010-07-26 Thread Sumeet Kumar
Thanks a lot. The link really helped. 

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

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Monday, July 26, 2010 6:17 PM
Subject: Re: [Flashcoders] Combat Game in flash


You could try somewhere like flashkit.com if you're after samples

On 26 Jul 2010 10:20, Sumeet Kumar sume...@sebiz.net wrote:


Hi All,

We are developing a one to one combat game(sword fighting). We are planning
to use AS3.0 and Flash cs4. Are there any tutorials/sample code available
for help?
Any guidance in this regard would be great help.

Thanks
Sumeet




___
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] CMYK color palletes in flash

2010-05-31 Thread Sumeet Kumar
Hi All,

Our client wants to show CMYK colors in the application. Is there any way we 
can achieve it. One thing that comes to my mind is to choose some colors those 
are common in RGB and CMYK and give those selected colors in the 
application(this is just going to be RGB representation of CMYK colors) But i 
have no idea whether this is possible or not.

Any ideas in this regard would be a great help

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


Re: [Flashcoders] Regain stage focus

2010-05-30 Thread Sumeet Kumar

Hello :)


In the object tag  try making wmode = window. 


Thanks
Sumeet Kumar



- Original Message - 
From: Henrik Andersson he...@henke37.cjb.net

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Sunday, May 30, 2010 1:47 PM
Subject: Re: [Flashcoders] Regain stage focus


Cor wrote:

At any given moment:
   stage.focus = stage;

or

   stage.focus = yourInputField;


Wrong focus, I am certain that the issue is not about the focus internal 
to the player, but the focus in the full webbrowser. The full flash 
player is lacking the focus.


___
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] Loader.unload not freeing the memory

2010-05-27 Thread Sumeet Kumar

Hi All,

I have some AS2 swf files(with lots of AS2 code) which i am loading in a AS3 
file using Loader Class Object. The problem is that once i unload the as2 
swf from the AS3 file, the memory is not just getting freed. I have removed 
all the as3 listeners.


Has anyone experinced something like this or is there something which i am 
doing wrong. Any guidance and suggestions in this regard would be a great 
help


Thanks in Advance
Sumeet Kumar 



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


Re: [Flashcoders] Font embedding with Regular Bold versions

2010-05-27 Thread Sumeet Kumar

Hi :)

Not sure why, but unchecking the auto kern  checkbox solved the problem for 
me.


Thanks
Sumeet Kumar

- Original Message - 
From: dopeco...@hotmail.com

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Friday, May 28, 2010 6:25 AM
Subject: [Flashcoders] Font embedding with Regular  Bold versions


Hi all,

I have searched far and wide for the solution on this one, but to no
avail. The old chestnut of font issue rears it's head again (reminds me
of good old Flash 4 days), the basic scenario is this, and a link to a
sample file is below:

Two textfields on stage, the first, a static text field using a regular
weighting of a font, for example Arial Regular. The second, a dynamic
text field, using a bold weighting of the same font, e.g. Arial Bold.
The dynamic field has its character embedding set appropriately, but
here is the kicker. If I manually type something into this field and
publish, all is well in font land .. however if I set it's .text
property in AS, the bold text field will not render while the static
field is using the regular version of the font.

To add more fun and games, if I set the static field to the italic or
anything else version of the same font, the dynamic bold field shows
fine ... this happens on multiple fonts, the test file below uses Arial
in an attempt to have something most people will have on their system.

Any ideas at all? .. Even embedding the entire bold font as a library
item doesn't work (and is not practical for what it is for), so any help
would be most appreciated.

Sample file:

http://singlenotion.com/tmp/fontTest.zip

Cheers
Adam
___
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] Compress Movie using swfmill and haxe

2010-05-18 Thread Sumeet Kumar

Thanks for the reply.

I checked my swf and it is already compressed. I am just curious to know, 
are there tools available which can uncompress this swf or may be any tool 
which can compress or decompress any swf?


Thanks in Advance.
Sumeet Kumar

- Original Message - 
From: Henrik Andersson he...@henke37.cjb.net

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Monday, May 17, 2010 8:47 PM
Subject: Re: [Flashcoders] Compress Movie using swfmill and haxe


Sumeet Kumar wrote:

Hi All,

I am creating a swf using swfmill and haxe. Now, the client's requirement 
is to compress this swf file. Is there any method by which i can compress 
the movie(.swf).




Open the swf with notepad, if it begins with CWS, it is already compressed.
___
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] Compress Movie using swfmill and haxe

2010-05-17 Thread Sumeet Kumar
Hi All,

I am creating a swf using swfmill and haxe. Now, the client's requirement is to 
compress this swf file. Is there any method by which i can compress the 
movie(.swf).

I have already reduced the quality of the jpegs images gettings used in this.

Any Ideas in this regard would be great help

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


[Flashcoders] Projective Transformations in flash

2010-04-05 Thread Sumeet Kumar
Hi All,

I need to implement projective transformations in flash/AS2. Are there any ways 
to implement these in flash. Any suggestions or help in this regard would be a 
great help.

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


[Flashcoders] Flash embedded in VB

2010-03-07 Thread Sumeet Kumar

Hi All

I am working in a application in which i have to embed the swf file in 
Visual basic. Every thing is working fine except the Mouse.show() and 
Mouse.hide() function.
Have any one encountered this problem? Any suggestion or idea would be a 
great help


Thanks in Advance
Sumeet Kumar 



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


[Flashcoders] MultiLevel ContextMenu

2010-02-19 Thread Sumeet Kumar
Hi All,

Is there any way in flash to create a multilevel context menu (right click 
menu)? 

Any help on this regard would be great

Thanks in advance

Regards
Sumeet Kkumar

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


Re: [Flashcoders] MultiLevel ContextMenu

2010-02-19 Thread Sumeet Kumar
thanks for your reply but it only shows a single level...i need multiple 
levels in the context menu.


Regards
Sumeet Kumar
- Original Message - 
From: Beatrix Krümmer-Frau birik...@hotmail.de

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Friday, February 19, 2010 3:54 PM
Subject: Re: [Flashcoders] MultiLevel ContextMenu


Hi Sumeet,

maybe the ContentMenu Class
http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/ui/ContextMenu.html

Beatrix

Sumeet Kumar schrieb:

Hi All,

Is there any way in flash to create a multilevel context menu (right click 
menu)?


Any help on this regard would be great

Thanks in advance

Regards
Sumeet Kkumar

___
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] Filters in flash 8

2010-02-04 Thread Sumeet Kumar
Hi All,

Is there any way by which we can achieve following filters in flash 8.

Noise
Pixelate
Sharp
Water 
Metallic
Neon

Any help in this regard will be great help. Thanks in Advance

Regards
Sumeet Kumar


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


Re: [Flashcoders] Filters in flash 8

2010-02-04 Thread Sumeet Kumar

Thanks for your reply
Are there any classes available on the net for these filters?  I have 
searched a lot but not able to find any classes related to AS2 and flash.

Can you please point me to some links.

Thanks again.

Regards
Sumeet Kumar

- Original Message - 
From: Henrik Andersson he...@henke37.cjb.net

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Thursday, February 04, 2010 5:32 PM
Subject: Re: [Flashcoders] Filters in flash 8


Sumeet Kumar wrote:

Hi All,

Is there any way by which we can achieve following filters in flash 8.

Noise
Pixelate
Sharp
Water
Metallic
Neon


Noise is possible with BitmapData, Pixelate is done with drawing to
BitmapData and upscaling the bitmap.
Sharp is done with one of the more complicated filters.
Water is too losely defined and so is metallic.
Neon can be done with the glow filter.
___
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] 2nd onPress ignored unless mouse moved at least 1pixel

2010-01-21 Thread Sumeet Kumar

Assuming that you are using flash 8 or lower.

try using Selection.setFocus(this) on the onRelease event of the button

Regards
Sumeet kumar



- Original Message - 
From: Andrew Sinning and...@learningware.com

To: Flash Coders flashcoders@chattyfig.figleaf.com
Sent: Thursday, January 21, 2010 5:34 PM
Subject: [Flashcoders] 2nd onPress ignored unless mouse moved at least 
1pixel



I have button that requires two clicks in order to completely select.
I'm not looking for a double-click, but rather the second click
(onRelease) confirms the user response.

In the GUI, the first click cause a change in the graphic and there is a
prompt click to confirm.

What I'm finding is that the second onPress and onRelease do not get
called unless the mouse is moved at least one pixel from the position of
the first click.

I'm guessing that this has something to do with the graphical change,
but I can't figure it out.  I'll keep looking.

Any ideas?

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


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


Re: [Flashcoders] Image and Alpha

2010-01-21 Thread Sumeet Kumar
can you write some of your codeto get a better understanding of the 
problem


- Original Message - 
From: Lehr, Theodore ted_l...@federal.dell.com

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Thursday, January 21, 2010 9:45 PM
Subject: [Flashcoders] Image and Alpha


I know I asked this before but I can not remember if there was ever a 
resolution proposed and I am still having the issue...


I have an image inside a mc - that mc (mc1), by default, is set to have an 
alpha of 0... that mc is inside another mc (mc2) that is also alpha=0 by 
default...


Then, based on some xml that is imported, mc1 may have it's alpha turned to 
100... then mc2 will have it's alpha turned to 100 (NOTE: mc2 holds 
multiples of mc1 - each of which may or may not have their alpha changed...)


The problem:

The problem is that while the imported text is showing in mc1 - the images 
are not... any help?


hope this makes sense



___
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] Publish transparent .gif file in AS3

2009-12-10 Thread Sumeet Kumar

Thanks for your replies.
I got lot of links using which i can publish jpeg and png images, but 
nothing for gifCan you please send me some link in reference to this.


Thanks again.
Sumeet Kumar
- Original Message - 
From: David Hunter davehunte...@hotmail.com

To: flashcoders@chattyfig.figleaf.com
Sent: Thursday, December 10, 2009 10:18 PM
Subject: RE: [Flashcoders] Publish transparent .gif file in AS3



thanks. all the more reason to upgrade!


Date: Thu, 10 Dec 2009 17:35:08 +0100
From: he...@henke37.cjb.net
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Publish transparent .gif file in AS3

David Hunter wrote:

 hi Hendrik, are you on CS4? i'm still on CS3. the 
 FileReference.download() method allows for URLRequests not bytearrays. 
 in CS4 there is a save() method which allows you to pass bytearrays. is 
 that what you mean or am i missing a trick with download() and 
 URLRequest? it states that i can't use a bytearray datatype for 
 URLRequest.data with download().

 thanks.


Good catch, of course I meant the save method.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


_
Use Hotmail to send and receive mail from your different email accounts
http://clk.atdmt.com/UKM/go/186394592/direct/01/___
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] Publish transparent .gif file in AS3

2009-12-09 Thread Sumeet Kumar
Hi All,

In one of my project, i need to output a transparent .gif image from my flash 
application. I am using flash player 9. Is there any way by which i can publish 
the image in as3?
Any suggestion or help in this regard would be a great help

Thanks in Advance.

Regards
Sumeet Kumar

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


[Flashcoders] Embedding fonts using SWFMILL

2009-10-26 Thread Sumeet Kumar

Hi All,

I am trying to dynamically create fonts using swfmill on the clients 
machine. My flash 8 movie is getting embedded in VB, whenever i try to 
create fonts using swfmill,using the following .xml


?xml version='1.0' encoding='utf-8'?movie width='200' height='70' 
framerate='30'background color='#ff'/framelibraryfont 
glyphs='#32;#33;#34;#35;#36;#37;#38;#39;#40;#41;#42;#43;#44;#45;#46;#47;#48;#49;#50;#51;#52;#53;#54;#55;#56;#57;#58;#59;#60;#61;#62;#63;#64;#65;#66;#67;#68;#69;#70;#71;#72;#73;#74;#75;#76;#77;#78;#79;#80;#81;#82;#83;#84;#85;#86;#87;#88;#89;#90;#91;#92;#93;#94;#95;#96;#97;#98;#99;#100;#101;#102;#103;#104;#105;#106;#107;#108;#109;#110;#111;#112;#113;#114;#115;#116;#117;#118;#119;#120;#121;#122;#123;#124;#125;#126;#160;#161;#162;#163;#164;#165;#166;#167;#168;#169;#170;#171;#172;#173;#174;#175;#176;#177;#178;#179;#180;#181;#182;#183;#184;#185;#186;#187;#188;#189;#190;#191;#192;#193;#194;#195;#196;#197;#198;#199;#200;#201;#202;#203;#204;#205;#206;#207;#208;#209;#210;#211;#212;#213;#214;#215;#216;#217;#218;#219;#220;#221;#222;#223;#224;#225;#226;#227;#228;#229;#230;#231;#232;#233;#234;#235;#236;#237;#238;#239!
;#240;#241;#242;#243;#244;#245;#246;#247;#248;#249;#250;#251;#252;#253;#254;#255;' 
import='C:\Windows\Fonts\fontname.TTF'//libraryImport 
url=fontname.swf'/Import/frame/movie


The font files get generated, and it works fine (in flash player)if loaded 
in my main .swf file. But as soon as i use it in my main.swf file embedded 
in VB and try to load the fonts files, VB gets crashed.


I tried putting version='8' in the movie tag, but this does not work in 
flash 8


Can someone please guide me in correcting this issue.

Any suggestions or help would be great.

Regards
Sumeet Kumar

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


[Flashcoders] TextField TabIndex in flex

2009-07-24 Thread Sumeet Kumar

Hi All,

I am adding  two textfields dynamically using the code written below and 
after that i am trying to set the tabindex for the two textfields. But i am 
not able to set the tabIndex for the textfields added dynamically. Can 
anyone please guide what am i doing wrong here? Here is the code for the 
same



mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
layout=absolute
mx:Script
 ![CDATA[
  import mx.managers.FocusManager;
  import mx.core.UIComponent;
  import mx.core.UITextField;

  function fnDrawTextField(){
 var mytxt:TextField = new TextField ();
 var ut:UIComponent = new UIComponent()
 mytxt.width = 300
 mytxt.height = 40
 mytxt.text = Called the function;
 mytxt.x = 100;
 mytxt.y = 100;
 mytxt.type = TextFieldType.INPUT
 mytxt.border = true
 mytxt.tabEnabled =true;
 mytxt.tabIndex =1;
 ut.addChild(mytxt)
 this.addChild(ut)
 }

  function fnDrawTextFieldSecond(){
   var mytxt:TextField = new TextField()
   var ut:UIComponent = new UIComponent()
   mytxt.width = 300
   mytxt.height = 40
   mytxt.text = Called the function;
   mytxt.x = 500;
   mytxt.y = 500;
   mytxt.type = TextFieldType.INPUT
   mytxt.border = true
   mytxt.tabEnabled = true
   mytxt.tabIndex =2;
   ut.addChild(mytxt)
   this.addChild(ut)
  }
 ]]
/mx:Script
mx:Button x=333 y=309 click=fnDrawTextField();

/mx:Button
mx:Button x=578 y=309  click=fnDrawTextFieldSecond();

/mx:Button
/mx:Application

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


[Flashcoders] Distributing Fonts in a standalone application

2009-07-06 Thread Sumeet Kumar

Hi All,

I am developing a desktop application in AS 2.0, in which user can 
design(add text, change text font or add image on the Tshirt for printing) 
his/her T-Shirts. Also, i have to give certain templates to user, out of 
these templates user can pick any template and design the T-Shirts using the 
selected template. For designing the templates, I am using windows default 
fonts like verdana, arial etc. My questions is, can i distribute these fonts 
by creating swf files(shared library)?


Any help on this would be great.

Regards
Sumeet kumar



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


[Flashcoders] Creating Fonts dynamically

2009-07-03 Thread Sumeet Kumar
Hi All,

Is there any way by which i can create the fonts dynamically i.e. i want to 
create fonts files dynamically without using Flash IDE. Is there any method or 
workaround by which i can do this?

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


Re: [Flashcoders] Creating Fonts dynamically

2009-07-03 Thread Sumeet Kumar

Thanks for the reply,

I forgot to mention, i need this for ActionScript 2.0 and for a standalone 
application.


Thanks Again

- Original Message - 
From: Glen Pike g...@engineeredarts.co.uk

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Friday, July 03, 2009 3:46 PM
Subject: Re: [Flashcoders] Creating Fonts dynamically


Just a suggestion - could you compile them into library swfs that you load 
at runtime if you had the flash compiler running on the server (perhaps)?


The idea would be to dynamically generate an ActionScript file that uses 
the [Embed] command then compile this into a SWF with the name you want - 
you would probably have to have the file create a text field on the stage 
that embedded the characters, etc.


Just an idea - I don't have much experience of this...

Glen

Sumeet Kumar wrote:

Hi All,

Is there any way by which i can create the fonts dynamically i.e. i want 
to create fonts files dynamically without using Flash IDE. Is there any 
method or workaround by which i can do this?


Thanks in Advance
Sumeet
___
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] Memory Usage in Flash

2007-06-20 Thread Sumeet Kumar
Hi to all the Flashcoders,

I have a question.
How much memory does a movieclip takes at run time?

For example 
 
If I m creating a movieclip with createEmptyMovieClip, How much
memory it will take?

And one more thing related to this

If I m assigning one property to the movieclip
like
My_mc.id = 2
How much memory this id property will take?

Regards
Sumeet Kumar

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Embed the image in the swf

2007-05-18 Thread Sumeet Kumar
Hi All

 

I m stuck at a point in my project.

The output of the application is in swf file. The user uploads the image
in the application 

How can I embed that image at run time (and not load) in swf for a
desktop solution?

 

Any idea would be a great help.

 

Regards

Sumeet kumar

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] swf to jpeg

2007-04-20 Thread Sumeet Kumar
Hi All,

 

 

Can I convert a movieclip data of the flash to jpeg image?I need this
for a desktop solution.

 

Any idea or solution will be a great help?

 

Thanks And Regards

Sumeet Kumar

 

 

 

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] You Tube + Progressive download of flvs

2007-04-10 Thread Sumeet Kumar
Hi All

 

Can any one tell me what YouTube is using for playing the flv's?
Progressive download or Video Streaming.

 

Regards

Sumeet Kumar

 

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] You Tube + Progressive download of flvs

2007-04-10 Thread Sumeet Kumar
Thanks a lot sean

http://www.adobe.com/devnet/flash/articles/flv_download_03.html


According to page mentioned above 

Progressive download is a perfect use for hobbyists or websites that
have low traffic requirements and only need to deliver short videos.

How YouTube is handling the large traffic with progressive download?

Regards
Sumeet kumar



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Tuesday, April 10, 2007 5:07 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] You Tube + Progressive download of flvs

As far as I'm aware it's progressive. Streaming would require the use of
a
streaming server and even from a cost perspective this is VERY
prohibitive.

FC

 Hi All



 Can any one tell me what YouTube is using for playing the flv's?
 Progressive download or Video Streaming.



 Regards

 Sumeet Kumar





 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] You Tube + Progressive download of flvs

2007-04-10 Thread Sumeet Kumar
Any reference from where I can read this difference in detail.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cay Garrido H.
Sent: Tuesday, April 10, 2007 5:47 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] You Tube + Progressive download of flvs

Its progressive download, Google Video uses streaming... You can check 
it by jumping forward to a certain point in an unloaded clip and check 
if it loads from the start of the video till that point, or if it loads 
from that point on... the latter is streaming ;)

How YouTube is handling the large traffic with progressive download?
I think you should read a bit more about what the differences are between 
progressive download and streaming, I think you'll get it then... ;)

Cheers,

Cay

Sumeet Kumar escribió:
 Hi All

  

 Can any one tell me what YouTube is using for playing the flv's?
 Progressive download or Video Streaming.

  

 Regards

 Sumeet Kumar

  

  

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

   
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] LoadMovie in Mozilla

2007-02-27 Thread Sumeet Kumar
 

Hi 

 

I have a function fnLoadMovies ().

This function loadMovies(.swf files) from an array which is generated
dynamically.

Sometimes this array contains values like 'undefined' or 'null '.

 

In Internet Explorer 

 

When mc.loadMovie(undefined) is called it works fine.

 

But In Mozilla 

 

The plugin  behaves differently

It unloads the existing movie from the holder.

 

Has any one experienced the same problem?

 

Any suggestion on this  question will be of great help.

 

Thanks in advance

 

Sumeet Kumar

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] ExternalInterface with multiple swfs

2007-01-29 Thread Sumeet Kumar
Update your flash player version .This might help as I was experiencing
the same problem but after updating the flash player version it worked
well

Regards
Sumeet Kumar

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Thomas
Fowler
Sent: Tuesday, January 30, 2007 5:16 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] ExternalInterface with multiple swfs

Yeah, did that but still no dice.

- Original Message -
From: Mick G [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Monday, January 29, 2007 5:44 PM
Subject: Re: [Flashcoders] ExternalInterface with multiple swfs

 I've had this working fine - just make sure you use different IDs for
each
 Flash module.


 On 1/29/07, Thomas Fowler [EMAIL PROTECTED] wrote:

 All-

 A recent post spurred my memory of an issue I had a while back. Has 
 anyone
 experienced any issues with having two SEPARATE SWFs in an HTML page
 (using
 SWFObject) calling JavaScript methods via ExternalInterface? I ran
into
 this
 last November and didn't find a solution. What was happening is the
first
 swf loaded was able to call the JS methods, but the second was
unable.

 Thanks,

 Thomas

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com
 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] YouTube Performance

2007-01-10 Thread Sumeet Kumar
Hi

 

I m building a flash player in which I need to play flv with progressive
download.

My flv plays with lot of jerks and it stops to buffer every 3 seconds.
if I try the same flv file from YouTube.com,the performance was very
much better. Any Reasons?

 

Thanks 

Sumeet Kumar

 

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Bitmap Data transparencey

2006-08-01 Thread Sumeet Kumar
Hi All,

 

 

I m using Bitmap data class in flash 8.

I have set the transparency parameter to true and the fillcolor equal to
0x000 in the bitmap data class constructor

bitmap_1: BitmapData = new BitmapData(width, height, true, 0x);

 

This bitmapdata is send to a virtual printer, which converts it to eps
file.

 

But I m getting a background Color in the eps file which is not required


 

I want a transparent eps as my per my requirement.

 

Any help would be great

 

Please suggest

 

 

Thanks and Regards

Sumeet Kumar

Sebiz Infotech

 

 

 

 

 

 

I never think of the future - it comes soon enough. 

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] External Interface Strange Behaviour

2006-07-15 Thread Sumeet Kumar
 wasSuccessful1:Boolean = ExternalInterface.addCallback(methodName1,
instance1, method1);

Stage.showMenu = false;

ExternalInterface.call(fnLoadingFinish);

stop();

 

 

Please help me out

 

Regards

Sumeet kumar

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Media player version detection on Firefox

2006-07-12 Thread Sumeet Kumar
Hi

 

I need to get the version of media player on Firefox/netscape. Is there
any property exposed by navigator.plugins by which I can detect player
version. I  tried this for flash and it is working, but not for windows
media player. Any ideas?

 

R

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] External Interface Class + form tag

2006-05-04 Thread Sumeet Kumar
Hi All

 

I m facing problem in JavaScript to flash communication (using External
Interface Class in flash8)

The Problem is as follows

 

The object tag is inside the form tag in a aspx page.

 

I m not able to call a function from JavaScript to flash

 

But if I remove the form tag it works fine

Is this a known issue?

 

Any Work around to this issue

 

Any help would be great

 

 

Regards

Sumeet Kumar

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] External Interface Class + form tag

2006-05-04 Thread Sumeet Kumar
Hi 
I have tried those livedocs
But I m not able to get that code work for me 

It will be a great help if u send me a example regarding this at
[EMAIL PROTECTED]

Thanks And Regards
Sumeet Kumar




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Geoff
Stearns
Sent: Thursday, May 04, 2006 6:44 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] External Interface Class + form tag

if you look at the livedocs page for externalinterface there are a  
few comments about this problem, and i think there is a workaround.


On May 4, 2006, at 8:31 AM, Sumeet Kumar wrote:

 Hi All



 I m facing problem in JavaScript to flash communication (using  
 External
 Interface Class in flash8)

 The Problem is as follows



 The object tag is inside the form tag in a aspx page.



 I m not able to call a function from JavaScript to flash



 But if I remove the form tag it works fine

 Is this a known issue?



 Any Work around to this issue



 Any help would be great





 Regards

 Sumeet Kumar

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Fonts Gautami and Tunga

2006-03-16 Thread Sumeet Kumar
Hi All

 

I m embedding Fonts gautami  and Tunga in textfields

But when I start inputting the text, the text appears as empty square
boxes.

 

Why this is happening?

 Any Help would be great

 

Regards

Sumeet Kumar

 

 

 

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Fonts Gautami and Tunga

2006-03-16 Thread Sumeet Kumar
Yes I m embedding the font


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jim Tann
Sent: Thursday, March 16, 2006 5:20 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Fonts Gautami  and Tunga 

Are you embedding the fonts?

James Tann

Web Developer

AVT Limited

 

Tel: 01273 299 001

Fax: 01273 299 002

E-mail: [EMAIL PROTECTED]

-- 
Take your communications to the next stage! www.avtgroup.com


Live Events  *  Online Events  *  Consultancy  *  Video  Multimedia  *
Facilities

AVT Limited, AVT House, Stone Street, Brighton, BN1 2HB

London Office: AVT Limited, 116 Cannon Workshops, Hertsmere Road,
London, E14 4AS

Cornwall Office: AVT Limited, The Coach House, 16 The Parade, Truro,
Cornwall, TR1 1QE


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sumeet
Kumar
Sent: 16 March 2006 09:35
To: Flashcoders mailing list
Subject: [Flashcoders] Fonts Gautami  and Tunga 

Hi All

 

I m embedding Fonts gautami  and Tunga in textfields

But when I start inputting the text, the text appears as empty square
boxes.

 

Why this is happening?

 Any Help would be great

 

Regards

Sumeet Kumar

 

 

 

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Font Embedding

2006-02-20 Thread Sumeet Kumar
Hi All,

I m Building a flash editor, which is a part of a website

User can add any number of text boxes in the editor and apply any font
on the each character of the textbox with bold, italic or underline

The problem is that whenever the user will change the font, i will have
to load 4 font SWF's (one for simple font, one for bold, one for italic
and one for bold italic) ,even in the case of the smaller fonts the size
of one fonts come to be around 70KB.And loading 70Kb for a single font
does not seem to be a good solution.


Can anyone suggest something to optimize this thing?

Any suggestion would be great help for me.

Sumeet Kumar
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Mozilla + wmode = transparent

2006-02-15 Thread Sumeet Kumar
Hi All,

In my application I m using wmode = transparent in the flash embed
tag.

Now the startDrag is not working proper in the mozilla browser which I
feel is due to wmode = transparent. As it is working properly in
Netscape and IE 

Can Any One suggest a solution or any work around?

Any help would be great?


Regards
Sumeet Kumar
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Font Preview In ComboBox

2006-01-23 Thread Sumeet Kumar
Hi All

 

In my application I have to show Font Preview in the combo box and to
show font preview  I need to load all the fonts

But the problem is that I need to load around 500 fonts.

And if I load all the fonts it is going to take lot of time.

 

Can any one suggest any work around for this?

Or any other idea to show the font preview.

 

 

Any Suggestion would be a great help

 

Thanks in Advance

 

Regards

Sumeet Kumar

 

 

 

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


RE: [Flashcoders] Focus in the text field

2006-01-16 Thread Sumeet Kumar
Even this line is not working the focus is getting set but the 
Cursor is not visible

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chris
Velevitch
Sent: Tuesday, January 17, 2006 11:05 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Focus in the text field

You might also need to set the cursor position Selection.setSelection(0,
0);


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


[Flashcoders] Multi Color Gradient

2006-01-10 Thread Sumeet Kumar
Hi All,

 

I want to create a multicolored gradient dynamically where I can specify
ratios for each color in my gradient fill.

Any suggestion will be great help to me 

 

 

Regards

Sumeet Kumar

 

 

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


[Flashcoders] Delete Key + SAFARI

2005-12-26 Thread Sumeet Kumar
Hi All

I m building a text editor in which delete key is used to delete an
object.
The delete key is working fine on all the browsers but it is not working
fine on the safari(on mac).The other key which I m using is enter key
which is working fine even in safari.


Can any one suggest a solution?

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


[Flashcoders] getURL and javascript not working in flash 8

2005-12-26 Thread Sumeet Kumar
Hi All

I m using the getURL method to call a function in the javascript in i.e
but it is not working i.e I m not able to call the javascript function
through getURL.

Any suggestion ?

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


[Flashcoders] Movie Clip Loaded or not

2005-12-22 Thread Sumeet Kumar
Hi All

I m using loadMovie Command to load a image in an empty Movieclip. but
how to check whether the image is loaded or not.

i.e
mc.loadMovie (image.jpg)
id = setInterval(fnCheckUploading,1)

fnCheckUploading =function () {
   if (mc._width2){
  clearInterval (id)
  }
}


Now in my case the width of the image can be even 1 pixel.


So any one please guide me how to put a check.


Regards
Sumeet Kumar

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


[Flashcoders] Image Color

2005-12-13 Thread Sumeet Kumar
Hi All

 

I have a jpg image and it is multicolored. I want to change the
particular color of the image(means if a person is wearing a blue shirt
and red jeans

Then I should be able to change the color of the shirt only) but without
using getPixel and setPixel.

 

I would be very happy for any help i can get.

 

Regards

Sumeet Kumar

 

 

 

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


RE: [Flashcoders] Double click event

2005-12-07 Thread Sumeet Kumar
var timeInterval_int = 700;
this.press_int = getTimer();
if ((this.press_int-this.lastPress_int)timeInterval_int) {
trace(Called the function)

}
this.lastPress_int = this.press_int;

Regards
Sumeet Kumar
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Flash
guru
Sent: Tuesday, December 06, 2005 2:32 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Double click event

hi all,

I was wondering if anyone knows of a double click event. I want to be
able
to double click on a movie clip to perform an action rather than a
single
click.

any help would be great, thanks.

-juegas
___
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] File Loading in https

2005-11-19 Thread Sumeet Kumar
Thanks 
I have solved the problem

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sumeet
Kumar
Sent: Saturday, November 19, 2005 1:21 PM
To: Flashcoders mailing list
Subject: [Flashcoders] File Loading in https

Hi All,

I have a published flash movie (main.swf) in a index.html page,
which I am loading over a secured https:// layer. The problem lies that
I am loading swf's in my main.swf from a unsecured path(http://)then
http://)then/  it fails to load the movie. If I use (https://) then
the movies are loaded.

 

 

Also if the sub movies are loaded on a secured https:// path then if we
locate a reference movieclip at the parent of submovie which lies in
movie, it displays a message undefined.

 

 

Anyone ,Please let me out.

 

Regards

Sumeet

 

 

___
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] File Loading in https

2005-11-18 Thread Sumeet Kumar
Hi All,

I have a published flash movie (main.swf) in a index.html page,
which I am loading over a secured https:// layer. The problem lies that
I am loading swf's in my main.swf from a unsecured path(http://)then
http://)then/  it fails to load the movie. If I use (https://) then
the movies are loaded.

 

 

Also if the sub movies are loaded on a secured https:// path then if we
locate a reference movieclip at the parent of submovie which lies in
movie, it displays a message undefined.

 

 

Anyone ,Please let me out.

 

Regards

Sumeet

 

 

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


[Flashcoders] Text Trailing

2005-11-11 Thread Sumeet Kumar

Hi
I have embedded 10 fonts in my application. And whenever I increase the
size of the text from 10 to 70 or more (from a lower value to a very
higher value)and than try to drag the text it gives a trailing effect

Can any one tell why it gives this type of the effect?Is this a bug of
flash 
Can any one suggest  some solution to this ?

Thanks in advance

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