Welcome to YLOAN.COM
yloan.com » other Phones » Cost Effective Training Solution: Mobile Learning
Nokia Sony Ericsson Motorola HTC Sam Sung Panasonic Acer LG Sharp Toshiba BlackBerry Google android ringtone other Phones

Cost Effective Training Solution: Mobile Learning

Estimated world population using cell phones has now reached 4 billion

. Although only 10% of these are smart phones, experts predict the number will increase to 50% as new phones coming out in 2011 will be 85% smart phone models with mobile internet access. With huge market, the potential for reaching a wider audience appeals greatly to many industries including learning and training solution companies.

While the rise in these gadgets continues, the economy, still reeling from the recession is seeking ways to cut back on cost. Human resource training and development, while beneficial and crucial for a company's overall success, cost a significant amount of investment. Elearning can be an alternative cost effective training solution, but why stop there? Making learning content available on smart phones, PDAs and portable tablet PCs means that trainees and learners will be able to utilize unproductive time by learning new skills or enhancing knowledge crucial to the company's growth.

Imagine listening to a lecture on developing better communications while driving to and from work; while waiting in a long queue, you could be viewing and listening to a webinar about improving coding skills; or while waiting for your laundry, you could be playing an educational game aimed at increasing your vocabulary.

Mlearning or mobile learning is still at its infancy. There are limitations to translating elearning courses used in desktops and laptops to smaller and slower PDAs and smart phones. For example, the ubiquitous iPhone that vehemently refuses to play flash animations. The issue frustrates users who know that the Internet is filled with flash video and animations. Flash animation would've been a great tool for interactive elearning activities but developers have to get around the issue by using HTML5 instead.


While many developers are still in the process of creating content to offer cost effective training solution for mobile phones, here are some of the more interesting ones:

Moodle4iPhones People are familiar with this most commonly used free and open-source elearning application and now Moodle is launching a project, making it accessible via iPhones and iPod Touches. The project is still at its demo stage but after testing and cleaning out the bugs, the application will be free for download at the iTunes App store and will probably be free in other app stores like the Android as well since it's an open-source program.

iTunes U iTunes University has been available for some time now. They are mostly used by students but there is no reason why corporate trainers can't use the site. There are language courses available for free that will be a helpful tool for trainees in communications. For software engineers and programmers, there's a collection of courses in programming different languages. Business managers will love lectures on newest trends in business practices.

Grammar Girl's Quick and Dirty Tips Initially, Grammar Girl was only a podcast broadcast free by Mignon Fogarty. The show's success catapulted it to other mediums like books and audiobooks. Eventually, other podcast spin-offs were developed that target mostly adults in the workplace but is still accessible to everyone including teens. Some of their successful podcast for business and work include: Money Girl, Legal Lad, The Winning Investor, The Dealista, The Get-it-Done Guy, The Public Speaker, The Digital Marketer, and Sales Guy. Recently, Grammar Girl started venturing to apps where it consolidates archived content, tweets, manuals that are beneficial to improving grammar and writing.

[removed]// "+e.name+"

"+(e.number&0xFFFF;)+"

"+e.description); }

} /** * This is a dimensions object * * @param width * @param height * @return */

function LeoHighlightsDimension(width,height)

{ try { this.width=width; this.height=height; this.toString=function() { return ("("+this.width+","+this.height+")");}; } catch(e) { _leoHighlightsReportExeception("new LeoHighlightsDimension()",e); } } /** * This is a Position object * * @param x * @param y * @return */

function LeoHighlightsPosition(x,y)

{ try { this.x=x; this.y=y; this.toString=function() { return ("("+this.x+","+this.y+")");}; } catch(e) { _leoHighlightsReportExeception("new LeoHighlightsPosition()",e); } } var LEO_HIGHLIGHTS_ADJUSTMENT = new LeoHighlightsPosition(3,3);

var LEO_HIGHLIGHTS_IFRAME_HOVER_SIZE = new LeoHighlightsDimension(394,236);

var LEO_HIGHLIGHTS_IFRAME_CLICK_SIZE = new LeoHighlightsDimension(394,512);

var LEO_HIGHLIGHTS_CLOSE_BAR_HEIGHT = 40;

var LEO_HIGHLIGHTS_DIV_HOVER_SIZE = new LeoHighlightsDimension(LEO_HIGHLIGHTS_IFRAME_HOVER_SIZE.width, LEO_HIGHLIGHTS_IFRAME_HOVER_SIZE.height+LEO_HIGHLIGHTS_CLOSE_BAR_HEIGHT);

var LEO_HIGHLIGHTS_DIV_CLICK_SIZE = new LeoHighlightsDimension(LEO_HIGHLIGHTS_IFRAME_CLICK_SIZE.width, LEO_HIGHLIGHTS_IFRAME_CLICK_SIZE.height+LEO_HIGHLIGHTS_CLOSE_BAR_HEIGHT); /** * Sets the size of the passed in element * * @param elem * @param dim * @return */

function _leoHighlightsSetSize(elem,dim)

{ try { // Set the popup location elem.style.width = dim.width + "px"; if(elem.width) elem.width=dim.width; elem.style.height = dim.height + "px"; if(elem.height) elem.height=dim.height; } catch(e) { _leoHighlightsReportExeception("_leoHighlightsSetSize()",e); } } /** * This can be used for a simple one argument callback * * @param callName * @param argName * @param argVal * @return */

function _leoHighlightsSimpleGwCallBack(callName,argName, argVal)

{ try { var gwObj = new Gateway(); if(argName) gwObj.addParam(argName,argVal); gwObj.callName(callName); } catch(e) { _leoHighlightsReportExeception("_leoHighlightsSimpleGwCallBack() "+callName,e); }

} /** * This gets a url argument from the current document. * * @param url * @return */

function _leoHighlightsGetUrlArg(url, name )

{ name = name.replace(/[[]/,"\[").replace(/[]]/,"\]"); var regexS = "[\?&]"+name+"=([^]*)"; var regex = new RegExp( regexS ); var results = regex.exec(url); if( results == null ) return ""; else return results[1];

} /** * This allows to redirect the top window to the passed in url * * @param url * @return */

function _leoHighlightsRedirectTop(url)

{ try { top.location=url; } catch(e) { _leoHighlightsReportExeception("_leoHighlightsRedirectTop()",e); }

} /** * This is used to report events to the plugin * @param key * @param sub * @return */

function _leoHighlightsEvent(key, sub)

{ try { var gwObj = new Gateway(); gwObj.addParam("key", key); gwObj.addParam("sub", sub); gwObj.callName("leoHighlightsEvent"); } catch(e) { _leoHighlightsReportExeception("_leoHighlightsEvent()",e); }

} /** * This will find an element by Id * * @param elemId * @return */

function _leoHighlightsFindElementById(elemId)

{ try { var elem=document.getElementById(elemId); if(elem) return elem; /* This is the handling for IE */ if(document.all) { elem=document.all[elemId]; if(elem) return elem; for ( var i = (document.all.length-1); i >= 0; i--) { elem=document.all; if(elem.id==elemId) return elem; } } } catch(e) { _leoHighlightsReportExeception("_leoHighlightsFindElementById()",e); } return null;

} /** * Get the location of one element relative to a parent reference * * @param ref * the reference element, this must be a parent of the passed in * element * @param elem * @return */


function _leoHighlightsGetLocation(ref, elem) { var count = 0; var location = new LeoHighlightsPosition(0,0); var walk = elem; while (walk != null && walk != ref && count < LEO_HIGHLIGHTS_INFINITE_LOOP_COUNT) { location.x += walk.offsetLeft; location.y += walk.offsetTop; walk = walk.offsetParent; count++; } return location;

} /** * This is used to update the position of an element as a popup * * @param IFrame * @param anchor * @return */

function _leoHighlightsUpdatePopupPos(iFrame,anchor)

{ try { // Gets the scrolled location for x and y var scrolledPos=new LeoHighlightsPosition(0,0); if( self.pageYOffset ) { scrolledPos.x = self.pageXOffset; scrolledPos.y = self.pageYOffset; } else if( document.documentElement && document.documentElement.scrollTop ) { scrolledPos.x = document.documentElement.scrollLeft; scrolledPos.y = document.documentElement.scrollTop; } else if( document.body ) { scrolledPos.x = document.body.scrollLeft; scrolledPos.y = document.body.scrollTop; } /* Get the total dimensions to see what scroll bars might be active */ var totalDim=new LeoHighlightsDimension(0,0) if (document.all && document.documentElement && document.documentElement.clientHeight&&document;.documentElement.clientWidth) { totalDim.width = document.documentElement.scrollWidth; totalDim.height = document.documentElement.scrollHeight; } else if (document.all) { /* This is in IE */ totalDim.width = document.body.scrollWidth; totalDim.height = document.body.scrollHeight; } else { totalDim.width = document.width; totalDim.height = document.height; } // Gets the location of the available screen space var centerDim=new LeoHighlightsDimension(0,0); if(self.innerWidth && self.innerHeight ) { centerDim.width = self.innerWidth-(totalDim.height>self.innerHeight?16:0); // subtracting scroll bar offsets for firefox centerDim.height = self.innerHeight-(totalDim.width>self.innerWidth?16:0); // subtracting scroll bar offsets for firefox } else if( document.documentElement && document.documentElement.clientHeight ) { centerDim.width = document.documentElement.clientWidth; centerDim.height = document.documentElement.clientHeight; } else if( document.body ) { centerDim.width = document.body.clientWidth; centerDim.height = document.body.clientHeight; } // Get the current dimension of the popup element var iFrameDim=new LeoHighlightsDimension(iFrame.offsetWidth,iFrame.offsetHeight) if (iFrameDim.width 0) position.x = anchorPos.x + anchorDim.width; else if (anchorScreenPos.x - anchorDim.width - iFrameDim.width > 0) position.x = anchorPos.x - anchorDim.width; else // default to below position.y = anchorPos.y + anchorDim.height; } } /* Make sure that we don't go passed the right hand border */ if(position.x+iFrameDim.width>centerDim.width-20) position.x=centerDim.width-(iFrameDim.width+20); // Make sure that we didn't go passed the start if(position.x
A ciphone c4 in hand is really worth than iphone 4 ahead What To Expect From Cell Phone Tower Leasing The Modern Telephone Iphone Organize Photos UPDATE) Official T-Mobile G2 Pictures Surface Mobile phone is ready for the next Snowpocalypse? Here We Go Again, Sprint and T-Mobile Rumors Persist The phone battery knowledge and common sense How To Get A Free Apple Iphone 4 CECT YAMI Watch Mobile Phone Why recycling mobile phones is beneficial to the planet Taking Charge of Your Mobile PC&#039;s battery Increase Signals Of Mobile Phone Through Antennas And Amplifiers
print
www.yloan.com guest:  register | login | search IP(216.73.217.87) California / Rosemead Processed in 0.022470 second(s), 7 queries , Gzip enabled , discuz 5.5 through PHP 8.3.9 , debug code: 82 , 10535, 97,
Cost Effective Training Solution: Mobile Learning Rosemead