Promo Video
I need a 1 to 3 minute promo video created. The video needs to be the same quality as my video here:
If you bid on this project, please provide samples of promo videos that you have created.
Thanks
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
I need a 1 to 3 minute promo video created. The video needs to be the same quality as my video here:
If you bid on this project, please provide samples of promo videos that you have created.
Thanks
I am about to launch a Clip-Share site but am having a problem with the audio/video being out of sync of every video uploaded. I suspect it has something to do with mencoder or ffmpeg. Anyway, I need this fixed please.
Integrating the Piecemaker 3D Gallery into your WordPress Theme
This tutorial will show you how to successfully integrate the Piecemaker 3D Flash image rotator into your WordPress theme. We’ll also discuss setting up a custom admin panel which will make it super easy for your users to make customizations to the rotator.
Piecemaker is a gorgeous, open-source, 3D Flash image rotator created by Björn Crüger from Modularweb. You can preview the piecemaker in action on Sansation, the first premium WordPress theme on ThemeForest to incorporate Piecemaker.
All of the files included in the ZIP file are already modified for you. We’ve also included a folder which has all of the default unmodified Piecemaker files. I recommend that you go check out the Piecemaker site and familiarize yourself with it before proceeding with the tutorial.
The first step is to modify the ActionScript so that it’ll play nicely with WordPress. The ActionScript that comes with Piecemaker defines three values that the Piecemaker needs in order to function properly:
The XML Source defines the Picemaker’s various settings and allows you to define images and their descriptions. The CSS file styles the Piecemaker’s description panels, and the images directory tells the Piecemaker where to pull the images from.
Open up the FLA file named “piecemakerNoShadow.fla” and open the Actions window. In frame 1 you will see the actions below. Please note that you need Flash CS4 to open the source file.

In order for the Piecemaker to work properly within our WordPress theme, we need to dynamically set these variables. To achieve this, we will be using FlashVars. FlashVars are variables the we’ll set within our WordPress page template that will get passed to the flash movie when the page loads. Go ahead and delete the default actions in frame 1 of the flash file, and replace them with the following code:
stage.scaleMode = StageScaleMode.NO_SCALE;
// Pull in the Flashvars
var allFlashVars:Object = LoaderInfo(this.root.loaderInfo).parameters;
// Set the required variables for piecemaker
piecemaker.xmlSource = String(allFlashVars.xmlSource);
piecemaker.cssSource = String(allFlashVars.cssSource);
piecemaker.imageSource = String(allFlashVars.imageSource);
piecemaker.dispatchEvent(new Event("properties"));
The above ActionScript first loads in the FlashVars, and then replaces the default Piecemaker values with these new variables. Our Flash file is now all set to go. Publish the SWF and load your FTP client of choice.

The next step is to upload the required files and folders into your WordPress theme’s directory. This tutorial assumes that you will be uploading everything directly into your theme’s main directory. Here is a list of the required items:
The next step is to embed the SWF movie into your WordPress page template. We’ll be using SWFObject 2 to embed the movie, and we’ll also define the three FlashVars that we referenced in step one.
You first need to reference swfobject within the head of your page. To do so, open up your theme’s “header.php” file in your code editor of choice (mine’s BBEdit), and add the following code in the head of your page:
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/swfobject/swfobject.js"></script>
Next, open up the WordPress page template where you’d like the Piecemaker 3D Rotator to display, and paste the following code:
<div id="flashcontent">
<p>You need to <a href="http://www.adobe.com/products/flashplayer/" target="_blank">upgrade your Flash Player</a> to version 10 or newer.</p>
</div><!-- end flashcontent -->
<script type="text/javascript">
var flashvars = {};
flashvars.xmlSource = "<?php bloginfo('template_url'); ?>/piecemakerXML.xml";
flashvars.cssSource = "<?php bloginfo('template_url'); ?>/piecemakerCSS.css";
flashvars.imageSource = "<?php bloginfo('template_url'); ?>/images";
var attributes = {};
attributes.wmode = "transparent";
swfobject.embedSWF("<?php bloginfo('template_url'); ?>/piecemakerNoShadow.swf", "flashcontent", "960", "610", "10", "<?php bloginfo('template_url'); ?>/swfobject/expressInstall.swf", flashvars, attributes);
</script>
The bulk of the code is just your standard swfobject code used to embed a flash movie onto any webpage. The important stuff we need to be concerned with are the FlashVars:
flashvars.xmlSource = "<?php bloginfo('template_url'); ?>/piecemakerXML.xml";
flashvars.cssSource = "<?php bloginfo('template_url'); ?>/piecemakerCSS.css";
flashvars.imageSource = "<?php bloginfo('template_url'); ?>/images";
Notice that we have named our FlashVars just as we defined them in the ActionScript in step on4. We are also using WordPress’ built-in bloginfo() function to reference the exact locations of the three required files.
The above steps will enable you to successfully deploy the Piecemaker 3D Image Rotator into your WordPress theme, but we’re going to take it a step further. In the following steps, we will discuss how to create a custom admin panel that will allow you to customize Piecemaker’s settings right from the WordPress back-end.
If you’re not interested in setting up the admin panel, you can go over to the Piecemaker website to read the documentation and start making some really kick-awesome animations.
We will not be covering how to create the entire admin panel from scratch. Instead, we’ll expand upon an already in-depth tutorial here on Nettuts: How to Create a Better WordPress Panel.
Once you have followed that tutorial and you have your admin panel setup, please proceed to the next step.

We now need to add additional options to the admin panel you just created in the tutorial. Open your theme’s “functions.php” file, and replace the first chunk of code with the following:
<?php
$themename = "Nettuts";
$shortname = "nt";
$categories = get_categories('hide_empty=0&orderby=name');
$wp_cats = array();
foreach ($categories as $category_list ) {
$wp_cats[$category_list->cat_ID] = $category_list->cat_name;
}
array_unshift($wp_cats, "Choose a category");
$tween_types = array("linear","easeInSine","easeOutSine", "easeInOutSine", "easeInCubic", "easeOutCubic", "easeInOutCubic", "easeOutInCubic", "easeInQuint", "easeOutQuint", "easeInOutQuint", "easeOutInQuint", "easeInCirc", "easeOutCirc", "easeInOutCirc", "easeOutInCirc", "easeInBack", "easeOutBack", "easeInOutBack", "easeOutInBack", "easeInQuad", "easeOutQuad", "easeInOutQuad", "easeOutInQuad", "easeInQuart", "easeOutQuart", "easeInOutQuart", "easeOutInQuart", "easeInExpo", "easeOutExpo", "easeInOutExpo", "easeOutInExpo", "easeInElastic", "easeOutElastic", "easeInOutElastic", "easeOutInElastic", "easeInBounce", "easeOutBounce", "easeInOutBounce", "easeOutInBounce");
The bulk of the above code is identical to the tutorial, but we’ve added a new array named $tween_types. This array holds all of the various animation effects that are available with PieceMaker. We will use this array to generate a dropdown list of the various animation effects in our custom options panel. You can check out the Tweener Documentation to review a visual representation of the various Piecemaker animation effects.
This will create a new sliding options panel similar to the ones you created in the tutorial. It’s a long bit of code, but it follows the same exact logic as the tutorial. We are simply creating variables for all of the different settings that we’ll need to define in the Piecemaker’s XML file. An important thing to note is that we made sure to define default values for each option (the values in ’std’ are the default values). There are a decent amount of settings for the Piecemaker and we don’t want to force our users to set up all those options if they don’t want to.
array( "name" => "3D Rotator Options", "type" => "section"), array( "type" => "open"), array( "name" => "Segments", "desc" => "Number of segments in which the image will be sliced.", "id" => $shortname."_segments", "type" => "text", "std" => "9"), array( "name" => "Tween Time", "desc" => "Number of seconds for each element to be turned.", "id" => $shortname."_tween_time", "type" => "text", "std" => "3"), array( "name" => "Tween Delay", "desc" => "Number of seconds from one element starting to turn to the next element starting.", "id" => $shortname."_tween_delay", "type" => "text", "std" => "0.1"), array( "name" => "Tween Type", "desc" => "Type of animation transition.", "id" => $shortname."_tween_type", "type" => "select", "options" => $tween_types, "std" => "Choose a category"), array( "name" => "Z Distance", "desc" => "to which extend are the cubes moved on z axis when being tweened. Negative values bring the cube closer to the camera, positive values take it further away. A good range is roughly between -200 and 700.", "id" => $shortname."_z_distance", "type" => "text", "std" => "25"), array( "name" => "Expand", "desc" => "To which etxend are the cubes moved away from each other when tweening.", "id" => $shortname."_expand", "type" => "text", "std" => "9"), array( "name" => "Inner Color", "desc" => "Color of the sides of the elements in hex values (e.g. 0x000000 for black)", "id" => $shortname."_inner_color", "type" => "text", "std" => "0x000000"), array( "name" => "Text Background Color", "desc" => "Color of the description text background in hex values (e.g. 0xFF0000 for red)", "id" => $shortname."_text_background", "type" => "text", "std" => "0x666666"), array( "name" => "Text Distance", "desc" => "Distance of the info text to the borders of its background.", "id" => $shortname."_text_distance", "type" => "text", "std" => "25"), array( "name" => "Shadow Darkness", "desc" => "To which extend are the sides shadowed, when the elements are tweening and the sided move towards the background. 100 is black, 0 is no darkening.", "id" => $shortname."_shadow_darkness", "type" => "text", "std" => "25"), array( "name" => "Auto Play", "desc" => "Number of seconds to the next image when autoplay is on. Set 0, if you don't want autoplay.", "id" => $shortname."_autoplay", "type" => "text", "std" => "2"), array( "type" => "close"),
In this step, we need to slightly modify our WordPress page template from Step three. Instead of pointing our xmlSource to an XML file, we need to point it to a PHP file. By using a PHP file instead of an XML file, we can pull in all of the values that were set by the user in our custom options panel. It’s just the one line of code that needs to be replaced:
flashvars.xmlSource = "<?php bloginfo('template_url'); ?>/piecemakerXML.php";
We’re almost there! In this step, we’ll create the PHP file that we just referenced in the code above. This PHP file will be used to pull in all of the values from our custom options panel and generate the XML file that the Piecemaker needs in order to function properly. The code is somewhat lengthy, so I’ll try to break it up into more digestable chunks.
Create a blank PHP file, name it “piecemakerXML.php”, and paste the following code at the start of the file:
<?php require_once( '../../../wp-load.php' );
$segments = get_option('nt_segments');
$tweentime = get_option('nt_tween_time');
$tweendelay = get_option('nt_tween_delay');
$tweentype = get_option('nt_tween_type');
$zdistance = get_option('nt_z_distance');
$expand = get_option('nt_expand');
$innercolor = get_option('nt_inner_color');
$textbackground = get_option('nt_text_background');
$textdistance = get_option('nt_text_distance');
$shadow = get_option('nt_shadow_darknent');
$autoplay = get_option('nt_autoplay');
?>
Next, we need to set the content-type header so that the browser knows we are going to output XML content rather than the default text/html. We will also include some initial Piecemaker settings tags.
<?php
header("Content-type: text/xml");
echo '<?xml version="1.0" encoding="utf-8" ?>
<Piecemaker>
<Settings>
<imageWidth>830</imageWidth>
<imageHeight>360</imageHeight>';
We are now going to output the variables we stored into their correct XML tags, and close out the Piecemaker settings tag.
echo '<segments>'. $segments . '</segments>'; echo '<tweenTime>'. $tweentime . '</tweenTime>'; echo '<tweenDelay>'. $tweendelay . '</tweenDelay>'; echo '<tweenType>'. $tweentype . '</tweenType>'; echo '<zDistance>'. $zdistance . '</zDistance>'; echo '<expand>'. $expand . '</expand>'; echo '<innerColor>'. $innercolor . '</innerColor>'; echo '<textBackground>'. $textbackground . '</textBackground>'; echo '<textDistance>'. $textdistance . '</textDistance>'; echo '<shadowDarknent>' . $shadow . '</shadowDarknent>'; echo '<autoplay>' . $autoplay . '</autoplay>'; echo ' </Settings>
The final step is to output the images that we want to include in the rotator along with their descriptions, and we’ll also close out the Piecemaker XML tag.
<Image Filename="image1.jpg">
<Text>
<headline>Description Text</headline>
<break>?</break>
<paragraph>Here you can add a description text for every single slide.</paragraph>
<break>?</break>
<inline>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu quam dolor, a venenatis nisl. Praesent scelerisque iaculis fringilla. Sed congue placerat eleifend.</inline>
?<a href="http://themes.5-squared.com/sansation/?style=cool_blue" target="_blank">hyperlinks</a>
</Text>
</Image>
<Image Filename="image2.jpg">
<Text>
<headline>Description Text</headline>
<break>?</break>
<paragraph>Here you can add a description text for every single slide.</paragraph>
<break>?</break>
<inline>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu quam dolor, a venenatis nisl. Praesent scelerisque iaculis fringilla. Sed congue placerat eleifend.</inline>
?<a href="http://themes.5-squared.com/sansation/?style=cool_blue" target="_blank">hyperlinks</a>
</Text>
</Image>
<Image Filename="image3.jpg">
<Text>
<headline>Description Text</headline>
<break>?</break>
<paragraph>Here you can add a description text for every single slide.</paragraph>
<break>?</break>
<inline>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu quam dolor, a venenatis nisl. Praesent scelerisque iaculis fringilla. Sed congue placerat eleifend.</inline>
?<a href="http://themes.5-squared.com/sansation/?style=cool_blue" target="_blank">hyperlinks</a>
</Text>
</Image>
<Image Filename="image4.jpg">
<Text>
<headline>Description Text</headline>
<break>?</break>
<paragraph>Here you can add a description text for every single slide.</paragraph>
<break>?</break>
<inline>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu quam dolor, a venenatis nisl. Praesent scelerisque iaculis fringilla. Sed congue placerat eleifend.</inline>
?<a href="http://themes.5-squared.com/sansation/?style=cool_blue" target="_blank">hyperlinks</a>
</Text>
</Image>
</Piecemaker>';
?>
I hope you learned something useful in this tutorial. By combining various different technologies, we’re able to add powerful functionality to our WordPress themes. More importantly, we made it easy for the average user to make customizations to our theme.
Isc Custom Url/modrewrite Mod
I need a professional who is experienced with Interspire Shopping Cart (version 5.5.4, latest version) – (http://www.interspire.com) to create a custom module for me that will allow to define custom URLs just like how wordpress allows slugs. The custom URL defined in the admin will be exactly the URL for that corresponding page. The custom URL field should be available for products, categories, and web pages (if you know Interspire you’ll know exactly what this means). The mod should be simple using the Interspire API
Placement of the custom URL field will be given upon acceptance of the individual/company who fulfills our requirements.
Again, you MUST be experienced with Interspire – Only experienced people/companies will be considered – Must be able to provide other examples of Interspire Modifications – NO EXCEPTIONS !!!
Upon successful completion of this project, if everything goes well, we will have further work on other Interspire projects.
!! IMPORTANT !!
In creating this mod you will release all rights to my company and you may be required to sign a non-disclosure agreement.
You will also be required to give use EXACT documentation of what you did and how we can duplicate the mod to other Interspire websites.
Quick Php Fix 2
We have a php application that needs a quick fix. Please pm for more info.
Phone Verification
When people sign up to my website I see a lot of spam and fraud. To combat this I want to have an automated system that calls their phone and hangs up before the phone is ringing to verify that they have entered an existing phone number.
I will install Skype on my Linux dedicated server and I need you to create a PHP class that takes the phonenumber as a parameter. The class/method returns as a minimum info if the telephone number exists or do not exist (maybe also busy line etc if possible). It should be possible to perform many verifications at the same time and a very high volume.
People with Skype API experience are preferred.
Thanks & good luck.
Photo Sharing Need Coder
IF YOU ARE SERIOUS ABOUT WORKING FOR ME ON THIS PROJECT TYPE THE WORD “WYDB” IN YOUR BID OTHERWISE ILL KNOW YOUR USING A BOT AND HAVENT EVEN LOOKED AT THE REQUIREMENT!!!
I have just recently finished my website design for my new website and now it needs coding. Its fairly similar to others in the sense that its an Image Sharing website with the following types of features and pages:
Member accounts
– Upload Images
– Profile Page for each user
– Image is shown in different areas from the Result page when an image is clicked to a members profile page and also in a Browse page ive created also.
– People can signup/signin with their FACEBOOK login details and then get the option to choose/type in a username to use.
– Message system allowing members to send messages to each other
– Follow system allowing members to follow each other on the website so they can be updated with their “followers” new uploads and what they are upto such as “jordan just commented on billy’s photo”. With a live feed of this going on in their profiles and on the Friends page too similar to facebook live feed
– Profile customization, lets members change the background colour/image, and a few other little areas.
– Upload Photo or take an image directly on the site using their connected webcam and then upload to their account and display on the website.
– Google Map updating every 5 seconds with the most recent photo upload, showing a thumbnail of the upload and where in the world in came from with that google map on the screen at the same time.
And now also a ADMIN PANEL to control everything from. I dont really have a design made for this yet but I may be able to get one unless you can just quickly make one. I dont care how it looks just has to work well and be secure like the rest of the site too.
IF YOU ARE SERIOUS ABOUT WORKING FOR ME ON THIS PROJECT TYPE THE WORD “WYDB” IN YOUR BID OTHERWISE ILL KNOW YOUR USING A BOT AND HAVENT EVEN LOOKED AT THE REQUIREMENT!!!
Javascript And Php To Flash
Hi there
I have a little calculator in Javascript and PHP and need integrate or convert to Flash using Action Script.
Please, check the attach file with the calculator.
Image Sharing Needs Coder
IF YOU ARE SERIOUS ABOUT WORKING FOR ME ON THIS PROJECT TYPE THE WORD “WYDB” IN YOUR BID OTHERWISE ILL KNOW YOUR USING A BOT AND HAVENT EVEN LOOKED AT THE REQUIREMENT!!!
I have just recently finished my website design for my new website and now it needs coding. Its fairly similar to others in the sense that its an Image Sharing website with the following types of features and pages:
Member accounts
– Upload Images
– Profile Page for each user
– Image is shown in different areas from the Result page when an image is clicked to a members profile page and also in a Browse page ive created also.
– People can signup/signin with their FACEBOOK login details and then get the option to choose/type in a username to use.
– Message system allowing members to send messages to each other
– Follow system allowing members to follow each other on the website so they can be updated with their “followers” new uploads and what they are upto such as “jordan just commented on billy’s photo”. With a live feed of this going on in their profiles and on the Friends page too similar to facebook live feed
– Profile customization, lets members change the background colour/image, and a few other little areas.
– Upload Photo or take an image directly on the site using their connected webcam and then upload to their account and display on the website.
– Google Map updating every 5 seconds with the most recent photo upload, showing a thumbnail of the upload and where in the world in came from with that google map on the screen at the same time.
And now also a ADMIN PANEL to control everything from. I dont really have a design made for this yet but I may be able to get one unless you can just quickly make one. I dont care how it looks just has to work well and be secure like the rest of the site too.
IF YOU ARE SERIOUS ABOUT WORKING FOR ME ON THIS PROJECT TYPE THE WORD “WYDB” IN YOUR BID OTHERWISE ILL KNOW YOUR USING A BOT AND HAVENT EVEN LOOKED AT THE REQUIREMENT!!!
Attracting Members On Website
I need members to join my website skyslip.com I need active members on the site from US,Canada, and UK. Here is how it works:
1)Must have a two accounts on the site- one regular account, one group account.
2)Both accounts must be active.
3)All members must upload a picture
4)No fake accounts, no spam, no robots
Important
1) All account must be active
2) Get organizations, local communities, and businesses to register.
3) Each member that joins receives $0.10 per new member.(Price can vary depending on delivery
Here is the website. www.skyslip.com
here is the group profile- http://www.skyslip.com/group.php?page=article_show&id=63&article=24
Report Violation
We have got stuck with our Joomla/VirtueMart site.
Our left side menu which is a mix of Joomla (articles) and VirtuMart (products) does not work like we want it to work.
Our skilled Indian developers has got stuck. They claim that it is because Artisteer has been used and left some code on the site and they are not able to sort the mess out.
Therefor we need to come in contact with a highly skilled developer that knows Joomla, VirtueMart and as I understand it javascript to sort our left menu out.
Our problem is this:
when clicking on a category, we only want the next level of subcategories to fall out, etc.
It is a simple functionallity and our developers knows how to do it if they should start from scratch again, but because of the code from Artisteer they do not know what to do.
I look forward to see references that I can contact to hear whether you are highly skilled or not.
Magento Delivery Zone
My client have a Magento site and need delimit the delivery zone and delivery hour.
Please, check the attachment file for more detail.
Paid Download Management Syste
Here is a overview that what I wanted.
http://www.growcommerce.com/Paid-Download-Management-System.aspx
When a client purchased on my website, return a download link, configurable IP Address Count and download Time Period.
Stock Broker Trading Website
We are in the process of establishing a stock broker business unit and would like to have a comprehensive dynamic website; we want to consider your offer for the web design and development service.
E-commerce Needed With Php
NEED SOMEONE TO START NOW:
I need the following for a new E-Commerce site
Design
Shopping cart setup
custom programming where the search is:
Cover: (next category): (next category)
Each item you hover over in the final category will have an image pop up over it.
Need this done immediately.
Give prices. BUDGET IS FIRM ———– IF YOU CAN HAVE THIS DONE IN 3 DAYS; WILL PAY A BONUS… MUST BID WITHIN MY BUDGET, THOUGH.
MUST SHOW EXAMPLES OF PREVIOUS WORK.
Deadline is APRIL 1st – NO LATER
Info is below:
Colors need to be clean and crisp, but eye catching as well…
Other info is in the folder.
I need this by the 1st, NO LATER…
And leave a spot at the top of the design to add three 200×200 images…
LOGO File: https://www.scriptlance.com/f/?12697218443304636
INFORMATION File: https://www.scriptlance.com/f/?126972137619659227
The biggest thing is the design needs to be different…
Here are some different designs I like… The only thing I like is how they are different than regular e-commerce designs
http://www.templatemonster.com/zencart-templates/28213.html
http://www.templatemonster.com/magento-themes/27813.html ((I like the photo look… There are three images also to go on this page; can you put them in a photo frame? — AND CAN YOU MAKE IT SO ALL PRODUCTS I UPLOAD HAVE THE SAME PHOTO FRAME AROUND THE IMAGES?))
http://www.templatemonster.com/zencart-templates/27955.html ((this has a different design to it, but need some products on the home page… Need to be able to set ‘Featured Products’ – 6 products))
http://www.templatemonster.com/magento-themes/27243.html ((I like how they have the banners for each of the categories… I want something like this for the Amp Model’s page…))
*********COLORS ARE GOING TO BE WHITE, DARK GRAY, AND CHOCOLATE BROWN — CHOCOLATE BROWN NEEDS TO BE THE MAIN FOCUS COLOR, WITH DARK GRAY AS THE HIGHLIGHT AND WHITE OR BLACK AS THE BACKGROUND — I WANT THE BACKGROUND TO HAVE SOMETHING TO DO WITH AMPLIFIERS… MAYBE A BLEND OF AMP IMAGES.
http://www.templatemonster.com/oscommerce-templates/27241.html ((LIKE THE COLOR SCHEME ON THIS — AND SEE HOW THE BACKGROUND IS FOCUSED ON THE THEME? I WANT THE SAME KIND OF FOCUS ON THIS DESIGN))
http://www.templatemonster.com/oscommerce-templates/25917.html ((I LOVE HOW THE LOGO BLENDS INTO THE CATEGORY BAR HERE — TRY TO DO SOMETHING LIKE THAT WITH OUR LOGO))
LOGO IS ATTACHED: https://www.scriptlance.com/f/?12697218443304636
Will send the three images that need to be blended into the design at the top…
Additional Info (Added 4/1/2010 at 22:21 EST)…
System Message: This is a reposting of project ID 1270097176.