Discover OutWit Hub
Here is a list of easy and quick tutorials which will get you acquainted with the main features of the application.
(Click on the name of a tutorial to play it now.)
if (/Firefox\/[23]/.test(navigator.userAgent)){
alert("OutWit wizards cannot run on your version of Firefox. Please update to the current version and try again.");
wizard.close();
} else if (!("witscript" in window) || !witscript.version || !witscript.version("2.1")){
alert("This wizard is not compatible with your version of the OutWit Kernel. Please download the latest version (2.1 or higher)");
wizard.close();
}
if(wizardKit.platform == "mac"){
$("body").attr("style","border:none !important;");
}
wizardKit.hideCatch;
wizardKit.hideLog;
userSpace.setWizardPrefs();
witscript.logPanel.setAttribute("height",0);
var theScraper = new XML($("#scraper").html().replace (/^[\s\S]+?<!--[\s\S]*?(<[\s\S]+?>)[^<>]*?-->[^<>]*$/,"$1"));
witscript.wait(7000,function(){return witscript.views.links.datasheet.getRowCount() > 0;});
witscript.wait(500);
witscript.views.scraped.bottomPanel.emptyButton.click("left", true);
try{
witscript.scrapeURL("http://www.outwit.com/support/help/tutorials/", theScraper);
}catch(e){
alert(e);
}
witscript.wait(7000,function(){return witscript.views.scraped.datasheet.getRowCount() > 4;});
witscript.wait(500);
witscript.views.scraped.datasheet.selectAll();
var data = witscript.views.scraped.datasheet.getSelectedRows();
views.scraped.bottomPanel.emptyButton.click("left", true);
// alert(JSON.stringify(data));
// Default value in case the tutorials were not scraped
data = (data[0] && data[0][0] && /outwit/i.test(data[0][0])) ? data : [["OutWit Hub - Quick Overview","http://www.outwit.com/support/help/hub/tutorials/outwit-hub-quick-overview.html"],["OutWit Hub - Image Extraction","http://www.outwit.com/support/help/hub/tutorials/outwit-hub-image-extraction.html"],["OutWit Hub - Making A Scraper","http://www.outwit.com/support/help/hub/tutorials/outwit-hub-making-a-scraper.html"],["OutWit Hub - An Advanced Scraper","http://www.outwit.com/support/help/hub/tutorials/outwit-hub-an-advanced-scraper.html"],["OutWit Hub - Creating A Macro","http://www.outwit.com/support/help/hub/tutorials/outwit-hub-creating-a-macro.html"]];
var theList = "";
for (i=0;i<data.length;i++){
theList +='\n<li ><a class="linklist" href="' + data[i][1] + '" target="hub" >' +data[i][0].replace(/OutWit Hub - /,"") + '</a></li>';
}
$("#tutorials").html(theList);
var navBox = $('body').find(".owui-wizard-nav").eq(0);
var navPrev = navBox.find(".owui-wizard-nav-prev");
var navNext = navBox.find(".owui-wizard-nav-next");
if ((!navPrev && ! navNext)|| (/hidden/i.test(navNext.attr("style"))&& /hidden/i.test(navPrev.attr("style")))){
// Moving Close Button to the right
wizardKit.footer='<span id="status" style="float:left !important;" pronunciation="" class="errorMessage"></span>';
$(".owui-wizard-nav-close").attr('style','text-align:right; width:90%;');
$(".owui-wizard-nav-close").html("<span class='smallLabel' id='wizardKitFooter'> </span>");
$(".owui-wizard-nav-close").append($("<div id='buttons' pronunciation=''> </div>"));
$("#buttons").append($("<button />", {
text: 'Close',
pronunciation: '',
click: function(event) {
wizard.close();
return true;
}
}));
$("#wizardKitFooter").html(wizardKit.footer);
$("#status").html("You can access this list via the Hub's Help menu.");
}