Flash ActionScript – getURL in AS3

Flash ActionScript

After a long time I am writing something…during my project I found out something interesting in Flash and JavaScript function. This will be useful for people with basic knowledge in Actionscript. So let’s discuss it here.

First we will discuss about the difference between AS2 and AS3 script on Flash button. Previously in AS2 it’s very easy to write script on Flash button.

AS2 script on Flash button:

on(release){

//Write your action

trace(“Button has been pressed”);

}

And function should be like this (this should be placed on the keyframe of timeline (make actionscript layer) :

function myFunction(){

//Write your action

trace(“Hello”); //write trace option

}

Above example was quiet easy with AS2, now let’s see same example with AS3:

Important point to remember is that in AS3 you can’t write script on button. Just write it on keyframe in timeline (make actionscript layer). And give instance name to your button e.g. HelloButton. Now write the button script on keyframe of timeline:

AS3 script for Flash button:

HelloButton.addEventListener(MouseEvent.CLICK, myFunction);

Here, we have use button name i.e. HelloButton. And a function i.e. myFunction

In AS3 function is written as:

function myFunction (event:MouseEvent):void{

                trace(“Hello”);

}

In above function, remember to add “event:MouseEvent” and “:void” as compare to AS2, which tells that on which mouse event this function should execute.

Now let’s discuss about simple script of “getURL”. Previously it was easy to open a webpage on click of a Flash button. You just need to put this script on Flash button. See example:

on(release){

                //getURL(“http://www.google.com”, _blank);

                }

After clicking this button it will open an http://www.google.com link in new window.

But now if you just put this script on Flash button and publish HTML, you will find that it’s not working….don’t worry this is just a simple glitch within your HTML…….try to find out this param tag…in HTML:

<param name=”allowScriptAccess” value=”always”/>

Make sure that….value=”always”….if you want to run getURL script on Flash button….Now your Flash button works perfectly in HTML.

Now learn something interesting, capture Flash button event in Javascript of HTML page. Check AS2 and AS3 versions:

AS2 version:

On Flash button write this script:

on(release){

               getURL(“javascript:myfunction()”);           

}

In above script, “myFunction()” is a javascript function which is present in HTML.

In HTML, where you are going to run this Flash button, just write javascript function “myFunction()” in <body> section. Check this:

JavaScript Function in HTML

<script language=”JavaScript”>

function myfunction(){

alert(“Hello World”);       

}

In the object tag for the SWF file in the containing HTML page, set the following parameter:

<param name=”allowScriptAccess” value=”always” />

Now check above scenario in Actionscript 3:

AS3 version:

import flash.external.ExternalInterface;

Instead of “getURL”, in AS3 we should use “ExternalInterface” classes. For more details check link: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/external/ExternalInterface.html

import flash.events.Event;

HelloButton.addEventListener(MouseEvent.CLICK, myFlashFunction);

Above code is for Flash button with instance name: “HelloButton”, and when someone press this button it execute “myFlashFunction”(JavaScript function).

 

function myFlashFunction (e:Event):void{

     ExternalInterface.call(“myfunction”, HelloButton.name);

};

myFlashFunction is a Flash function which runs javascript function(i.e. myfunction) in HTML file.

 

And in HTML, place this javascript function:

<script language=”JavaScript”>

function myfunction(){

alert(“Hello World”);       

}

In the object tag for the SWF file in the containing HTML page, set the following parameter:

<param name=”allowScriptAccess” value=”always” />

 

Now run HTML file in Internet Explorer (browser). And when you press Flash button in SWF file in the containing HTML page, javascript code catch the Flash button event. This way you can catch any Flash event in javascript and use for many purposes. Hope this will be helpful for those who want to understand basic event catching with JavaScript from Flash.

Video file conversion with Windows batch file

Recently I had encountered with a video problem and solved it, so thought why not to share this with my readers. This may be very useful for some of you.

Problem: Received one video file in AVI format. Need to do editing as instructed. Video plays fine in VLC player. Actually this video is captured with a hand held camera. So my first thought was how come the video format is in AVI? AVI is uncompressed format and hand held camera generally generate MOV format. I tried to open provided AVI format in Adobe Premier CS5.5….for my surprise it’s failed. I was only getting audio symbol in my Adobe Premier project ??? I tried everything to import and run this file in Adobe Premier  and even in Adobe Auditions etc. but no success. I checked and found that may be this is due to some missing codec or somebody during conversion of AVI done something wrong? Now the problem is if you can’t open this file in any software how can you convert it into another format? I can’t ask client to provide me new file because project had very tight deadline, crucial at that time. Anyhow I need to solve the problem and provide edited video to client next morning.

Solution: I checked internet resources and forums, and found a solution which is worth to share with you. When you are not able to open this AVI in any software than how can you convert it in other format? Yes simple, this will work for Windows users only. Remember this will use VLC so not to forget to install VLC in your system (If that is not already install). Now just open a notepad file, and write this code in it:

@ECHO OFF

for %%a in (*.avi) do “C:\Program Files (x86)\VideoLAN\VLC\vlc” -I dummy “%%a” –sout=#:file{dst=”%%~na”.mp4} vlc://quit

Now save this notepad file with name “avi2mp4.bat” in same location where your video file is located. Notepad file icon gets changed into BAT(Windows batch) file icon. Now drag your AVI video file on to this newly created BAT file. You are done J…Now your AVI file converted into MP4 as mentioned in BAT file script. Remember it’s a simple solution but every time you convert files into MP4 you need to compromise with quality a little. It create generation loss for your video file. Instead of drag and drop you can just double click the BAT file, it will convert all AVI files present in that folder to MP4.

Hope this will helpful for you people…

Keep visiting this site for more information J Have a nice day.

Missing Character entities in Dreamweaver CS5

dreamweaver-6

It’s been long time that I haven’t update my blog, I know but I was so busy in my schedule that didn’t find out time to write some good article. I had done some fantastic work during this time. And during my work find out something interesting in Dreamweaver CS5, which I want to share with you all.

In XSLT, some characters are not allowed in certain contexts. For example, you cannot use the less than sign (<) and the ampersand (&) in the text between tags or in an attribute value. The XSLT transformation engine will give you an error if those characters are used incorrectly. To solve the problem, you can specify character entities to replace the special characters.

A character entity is a string of characters that represents other characters. Character entities are either named or numbered. A named entity begins with an ampersand (&) followed by the name or characters, and ends with a semicolon (;). For example, &lt; represents the left angle bracket character (<). Numbered entities also start and end the same way, except that a hash sign (#) and a number specify the character.

XSLT has the following five predefined entities:

dreamweaver_table-1

Figure 1.1: Predefined entities

So now biggest question is that suppose if we try to write some special character, than from where we get the ‘Entity Code’  for that special character. It’s easy, look up the missing character in the character entity reference page on the W3C website i.e. www.w3.org/TR/REC-html40/sgml/entities.html

Let’s select ‘micro’ entity in the webpage. Write down its Entity and CDATA details, which are as follows: Entity: micro CDATA: &#181;

dreamweaver-21

Figure 1.2: Entity and CDATA for ‘micro’

Now open XML file present in Dreamweaver application folder (where you install Dreamweaver, in Program files)….Configuration/DocumentTypes/MMDocumentTypesDeclarations.xml

Open this XML file in text editor or XML editor of your choice. Locate the text ‘mm_xslt_1’ and,

dreamweaver-3

Figure 1.3: mm_xslt_1 declaration

after that place Entity and CDATA in appropriate location. Save the XML file.

dreamweaver-4

Figure 1.4: Entity and CDATA

Now, open Dreamweaver CS5, and in Code view write &micro; …………….. Its amazing to see micro sign on Design view of Dreamweaver CS5.

dreamweaver-5

Figure 1.5: ‘micro’ sign in Code and Design view

You can experiment with many symbols available in W3C website.

Reference: Dreamweaver help, other internet links

3D support in new Flash Player

adobe_alternativa_racing
I was reading different articles on internet about the new technologies in Multimedia field. During this I come across an interesting piece of information which I feel is interesting to you all. This is about the ‘alternativaplatform’ which is a Flash-3D-engine i.e. Alternativa3D.

‘Alternativa3D’ is developed by a Russian company which is working on this platform for more then 10 years(as they claim ), and cooperating close with Adobe and working in pre-release groups, and participate in developing of new Flash Player versions.

‘Alternativa3D’, which is intended for displaying 3D graphics in the Flash Player environment. You can use this technology in wider areas such as 3D websites to multiplayer browser games and applications for social networks in full 3D.

Alternativa3D version 7 has been widely used in the architectural and building sector, interior design and internet advertising. They are also providing servers for online gaming. AlternativaCore is a cluster of several Linux-powered Java servers. It is a ready to use core for creating real-time and turn-based multiplayer online games. This client-server solution helps in version control, high speed data transfer, load balancing  system, store unlimited amount of data, faster and easier development of games, allows expansion, decreases expenses, support payment systems, social networks support etc. For more details just visit: http://alternativaplatform.com/en/alternativa3d/

The best thing is that Alternativa3D is free of cost, so just download it and explore the possibilities. But one thing to remember, you need to have a good understanding of Actionscript 3 and Flash.

Actually Adobe Flash team is working on technologies which make possible to create and play 3D games through Adobe Flash Player. Adobe team is working on a new set of 3D GPU accelerated APIs that delivers advanced 3D rendering in Flash Player and AIR. This API codename is ‘Molehill’. For more information just visit this link: http://tv.adobe.com/watch/adc-presents/molehill-3d-apis/

Apple’s green signal to Flash CS5 iPhone Application

Good news for Flash lovers, Apple released a new version of its SDK license agreement recently. In this new release Apple amended the infamous section 3.1.1 that bans the use of 3rd party languages to develop iPhone applications, the new section now allow developers to use the API in the manner prescribed by Apple and prohibits the use of private API. So now onwards iPhone apps  made using iPhone Packager in Flash CS5 will not be banned for the mere fact that they were not originally written using Objective-C. After this news Adobe announced that they are resuming development work on this feature for future releases of Adobe Flash CS5®.

Reason for this change of mind of Apple is not clear. May be due to competition from Android, or fear for some legal hassles etc. Whatever may be the reason, its certainly a great news for Flash developers because now they can easily develop applications for iPhone and the iPad by using ActionScript 3.0 and Adobe Flash CS5®.

Reference: http://blogs.adobe.com/conversations/2010/09/great-news-for-developers.html, Republic of Code

Adobe CS5 seminar in Mumbai

adobe-cs5
I had been to seminar organize by Adobe on Adobe CS5 launch in Mumbai on Friday 14 may 2010. A great seminar I can say. Very impressive presentation by those three evangelists from Adobe team i.e. Terry White, Greg Rewis, Jason Levine.

Event was organized in NCPA auditorium in Mumbai, which is near to Mantralaya at Churchgate Mumbai. I reached there before time at 8.45 AM on Friday, even though timings are given for the event is 9:30AM to 5:30PM. When I reached to the auditorium it was good to see all old and previous companies’ friends there. We discussed lots about the Multimedia industry and technologies. Good hot tea and coffee with cookies served by Adobe, and also inform that event will start now at 10:00 AM. I passed the time with friends, and on HP, NVIDIA stalls with hot tea.

Event start at 10:00 AM with Terry White session. He took a great session on Design Premium i.e. InDesign, Photoshop, and Illustrator etc. Personally I liked the Terry’s session because he is concentrating on his subject and zooming/zoom out during his activity so everyone can see the menu options which he was selecting. He had utilized his time properly to show demonstration, for which we went to that seminar.

Than Lunch break….ohh we were waiting for that. We ran towards food stall…..ahh …good food….than what… we enjoyed it thoroughly….and not missed any stall……..

Again session starts, this time its Greg Rewis turn. Who was an expert in Web Creative Suite. His presentation skill and command over products is great, but he always leave his workstation and come in front of the audience and express his views and again go to his workstation to show something. In this process what I feel that we lost some useful time. If he like Terry sits on his workstation than he can show may be more in less time. That’s no problem, because he also did a wonderful presentation. He showed all great new features in those products. He also commented on Apple’s problem with Flash technologies. He had shown that Flash technologies support touch screen application. He demonstrated that on iPhone and Terry showed on iPad. Greg shown Photoshop, Dreamweaver, Flash, Fireworks etc.

Greg shown one important thing about Photoshop and Fireworks, which is really amazing, that through Fireworks you can reduce image file size drastically without losing quality as compare to Photoshop. He convert an image from Photoshop to JPEG and size comes to 180KB….but when he convert same image through Fireworks its size comes to 105KB…..AMAZING!!! and that too without any loss in quality as compare to Photoshop image.

We try to avoid afternoon nap because we don’t want to lose any point in between. Many people though enjoyed sleeping. Greg was trying to make his session electrifying and he was successful too,  but you can’t control everyone….and that too after a delicious food in lunch….so many enjoyed their sleep. OK,  I want to make clear that I was not asleep…because I don’t want to lose knowledge sharing from these experts 🙂

Now after Greg session a short break for tea and cookie. Again we enjoyed everything 🙂 …yummy….

Its time for Jason Levine session. Who is evangelist on Creative Suite Production Premium.  His session was also great and he try to cover many topics in video production field. Some problem we faced during his presentation are zoomin/zoomout feature in his laptop. He was not able to zoom-in and zoom-out during exercises because may be his laptop not support that function. So we (viewers) were not clearly able to see what option he is clicking. He sang some Hindi songs also and Hindi dialogue which were liked by the audiences. His language is too fast it seems as compared to previous two presenters, and may be some Indian viewers (who doesn’t interact with American daily) may be find some problem to understand some fast words….may be…..

He has highlighted features such as hi speed of video editing work with CS5, Rotoscoping, Glow lines, Color corrections etc.

After that both these three gentlemen showed us some hidden secretes in last, which is none other than some more new features. Than lucky draw event, in which three lucky winner win the Adobe CS5 set……….uff….I was not selected in that lucky draw…..no problem may be next time 🙂 …….With a good note seminar ends at sharp 6:00PM.

Some new features which are highlighted during seminar are:

1.  Quick selection tool through which we can select hair strands also. Which was difficult in previous version?
2.  New improved 3D text/modeling tool in Photoshop.
3.  Content Aware option in Photoshop…truly magical tool.
4.  Perspective grid tool in Illustrator.
5.  Gap tools, Auto fits, Online feedback feature, interactivity in InDesign.
6.  PHP, HTML 5 support and Browser lab in Dreamweaver.
7.  Supporting of lots of languages in Flash.
8.  New improved code snippets in Flash. Just drag and drop any prepared script from code snippet.
9.  New improved Rotoscoping brush, Glow lines, color correction, color Finess3 plug-in tool in After Effects.
10. And many more 🙂

Audio Knowledge

audio
Friends, I found some of my interesting old notes on ‘audio’. I feel it is worth to share with you.

  1. Audio role in Multimedia
  • Attracts your attention/shocks/excites
  • Change moods
  • Feeling as you are in dream
  • Give pleasure
  • Inform
  • Inform with style and impact

2. Audio is applied to

  • Narration
  • Dialogs, Conversation
  • Background music
  • Music mixed with narration
  • Transition effects in audio
  • Noise
  • Real/Informative sounds

3. Selection of audio for multimedia

  • Topic of multimedia presentation
  • Sound related to information
  • Objective of presentation
  • Desire effect for presentation
  • Target Audience
4. Factors which affects quality of recording
  • Breathing
  • Air conditioner noise
  • Movement
  • Suitability of recording settings
  • Input volume level
  • Consistency of settings
  • Quality of source audio
  • Quality and connectivity of cables

5. Sound Card

  • 8bit, 16bit, 32bit

6. Layout of sound card

  • Microphone connector
  • Line in Jack
  • Microphone in Jack
  • Speaker out/Line out Jack
  • Joystick/MIDI connector
  • IDE connector

1.       Audio File formats (mentioning only few)

  • AU files: (.au) are the most commonly used format format for cross-platform applications (the µ-law format, is also called AU from the file extension used for these files)
  • AIFF files: Audio Interchange file format files (.aiff, .aif, and .aifc) are widely used on Macintosh and silicon graphics computers
  • WAV files: WAV files(.wav) are used with Microsoft Windows applications
  • MP3 files: By eliminating portions of the audio file that are essentially inaudible, mp3 files are compressed roughly one-tenth of audio formats such as WAV(uncompressed)etc.
  • WMA files: Window Media Audio
  • RA files: Real audio file format designed for streaming audio over the internet
  • RIFF files: Resource Interchange File Format. Developed by Micorsoft
  • SND/Sound files : This file format was developed by Apple and is l, imited to a sampling rate of 8bits
  • MID/MIDI/MFF files: Musical Instrument Digital Interface, stores MIDI data
  • VOC files: Voice, developed for Sound Blaster card by Creative Technology. Supports sampling rates of 8 and 16 bits, with or without compression

8. Qualities of Sound

  • Nature of sound: Oscillatory movement of air particles forming directional longitudinal waves
  • Waveform: Describes measurement of speed of the sound
  • Amplitude: Relative loudness of the sound
  • Volume: The amplitude determines the sounds volume, measured in decibels. Human hearing range from 1 to 120 decibels

9. Basic Qualities of Sound

  • Valley and Crest: The lowest part of a waveform is reffered as valley and the peak point as the crest
  • Frequency: No of crests that occur in one second is the frequency also called as Pitch
  • Mono: Sound using only one channel
  • Stereo: Sound using multimedia channels. Digital stereo uses two channels namely Left and Right

10. Analog and Digital Audio

  • Analog: Continuous stream of the waveforms
  • Digital: Finite numerical combinations representing the waveform
  • Requirement of conversion: To handle the sound using computer(digital device) it needs to be converted into digital form
  • Conversion Methods: Use of ADC (Analog signals => electrical impulses => ADC => Digital Sound)

11. Benifts of Digital Sound

  • 100% reproduction
  • Easily Editable
  • Long Lasting
  • Timely Retrieval on Demand
  • Availability of Reliable Storage Media

12. Sampling/Resolution

  • Sampling: The process of digitization of the analog sound
  • Sampling rate: Number of samples per second
  • Typical rate can range from 5000 to 100000 samples per second
  • The number of bots used to store each sample is known as the resolution of the sound
audio_table

MIDI: Musical Instruments Digital Interface

  • MIDI is a simple digital protocol
  • By connecting a computer to a keyboard through a MIDI connection, music can be recorded
  • Many programs are supporting MIDI for communicating with synthesizers. MIDI files are widely used for exchanging computer music

References for content and images: Internet and multimedia books

Lovely Doraemon and Shin-Chan

This article is dedicated to those parents whose kids are diehard fans of Doremone cartoon on Hungama channel in India. I am also amongst them, so I try to collect all information about Doremone and Shin Chan cartoons.
Doremone is basically Japanese cartoon series. So first discuss about Japanese cartoon/animation culture. In Japan, there are two kinds of animation style i.e. Anime & Manga

doraemon_anime

Anime:
It is reference to those animation styles which originated in Japan.  It includes hand-drawn or computer-generated characters and backgrounds which is visually and thematically different than other forms of animation. Anime is aimed at a broad range of audiences. In simple term, Anime are similar as real characters and not like disproportionate cartoon characters. e.g.  Anime human character has proportionate head, leg, arms etc.

 

Manga:

doraemon_shin_chan

It refers to ‘Comics’ or ‘Whimsical image’ in Japanese. Manga developed from a mixture of ukiyo-e (Japanese woodblock prints & paintings) and Western style of drawing, and took its current form shortly after World War II. Manga usually published in black and white. In simple words Manga characters are more like cartoons characters i.e. exaggerated physical features such as large eyes, big hair and elongated limbs etc.

Now let’s talk about Doraemon cartoons, a big hit animation series on Hungama channel in India.
Doraemon is a Japanese manga series created by Fujiko F. Fujio (Pen name Hiroshi Fujimoto) and Fujiko A. Fujio (pen name Moto Abiko) which later became an anime series. This series is about robotic cat named Doremon, who time travel from 22nd century to help a schoolboy Nobita Nobi.
Doraemon was first appeared in December 1969 in six different magazines. Total 1, 344 stories were created in the original series. The best thing about Doraemon is about its moral lesson to children’s which are very effective in delivery.  In India, Doraemon  series comes on Hungama channel and this Hindi dub language series is superb. I have found the language quality and selection of words in Hindi dubbed version really fantastic still simple. Due to this kids are learning/grasping language very fast and clearly.

Awards receive by Doraemon:
1. Japan Cartoonist Association Award (1973)
2. Shogakukan Manga Award for Children’s manga (1982)
3. Osmau Tezuka Culture Award (1997)
4. Nations first ‘Anime Ambassador’ (2008), by Japan’s Foreign Ministry

More details about Doraemon:

doraemon
Word ‘Doraemon’ means ‘stray cat’ in Japanese.
Doraemon is sent back in time by Nobita Nobi’s great great grandson Sewashi to improve Nobita’s circumstances so that his descendants may enjoy a better future.  In animation series, Nobita shows as a lazy and irresponsible schoolboy, who is weak physically and academically, this nature led subsequent failure in his life and career, and put his future family line beset with financial problems. To change Nobi family fortune, Sewashi sent a robot called Doraemon.
Doraemon has a magical pocket from which he can bring many gadgets etc. which solves Nobita’s problems. This pocket is called Yojigen-pocket.
Doraemon is afraid of mouse because his ears are eaten up by rats, although he can hear perfectly.
Nobita is in fourth grade, and his friends include Shizuka, Jaian, Suneo, Dekisugi, Nobita’s parents, his school teacher, Doraemon’s sister, Dorami etc. Every character has its own mannerism, which is very lovely and attractive. Main thing in whole animation is the moral lessons with simple storyline. Animation shows Japanese culture (not heavily) but still you don’t feel lost; because series talks about story, its characters and funny incidents. That means animation is appealing for international audiences also, which is main selling point of animation in international market.

In late 1980s there were rumors about the series finale.
1. It was supposed that due to battery power ran out, Doraemon become dead.  There are two solution for this problem, battery need to replace but it cause reset and Doraemon lose all memory, or wait for the competent robotic technique (technician). Nobita will hurt by this incident and start work hard in school, graduate with honors, and become robotics technician. He successfully resurrected Doraemon in the future as a robotic professor, and became successful as an AI (Artificial Intelligent) developer. And this way his future has changed and he lives happily ever after.
Some more theories were their but they are more pessimistic. When Fujiko Fujio duo broke up in 1987, the idea of an official ending to the series was never discussed. Fujiko F. died in 1996.

Shin-chan
Crayon Shin-chan is a Japanese manga and anime series written by Yoshito Usui. The future of the manga is uncertain due to the death of

doraemon_shin_chan_family
Yoshito Usui in September 2009. It first appeared in April 13, 1992 on TV Asahi. This series is having lots of influence of Japanese culture and language based humors, due to which it is very difficult to translate humor properly in to other international languages. Its humor is little bit adult, so in Indian scenario it had created big controversies when it was first appeared on Hungama TV in 2005. Due to lots of controversies about his style and language, the show stopped airing. Later, by popular demand, the show was editied and began airing again. Content is edited according to the Indian children’s.  Shin-chan series having different characters, such as Shin-chan mom, dad and his sister Hemawari, his teacher etc.

 
References:
http://en.wikipedia.org/wiki/Portal:Anime_and_Manga
http://en.wikipedia.org/wiki/Doremon
http://en.wikipedia.org/wiki/Shin_Chan

Images used are from Google search.

 

Project Management Class

As I had learned about the Project Management, here is a short note on Project Management theory and its classes. This article is purely for my revision purpose, so readers may feel it like incomplete article, my apologies for that.

Project Management:
Projects are defined as complex efforts, made up of interrelated tasks, to be completed within a limited time frame and budget, with a well-defined set of objectives.
Project Management is define as the process of managing and directing the efforts and resourse (time, materials, personnel, finance) through the project life cycle to complete a particular project in an orderly and economic manner; and to achieve the project objectives to the satisfaction of the project’s major stakeholders.

A successful Project Manager must simultaneously manage the four basic elements of Project
  >> Resources
 >> Time
 >> Cost
 >> Scope

Project Life Cycle:

pm_img_01

Class:

1. Project Management Overview: Projectisation & Scope
2. Project Life Cycle feasibility analysis & a case study experience
3. Network based Project Planning & Scheduling
4. Resource Allocation & scheduling
5. Project risk assessment & management
6. Project Procurement, Material & SCM(Software configuration Management)
7. Project Evaluation & Finance related issues
8. Project Contracts, Arbitration & Dispute Settlement Mechanisms
9. Project Total Quality Management
10. Introduction to MS Project
11. Introduction to Primavera
12. Theory of Constraints & Project management Experience
13. Project Human Resource Management
14. Case Studies

Learnings:

1. Describe the special characteristics of project, and their implications
2. Describe the major project management functions and the skills required
3. Major project management techniques
4. With case studies, realistic expectation of how to learn to become effective project manager
5. Understand the role of good project planning, and basic planning framework
6. Understanding the common mistakes made in project planning
7. Understanding and differentiate the CPM  (Critical Path Method) and PERT (Program Evaluation Review Technique) technique in scheduling, their development, applications and limitations
8. Prepare a schedule for project activities, with or without resources constraints, possibly using Excel and MS Project software or Primavera
9. Use CPM method to analyze the time and cost trade-off
10. Address some scheduling problems facing task duration uncertainty
11. Define the elements and roles of project control during the implementation phase
12. Describe the frameworks for project control
13. Monitor project progress
14. Use the earned value method to manage project’s cost and schedule

Aptech aquires MAAC

Aptech Ltd. on 28 Jan 2010,  announced its acquisition of Maya Academy of Advanced Cinematics (MAAC). The acquisition is through the takeover of 100% equity shares of Maya Entertainment Ltd.(MEL) , the parent company of MAAC.  MAAC, one of the largest players in the Animation & Multimedia education industry, is a premium brand with over 70 centres spread throughout India. Aptech has his brand, Arena Animation, the leader in the field of Animation and Multimedia education in Asia. The deal is valued at Rs. 76 cr . In my view a great move by Mr. Ninad Karpe the CEO & MD of Aptech. This move again reposition Arena Multimedia as number 1 in Multimedia, Animation and also strenthen itself in 3D/VFX education market also.

For more details check link: http://www.animationxpress.com/index.php?file=story&id=25611

Copy link
Powered by Social Snap