Thursday, July 9, 2009

Finding Developers For Business Catalyst and GoodBarry

Here in WebXpress - www.businesscatalystsupport.net explain how they can help with development and techniques. For more details click here

Outsource GoodBarry and Business Catalyst Support

This video explains the advantages of using the team at http://www.businesscatalystsupport.net. For more details click here

Wednesday, July 8, 2009

Web 2.0 Logo Creator


With this Web 2.0 Logo Creator, you can create quickly and very easy your own Web 2.0 Logo. To create the Web 2.0 Logo, you dont need any know how, or any expensive Tools or Programs. It is as easy as child play. Just give it a try! Create your own Web 2.0 Logo.

In case that you do need some help with the options, we have explained the various possibilities and choices you have to create your Logo on the Help page.

From time to time, we will be posting updates and technical extensions for our Logo Creator on our Blog. We dont shrink back from introducing to you other Web 2.0 Logo Creators, which can be found in the net on our Weblog.

Should you have any questions, suggestions or comments, please do not hesitate to send them to ( info@creatr.cc) or post them in our Blog as a comment.

We saved the best for last

The Web 2.0 Logo Generator is absolutly for free. Click here

Adobe After Effects Trapcode Particular

1. Create a text or an place image you want to apply the effect.
2. Add a solid below that layer.
3. Pre compose the layer.
4. Search for 'write-on' effects. add that into the precompose layer.
5. Manually place the brush to reveal the image and be sure to select the Paint style first to 'On Original Image'.
5. Once done, select the 'Paint style' now to Reveal original image.
6. Add a new solid above the precompose layer.
7. Search for the particular effect, add the particular into it.
8. Adjust the position of the particular into the write on effect position using the Parent tool.

Business Catalyst - Create, Read and Erase Cookie Javascript


function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}

function eraseCookie(name) {
createCookie(name,"",-1);
}

createCookie('testcookie','valcookie',7);
var cookie_value = readCookie('testcookie');
alert('cookie value = '+cookie_value); //output cookie value valcookie
eraseCookie('menard');
cookie_value = readCookie('menard');
alert('cookie value = '+cookie_value); //cookie value menard null

Free PSD Web Templates

Got nothing to do this night and not in the mood to code, so im giving some free PSD Templates here for all of you there to enjoy :)





Tuesday, July 7, 2009

Business Catalyst - Customize date format


The format string consists of the following abbreviations:
Field | Full Form | Short Form
-------------|--------------------|-----------------------
Year | yyyy (4 digits) | yy (2 digits), y (2 or 4 digits)
Month | MMM (name or abbr.)| MM (2 digits), M (1 or 2 digits)
| NNN (abbr.) |
Day of Month | dd (2 digits) | d (1 or 2 digits)
Day of Week | EE (name) | E (abbr)
Hour (1-12) | hh (2 digits) | h (1 or 2 digits)
Hour (0-23) | HH (2 digits) | H (1 or 2 digits)
Hour (0-11) | KK (2 digits) | K (1 or 2 digits)
Hour (1-24) | kk (2 digits) | k (1 or 2 digits)
Minute | mm (2 digits) | m (1 or 2 digits)
Second | ss (2 digits) | s (1 or 2 digits)
AM/PM | a |
NOTE THE DIFFERENCE BETWEEN MM and mm! Month=MM, not mm!
Examples:
"MMM d, y" matches: January 01, 2000
Dec 1, 1900
Nov 20, 00
"M/d/yy" matches: 01/20/00
9/2/00
"MMM dd, yyyy hh:mm:ssa" matches: "January 01, 2000 12:30:45AM"


Copy and paste this script in the <HEAD> section (formatdate.js)


<script src="formatdate.js" type="text/javascript"></script>

In the List Layout

<span id="date{tag_counter}">{tag_eventfromdate}</span>

<script type="text/javascript">
var originalDate = document.getElementById('date{tag_counter}').innerHTML;
var dateBits = originalDate.split("-");
document.getElementById('date{tag_counter}').innerHTML = formatDate(new Date(dateBits[1] + " " + dateBits[0] + "," + dateBits[2]),'M/dd/yy');
</script>

If tag_eventfromdate is equal to 23-Apr-2009 so it will display 4/23/09 because it has a format M/dd/yy

Business Catalyst - Individual rotations of web apps from latest to oldest

Paste this script in the web app "a" list layout

<script language="JavaScript">
var a = 'a'+{tag_counter} - 1;
document.write("<div id='+a+'>");
</script>
<script language="javascript">
document.write("</div>");
</script>

Paste this script in the web app "b" list layout

<script language="JavaScript">
var b = 'b'+{tag_counter} - 1;
document.write("<div id='+b+'>");
</script>
<script language="javascript">
document.write("</div>");
</script>

In your page

{module_webapps,4693,a,}
{module_webapps,4271,a,}

<script language="JavaScript">
var max1 = {module_webappscount,4693};
var max2 = {module_webappscount,4271};
document.getElementById('a0').style.display = "" ;
document.getElementById('b0').style.display = "";;
var ctr = 0;
var strid = "";
var num = 0;
var num2 = 0;
interval();

function interval(){
setTimeout ( "doSomething(num,num2)", 10000 );
}
function doSomething(ctr2,ctr){
for(i=0; i < max2; i++){
strid = 'a'+i;
if(ctr2 == i){
document.getElementById(strid).style.display = "";
}else{
document.getElementById(strid).style.display = 'none';
}
}
if(num == max2-1){
num = 0;
}else{
num++;
}
for(i=0; i < max1; i++){
strid1 = 'b'+i;
if(ctr == i){
document.getElementById(strid1).style.display = "";
}else{
document.getElementById(strid1).style.display = 'none';
}
}
if(num2 == max1-1){
num2 = 0;
}else{
num2++;
}
interval();
}
</script>


Thats all

How to Outsource

The best way to grow your company is to Outsource your website design & development but there are some negative effects if you choose a wrong partner.... Read more

Business Catalyst

WebXpress have implementors and developers who are very skillful in developing for Business Catalyst. They are familiar with all aspects of the Business Catalyst and GoodBarry platforms, including Web Apps, using different Payment Gateways and Business Catalyst APIs... Read more.