Re: [Flashcoders] How this is done?

2010-01-20 Thread Santhakumar K
Thanks Paul and Henrik,

   How  to do transformation of a masked image to synchronized with video,
any sample tutorial or demo available. I have no clue of achieving this
effect.






On Wed, Jan 20, 2010 at 6:13 PM, Henrik Andersson wrote:

> Uhm, the swfobject javascript class?
>
> If you want details, please elaborate. Even better, ask whoever made the
> site.
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



-- 
SK
http://www.my3dwall.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Actionscript Programmer from Chennai having Opportunity in Singapore

2006-09-11 Thread Santhakumar K

Flashcoders,
  Anybody from chennai willing to work in singapore. Please forward your
resume with detailed description about your role and online links to me at
[EMAIL PROTECTED] . It is an immediate requirement.

Requirement:
2 to 3 years
Flash Actionscript 2.0
OOP's  programming
Sending and receiving data through XML from flash
Knowledge of Database

Thanks,
santhakumar
singapore
___
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] How to secure actionscript code from reverse engineering

2006-08-08 Thread Santhakumar K

David,
  I tried http://www.kindisoft.com and http://www.genable.com. If I chang
all identifier in swf using those appllication, new generated swf  is not
running.  is there is limitation to change the identifer like we may not
change identifier of the imported classess. I dont know upto what level
these softwares will protect and generate.

Regards,
santhakumar


On 8/9/06, David Rorex <[EMAIL PROTECTED]> wrote:


There are several apps out there that claim to protect swfs, I haven't
tried any of them extensivly, but many appear to work. Try searching
for them. Off the top of my head, I can think of swfencrypt,
secureswf, MT's Obfu (mtasc.org/obfu).

-David R

On 8/8/06, Santhakumar K <[EMAIL PROTECTED]> wrote:
> flashcoders,
>   we developing one application that communicate from mobile to pc.
mobile
> version is developed in j2me. pc version i am developing in flashplayer
7
> which should also runs on linux environment. For j2me they having
protection
> method to jumble class files from reverse engineering. but i dont no how
to
> protect my swf from reverse engineering (eg. actionscript viewer). thats
why
> companies afraid to develop secure applications in flash. please inform
me
> any other method to protect from reverse engineering.
>
> Regards,
>
> Santhakumar K Chennai India http://www.santhakumar.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





--
Santhakumar KChennai Indiahttp://www22.brinkster.com/zkumar/main.html
___
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] How to secure actionscript code from reverse engineering

2006-08-08 Thread Santhakumar K

flashcoders,
 we developing one application that communicate from mobile to pc. mobile
version is developed in j2me. pc version i am developing in flashplayer 7
which should also runs on linux environment. For j2me they having protection
method to jumble class files from reverse engineering. but i dont no how to
protect my swf from reverse engineering (eg. actionscript viewer). thats why
companies afraid to develop secure applications in flash. please inform me
any other method to protect from reverse engineering.

Regards,

Santhakumar K Chennai India http://www.santhakumar.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] In the List Component how to add more than one icon in one item (eg. Yahoo Messenger's Address Book)

2006-07-14 Thread Santhakumar K

flashcoders,
 I am developing a appliction which should have more than one icon in one
item (eg. Yahoo Messenger's Address Book). Anyone can help me in this
regard.

Thanks,
santhakumar
--
Santhakumar K Chennai India
___
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] how to decode base64 data and display in flash

2006-06-14 Thread Santhakumar K

Hi Matthias,
 some of  my images may very big.So I have solved this problem by sending
my base64 data to servlet and it returns the bye array that i can able to
display using loadmovie.

Regards,
santhakumar


On 6/12/06, Matthias Dittgen <[EMAIL PROTECTED]> wrote:


Hi Santhakumar,

If your image data is not too big in size/resolution (pixel * pixel),
you could repaint it after decoding, for example:
* Have a class painting a 1*1 pixel sized square and put it to
specific coordinates x/y.
* Decode your base64 encoded image.
* paint your image line by line.

This solution is probably not a good idea for big pictures, but should
work for a single small thumbnail sized picture. You might combine the
painting with nice effects, other than line by line.

I am looking forward to your feedback. Regards,

Matthias


2006/6/9, Santhakumar K <[EMAIL PROTECTED]>:
> Flashcoders,
>In my application I received image data inform of base64. I have to
> decode that data and display in flash using actionscript 2.0. I cannot
able
> to do it. I try to to use this class
> http://ostermiller.org/*Base64.as<http://ostermiller.org/Base64.as>
> *
> but it dosent works.
>
> Thanks,
>
> --Santhakumar K Chennai India
http://www22.brinkster.com/zkumar/main.html
> ___
> 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





--
Santhakumar KChennai Indiahttp://www22.brinkster.com/zkumar/main.html
___
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] How to display Image decoded base64 (bytearray ) using loadMovie in Flash 7

2006-06-10 Thread Santhakumar K

Flashcoders,
i am calling a servlet to decode the base64 format in to byte array and
return as response.
I can able to load image using the below function in Flash 8

 var ByteArrayServlet:String = "
http://www.mywebserver.com//servlet/DecodeServlet";;

 loadMovie(ByteArrayServlet, imagecont_mc);

But the same wont works in Flash 7. Is there is any other way to display the
image in form of byte array as response in Flash 7 player.


thanks,
santhakumar
___
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] File Upload using Flash7 and servlets

2006-06-09 Thread Santhakumar K

Flashcoders,
  I have to upload images from PC to server using flash7 and servlets. Is
it possible to do it. I can use Flash8 for filebrowser. But only Flashpayer
7 is available for linux which doesnt support FileReference class.

Thanks,
--Santhakumar K Chennai India http://www22.brinkster.com/zkumar/main.html
___
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] how to decode base64 data and display in flash

2006-06-09 Thread Santhakumar K

Flashcoders,
  In my application I received image data inform of base64. I have to
decode that data and display in flash using actionscript 2.0. I cannot able
to do it. I try to to use this class
http://ostermiller.org/*Base64.as<http://ostermiller.org/Base64.as>
*
but it dosent works.

Thanks,

--Santhakumar K Chennai India http://www22.brinkster.com/zkumar/main.html
___
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] How to format label in the list component for html

2006-05-27 Thread Santhakumar K

flashcoders,
  I try to format label field in the list component as html.
I tried following options
myList.label.htmlText=true;
myList.labelField.html=true;
Thanks,
santhakumar
___
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] Adding more than one icon in Tree components

2006-05-25 Thread Santhakumar K

Judah,
I saw it is good. But I need know is it possible to add two Icon fields in
one  tree node.
Thanks,
santhakumar




On 5/26/06, judah <[EMAIL PROTECTED]> wrote:


If you want to use another icon from the library you can use the
Tree.iconFunction or the Tree.iconField property.

http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part6_Component_Reference.html

If you want to load in an external image say from a URL then you would
need to create a custom cellrenderer like this one

http://www.drumbeatinsight.com/examples/dndTree/dynamicimages/dndTreeDynamicImages.html
This was a bit tricky because the icon is not part of the cell in the
Tree component.

Best,
Judah

Santhakumar K wrote:
> Flashcoders,
>   Is it possible to add two icons in the Tree components. In the
> component
> reference library it is mentioned that we can able to modify icon in the
> existing icon field.
>
> Thanks,
> santhakumar
> ___
> 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
>


--
"Always bear in mind that your own resolution to succeed is more important
than any one thing."

"You can have anything you want - if you want it badly enough. You can be
anything you want to be, do anything you set out to accomplish if you hold
to that desire with singleness of purpose."

- Abraham Lincoln

___
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





--
Santhakumar KChennai Indiahttp://www22.brinkster.com/zkumar/main.html
___
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] Adding more than one icon in Tree components

2006-05-25 Thread Santhakumar K

Flashcoders,
  Is it possible to add two icons in the Tree components. In the component
reference library it is mentioned that we can able to modify icon in the
existing icon field.

Thanks,
santhakumar
___
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] Accorion Question

2005-12-15 Thread Santhakumar K
In Help It is available in the compenet language reference
Usage 1:

*var listenerObject:Object *= new Object();*listenerObject*.change =
function(*eventObject:Object*) {*// Insert your code here.*
};accordionInstance.addEventListener("change", *listenerObject*);

Usage 2:

on (change) {*// Insert your code here.*
}



On 12/16/05, coker todd <[EMAIL PROTECTED]> wrote:
>
> yes, it's exactly what I want, where do I find that
> event?
>
> looked thru the entire component and couldn't find it.
>
> HELP?
>
>
> --- Ryan Matsikas <[EMAIL PROTECTED]> wrote:
>
> > It fires a "change" event.. is that not what you
> > want?
> >
> >
> > On 12/15/05, coker todd <[EMAIL PROTECTED]> wrote:
> > >
> > > Can someone help me with this, I'm trying to fire
> > an
> > > event using the MM Accordion Component, when a
> > header
> > > is clicked I need an event along with sliding the
> > > pane. Any help, Please. Thanks.
> > >
> > > Kai
> > >
> > > __
> > > Do You Yahoo!?
> > > Tired of spam?  Yahoo! Mail has the best spam
> > protection around
> > > http://mail.yahoo.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
> >
>
>
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



--
Santhakumar KChennai Indiahttp://www22.brinkster.com/zkumar/main.html
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders