Animation.3d.graphics Pro.

Hello

Proffesional Graphic and animation designer is needed

READ THE FULL PROJECT AND FOLLOW DIRECTION PLEASE.THANKS

log on www.click2drive.it by creating an account following this tutorial.

http://www.novamov.com/video/3cfk76d23vc0c

cheack out the classes to see the graphics and animation type used for explnation i will need to create.i willn need the same kinde of graphics and animation to use for my classes.

notice, CAP stand for the zip code so as you can see in the tutorial i picked a random reagion searched the zip code on google and put it in.

there is two classes category as you see in the tutorial

some classes are repeated totally or in part in one category or another, due that one category is about motocycl classes and the other is about autocars classes.
a lot of the time one class is using the animations or grafics fro m another class even in the same category.
In each lesson a multimedia is playing or static graphics, and the speaker is talking so its not animation playing all the way around every class, so don’t just calculate how long are the classes and automaticly think that is how much animation or graphics you will have to make, it doesn’t work that way, some stuff are repeated as i saied and some times with one frame the speaker talks for a 2-3 min or more.

we are going to use the graphics and animation you will create for making real classroom video, where the teacher will use your work as a multimedia support to the explnation.

GRAPHICS
#########

– you will deliver to us all the orignals of the work, objects,pic , animations ecc.

– they can’t be a copy of the classes be creative but very clear. every topic or slide explains a subjet o point about signals or rules and that have to be clear. (change angle, surrounding color , objects )

– basicly its a short animation for each signal or rule, some times it just a picture.

– in some grafics you will see numbers or words , i will tell you what to put and where in the grafics you will make.

-as you see in the website the multimedia is devided in slides, you will have to create seperate slides and animation so the teacher orgnize them in the right order for the classes

– top interessting biders will recieve a slide or animation from the web site to make and be creative on, and from that outcome i will decide who will have the job

– create videospot for the bussines

videospot example http://www.click2drive.it/script/public/SpotC2D.aspx?quality=high&lang=ITA

all sources have have to handed.
All deliverable will be considered “work made for hire”
under U.S. Copyright law. Buyer will receive exclusive and complete
copyrights to all work purchased.
No part of the deliverable may contain any copyright restricted
3rd party components (including GPL, GNU, Copyleft, etc.) unless all
copyright ramifications are explained AND AGREED TO by the buyer on
the site per the seller’s Seller Legal Agreement

DON’T SEND GENERAL MSG
DON’T BID IF YOU DIDN’T CREAT AN ACCOUNT ON WWW.CLICK2DRIVE.IT TO SEE THE GRAPHICS AND ANIMATION USED IN THE CLASSES, LET ME KNOW IF YOU DID CREATE AN ACCOUNT AT THE BEGNING FOR THE MSG ASSOCIATED TO YOUR BID
DON’T BID IF YOU NOT SURE YOU WILL COMPLETE THE WORK RIGHT
SENDING ANIMATION SAMPELS IS A PLUS

THANKS

Worker Database 2

Need some changes to a worker database – it is a custom script – MYSQL and PHP – yes I realise it will take a few hrs to customise yourself with the coding – take this into consideration in the bid

I hold bidders to time lines so no muking about – if you only freelance part time – do not bid
If you do not have 10 reviews – do not bid
If you do not have an eye for details – do not bid
Must be contactable via Yahoo msg

Ical/csv And Pdf Calendars

Simple PHP ICAL/CSV and PDF calendar generation

I need a module for my custom CMS to generate ICAL/CSV and PDF calendar files.
Both scripts will take a given multidimensional array of several appointments or events cointaining, date, text, cell color and icon. For example some of those appointment may be:

$myAppointemnts[]=array ( ‘date’ => ‘2010-06-28’, //YYYY-MM-DD
‘text’ => ‘Remember tax declaration’,
‘cellColor’ => ’58D1C3′, //hex format without #
‘icon’ => ‘full/path/to/my/png/file/money.png’ );

$myAppointemnts[]=array ( ‘date’ => ‘2010-08-21’,
‘text’ => ‘Renew passport, remember to take a nice photo!’,
‘cellColor’ => ‘D0DE99’,
‘icon’ => ‘full/path/to/my/png/file/paperwork.png’ );

$myAppointemnts[]=array ( ‘date’ => ‘2010-09-11’,
‘text’ => ‘Moms birthday’,
‘cellColor’ => ‘F5D5ED’,
‘icon’ => ‘full/path/to/my/png/file/gift.png’ );

Please, note that these appointmets or tasks has no starting/ending time: they all are full day events. Icon files and cell colors will be ignored in ICAL/CSV script, they will just be used in PDF generation. Also note that there will not be more than one event on the same date.

The ICAL/CSV script will be able to take these data in the array and generate ICAL and CSV files. Those files must be Google Calendar, Outlook, ICAL and most calendar/email/task software compatible. So our users may be able to import those files into their applications. We will include you script in our CMS and will call your a function something like:

generateDataCalendar(‘ical’, $myAppointments); //for an ical file
generateDataCalendar(‘csv’, $myAppointments); //for an csv file

Please, remember there are several premade scripts to create ical and csv files (I can remember iCalcreator) I don’t mind you to use then but keep it simple and understandable.

The PDF script will work in a similar way, but it with bit more information. The module will generate horizontal DIN A4 (297 mm width x 210 mm height) PDF files with one month per page calendar and many pages as needed to fit appointments into calendar from first to final event; for example 20 appointments: 5 in January, none in February, 10 in March and 5 in April; a 4 page PDF file will be generated. 1 page for January, 1 page for February, 1 page for for March and 1 page for April. Even if February has no events there will be a calendar page for that month.

Our CMS will include the pdf script module and will use it by calling a function something like:

generatePdfCalendar(‘es’, 1, $classicTemplate, $myAppointments)

First parameter (for example ‘es’) is the language used to generate the calendar. So we will have something like:

monthnames[‘en’]=array(‘1’ => ‘January’, ‘2’, ‘February’, … ’12’, ‘December’);
monthnames[‘es’]=array(‘1’ => ‘Enero’, ‘2’, ‘Febrero’, … ’12’, ‘Diciembre’);
/we start month names array index in 1 to keep date php functions values

weekdaynames[‘en’]=array(‘0’ => ‘Sunday’, ‘1’ => ‘Monday’, … ‘6’ => ‘Saturday’);
weekdaynames[‘es’]=array(‘0’ => ‘Domingo’, ‘1’ => ‘Lunes’, … ‘6’ => ‘Sábado’);
/we start weekday names array index in 0 to keep date php functions values

You don’t have to worry about this, we will have add as many languages as needed by creating month and weekday names arrays. You’ll just need to global those arrays to use then into your function.

Please note that some foreign weekday and month names may need UTF8 characters such as accents and so on.

The second parameter of the function (number 1 in the example) will be the week day that will be used as starting week weekday. For example, English and saxon calendar weeks starts on Sunday, while Spanish and Latinamerican ones starts on Monday and other countries or business may need other starting weekday. 0 will be Sunday, 1 will be Monday… and 6 will be Saturday.

The third parameter in the example $classicTemplate will be an array that will contain all the configuration data and variables in relation with PDF design and aspect such as fonts, sizes, strokes, borders, colors. logos, texts, positions… everything that we would need to customize the calendar dessign so based on your templates we can create some more. You are required to create at least 3 PDF templates configuration arrays. I attached a graphic example from expected PDF calendars designs.

On the fly PDF, CSV and ICAL generated files must be prompted with a ‘save as’ force download header.

All code must be clean and very well commented. You must use meaninful variariable and function names so we can understand everything you do.

50% Escrow deposit at project acceptance
50% Escrow deposit at project conclusion after seeing demo in your server.
First deposit release after receiving working code.
Second deposit release after testing in our server and fixing minor bugs or little problems one fully checked.

I edit to add this information:

I’ve been asked if PDFLib is available in out server. It is not. We don’t have PDFLib at this moment in our server. I’d rather to use -only if possible- technologies that may run in shared hosting environments. But if you think that PDFLib is a must or highly recommended for this project let us know in your bid and we will consider about it.