/* Recent/Latest Post Scroll Bar Script * Created By: Muhammad Hassan * Copyrighted Under DMCA By: EXEIdeas International * Full Tutorial At: (http://www.exeideas.com/) * * Predefined Variables Are: * blog_url * latest_post * background_color * border_color * scrolling_speed * info_text * close_button */ var entries; var feed; var feed_url = blog_url.match(/\/$/) ? blog_url : blog_url+"/"; feed_url += "feeds/posts/default"; function recent_post_createEntries(){ var entries = feed.entry; var entriesArr = []; for(var i=0; i"; document.write(s); } function recent_post_style(){ var s = ""; document.write(s); } function recent_post_content(){ var s = "
"; if(info_text){ s += "
"; s += " "; s += " "; for(var i=0; i"; if(i != latest_post-1){s += " | ";} } s += ""; if(close_button){ s += "
"; s += ""; s += "(x)"; s += ""; s += "
"; } document.write(s); } recent_post_text();