Skip to main content

Need To Up My Game In Tiger Zinda Hai for Salman Khan: Ali Abbas

Panaji: His last film Sultan with Salman Khan went on to become one of the biggest blockbusters and now director Ali Abbas Zafar says he feels the pressure to deliver a hit again with the superstars' forthcoming Tiger Zinda Hai.
The movie is a sequel to Ek Tha Tiger, which was the biggest hit of Salman at the time of it's release in 2012.
While the first part was helmed by Kabir Khan the second installment will be directed by Ali. The filmmaker says there is a certain pressure to live upto the 50-year-old actor's trust, apart from taking the franchise forward.
"The main pressure is, when you get the chance to work with that star again, you need to up your game. You need to tell a story which is more relevant today. That's important," Ali said.
"Not only for anything else but also, if that star kind of trusts you so much to do something new to him, explore him in a newer way. Also the fact is that it is a big franchise, it was a big hit. So there is always a pressure to take that
franchise ahead."
Ek Tha Tiger chronicled the story of an Indian spy (RAW) code-named Tiger, who falls in love with a Pakistani spy during an investigation.
Ali says the sequel will again be set against political backdrop, talking about India's position in the world.
"It is a sequel, but it's too early to talk about it in detail. It's a political espionage. It's about spies, what is happening in the world today, where does India stand, what is right, wrong. It's about all of that."
Tiger Zinda Hai also stars Katrina Kaif, who was also their in the first film.
While there were reports that the Baar Baar Dekho actress will be seen in a strong negative role, Ali says Katrina will "kill" him if he doesn't give her a meaty role.
"I hope I give her a strong character, she will kill me if I don't. She is my best friend. I hope there are strong characters (in the film)."
From Katrina's role in Mere Brother ki Dulhan, to Anushka Sharma's in Sultan, the women characters in Ali's films have always been strong.
The director says he is immensely inspired by women around him and hence such strong female characters trickle down in his work.
"I have always seen strong women around me, be it my mother, she was a teacher, she held the house and worked. Women who have opinions and stick to their grounds. In India all our goddesses are women. It's a country of strong women.
"It is just that we don't see it that way because of our shortcoming. It's high time for India to realise that and create characters which are as stronger as men and take it from there."
He was speaking at the 47th International Film Festival of India.

Comments

Popular posts from this blog

FOR MY BLOG READER'S

It is not for me but for my readers. 'One' resolution fROM taday: I want to look like Aamir khan (without 8 packs) Bike or Car (and why): Car, I’ve three reasons for it 1. It’s safer than bike 2. I’ve always dreamt of going on a long drive with my soul-mate in a car. 3. While driving a car you can look into the eyes of.......... obviously you can guess?? J A chance to fly or a chance to be invisible (and why): Invisible, I suffer from Acrophobia (an extreme or irrational fear of heights). I would love to love: My parents, they deserve my love more than anyone in this world. Most recent Dream I had: I’m a kid again. Teacher in the school asks to describe a word and I was struggling L If I were to marry today, I would: If the girl is pretty, I would be delighted. If the girl is not so ..., I wouldn’t marry and convince everybody that I’m underage (I’m actually 20 years old). My Dream Girl is/would be: SHEEEE Best F...

27 Simple mehndi designs for hands for Karwa Chauth

The most  simple mehndi designs for hands  for Karwa Chauth 2014 Karwa Chauth  is around the corner and I am so excited about getting mehndi done! This time I plan to go with a simple yet quirky design. Don’t want my hands full, however it needs to be a style statement for this year’s most awaited festival for us ladies! There are some basic categories of mehndi designs, such as Gujrati, Rajasthani, Marwari,  Arabic  and African  patterns to choose from. They have certain prominent motifs or symbols that distinguishes one from the other. I just can’t seem to stop experimenting with these styles. From  circles to squares , peacocks and paisleys , checks and dots and what not. But my all-time favorite is a simple, curling vine, of course finger tips covered with thick coating of aromatic mehndi (which is so traditional). Quirky patterns include  traditional  as well as non-traditional patterns tweaked to one’s own liking. This includ...

Inline Functions and their Uses

It’s a good practice to divide the program into several functions such that parts of the program don’t get repeated a lot and to make the code easily understandable. We all know that calling and returning from a function generates some overhead. The overhead is sometimes to such an extent that it makes significant effect on the overall speed of certain complex and function-oriented programs. In most cases, we have only a few functions that have extensive use and make significant impact on the performance of the whole program. Not using functions is not an option, using function-like macros is an option, but there is a better solution, to use Inline Functions. Yes, like it sounds, inline functions are expanded at the place of calling rather than being “really called” thus reducing the overhead. It means wherever we call an inline function, compiler will expand the code there and no actual calling will be done. Member functions of classes are generally made inline as in many case...