Exceptional actors explore “Up and Down in Nursery Town”
Please subscribe to keep reading. You can cancel at any time.
-
{{special_title}}
- {{action_button}}
‘);
$(‘.lee-featured-subscription’).html(sFallBack);
}
function lee_formatPackage(oService){
try {
var bOnlyModal = true;
var oSettings = lee_getPackageSettings(oService.HomeMembership);
var newService = {};
if(parseInt(oService.WebFeatureFG) === 2) return false;
if(oService.WebStartPrice != ”){
var custom = JSON.parse(oService.WebStartPrice);
$.each(custom, function(k,v){
newService[k] = v;
});
}
if(bOnlyModal && newService.in_modal && newService.in_modal.toLowerCase() === ‘false’) return false;
if(!bOnlyModal && newService.not_members && newService.not_members.toLowerCase() === ‘true’) return false;
newService.has_featured_class = newService.featured ? ‘featured-package’ : ”;
newService.sort = parseInt((newService.sort) ? newService.sort : oSettings.sort);
newService.title = (newService.package_title && newService.package_title != ”) ? newService.package_title : oSettings.title;
newService.level = oService.HomeMembership;
newService.html = oService.WebOfferHTML;
newService.disabled = newService.disable_purchase ? ‘disabled’ : ”;
var price = lee_formatPackagePrice(newService.start_price);
newService.start_price = price.cost;
newService.format_dollars = (price.format_dollars) ? price.format_dollars : ”;
newService.format_cents = (price.format_cents) ? price.format_cents : ”;
newService.start_at_rate = (newService.fixed_rate === ‘true’) ? ‘for the low price of’ : ‘starting at’;
if( !newService.term ) newService.term = ‘per month’;
newService.has_promotion_class = ”;
if( newService.promotional_price && newService.promotional_price != ” ){
newService.has_promotion_class = ‘has-promotion’;
var promotion = lee_formatPackagePrice(newService.promotional_price);
newService.promotional_price = promotion.cost;
newService.promotional_format_dollars = (promotion.format_dollars) ? promotion.format_dollars : ”;
newService.promotional_format_cents = (promotion.format_cents) ? promotion.format_cents : ”;
}
newService.special_title_class = newService.special_title ? ‘has-special-title’ : ”;
newService.special_label_class = newService.label ? ‘has-label’ : ”;
newService.action_button = ‘Sign Up’;
if(newService.disabled === ‘disabled’){
newService.start_at_rate = ‘Call us at’;
newService.start_price = ‘(828) 322-4510’;
newService.term = ‘to get started’;
newService.action_button = ‘Call Today’;
}
window.lee_service_impressions.push({
‘id’: newService.level,
‘name’: newService.title,
‘price’: newService.start_price,
‘brand’: “hickoryrecord.com”,
‘category’: ‘subscription’,
‘list’: ‘Block’,
‘position’: newService.sort
});
return newService;
} catch(e){
if(window.console) console.warn(e);
return false;
}
}
function lee_sortPackages(property) {
var sortOrder = 1;
if(property[0] === “-“) {
sortOrder = -1;
property = property.substr(1);
}
return function (a,b) {
var result = (a[property] b[property]) ? 1 : 0;
return result * sortOrder;
}
}
function lee_getPackageSettings(sPackage){
switch(sPackage.toLowerCase()){
case ‘dob’:
return {title: ‘Digital Basic’, sort: 0};
break;
case ‘dop’:
return {title: ‘Digital Plus’, sort: 1};
break;
case ‘dopl’:
return {title: ‘Digital Platinum’, sort: 2};
break;
case ‘silv’:
return {title: ‘Silver’, sort: 3};
break;
case ‘gold’:
return {title: ‘Gold’, sort: 4};
break;
case ‘plat’:
return {title: ‘Platinum’, sort: 5};
break;
}
}
function lee_replacePackageTokens(sPackage, oService, sCol){
var hasPromotion = false;
$.each(oService, function(k,v){
if( k === ‘html’){
v = v.replace(new RegExp(‘{{domain}}’, ‘gi’), ‘hickoryrecord.com’)
.replace(new RegExp(‘{{site_name}}’, ‘gi’), ‘HDR | Hickory Daily Record’)
.replace(new RegExp(‘{{business_name}}’, ‘gi’), ‘Hickory Daily Record’)
.replace(new RegExp(‘{{site_phone}}’, ‘gi’), ‘(828) 322-4510’);
}
sPackage = sPackage.replace(new RegExp(‘{{‘+k+’}}’, ‘gi’), v);
});
if(sCol) sPackage = sPackage.replace(‘{{col}}’, sCol);
return sPackage;
}
try {
var oPackages = [],
oFeatured = false,
sHtml = ”,
sTemplate = $(‘#lee-service-template’).html();
$.each(window.leeMembershipPackages, function(i, oService){
var oService = lee_formatPackage(oService);
if(oService){
oPackages.push(oService);
if(oService.featured === ‘true’) oFeatured = oService;
}
});
if(oPackages.length === 0){ throw ‘No packages defined’; }
oPackages.sort(lee_sortPackages(‘sort’));
if(!oFeatured) oFeatured = oPackages[0];
if(oPackages.length === 1){
sTemplate = $(‘#lee-service-template-single’).html();
$(‘#lee-services-list’).addClass(‘single’);
} else {
$(‘#lee-services-list’).addClass(‘multiple’);
}
switch(oPackages.length){
case 6: var sCol = ‘2’; break;
case 5: var sCol = ‘5ths’; break;
case 4: var sCol = ‘3’; break;
case 3: var sCol = ‘4’; break;
case 2: var sCol = ‘6’; break;
default: var sCol = ’12’; break;
}
$(‘#lee-services-modal’).addClass(‘packages_’+oPackages.length);
$.each(oPackages, function(i, oService){
sHtml += lee_replacePackageTokens(sTemplate, oService, sCol);
});
$(‘#lee-services-list .packages’).html(sHtml).promise().then(function(){
$(‘#lee-services-list .loading’).hide();
$(‘#lee-services-list .packages’).css(‘opacity’, 1);
});
if(!__tnt.user.services){
if( $(‘.lee-featured-subscription’).length > 0 && oFeatured ){
$(‘.lee-featured-subscription’).each(function(){
var html = $(this).html();
if( !oFeatured.featured_button_text ){
if(oFeatured.promotional_price){
oFeatured.featured_button_text = oFeatured.promotional_format_dollars+oFeatured.promotional_price+oFeatured.promotional_format_cents+’ ‘+oFeatured.term;
} else {
oFeatured.featured_button_text = ‘Join for ‘+oFeatured.format_dollars+oFeatured.start_price+oFeatured.format_cents+’ ‘+oFeatured.term;
}
}
html = lee_replacePackageTokens(html, oFeatured);
$(this).html(html);
if(oFeatured.promotional_price) $(this).addClass(‘has-promotiom’);
if( $(this).hasClass(‘show-after-loaded’) ) $(this).show();
});
}
}
} catch (e) {
if(window.console) console.warn(e);
lee_serviceError();
}
window.lee_fetched_services = true;
});
Sign Up Today and Support Local Journalism
Enjoy more articles from the Hickory Daily Record, your Most Trusted Information Source. Subscribers can log in for unlimited digital access
PHOTOS COURTESY OF MARY CANROBERT
PHOTOS COURTESY OF MARY CANROBERT
BY MARY CANROBERT
This is a short article about a short play that was a long time coming.
The year was 1989. I was teaching a fifth-grade class at Longview Elementary School. I’d never taught in public school, nor had I been in charge of a group this age. I was merely waiting until a position was available at Grandview Middle School.
Turned out I loved those fifth-graders. They were funny, curious, and willing to do anything, try anything. They also weren’t familiar with nursery rhymes. Well, most of them weren’t. I was surprised.
I don’t recall what caused us to talk about nursery rhymes, but it saddened me to learn that they hadn’t enjoyed a basic means to learning language and developing reading skills. It’s the rhyming that’s so important.
So, being someone who loved to write and teach writing, I suggested that I model writing a play that incorporated several nursery rhymes, and I promised that if the project went well, we’d stage a production for some of the other classes at Longview. The children and I got to work. I wrote; they copied, throwing out suggestions from time to time.
Titled “Up and Down in Nursery Town,” the play, which focused on the calamitous and absurd antics of a bunch of mostly nonhuman characters, was a success.
From time to time during my years as an educator, I pulled “Up and Down in Nursery Town” from its file and let another group of kids pretend to be characters known for climbing, falling or running.
Fast forward to April 2019 and my discovery of the Newton-based Green Room Community Theatre’s Limitless Theatre for Exceptional Actors. Participants are teens and adults who have cognitive and/or physical disabilities. They attend acting classes at the Green Room.
Robby Fulton-Hofelich, an enormously talented musician, actor, writer, and teacher, who has a heart as big as Texas, is the Green Room’s education director. He and a number of adult volunteers make the Limitless Theatre a wonderful experience for both the participants and the folks who have the pleasure of watching the actors in action.
That’s what I thoroughly enjoyed doing on Oct. 23 at the Claremont Branch Library. And guess what the Limitless actors were performing? That’s right — “Up and Down in Nursery Town.”
Here’s what had happened: After listening to Robby and retired exceptional children’s educator and volunteer Debbie Bandy talk in April about the Limitless Theatre and the plays the group had already staged — one of which focused on classic children’s stories, I thought about that old fifth-grade play and how it had helped so many young people with their language and public-speaking skills. I emailed it to Robby who accomplished a little magic with it, elevating the children’s comedy from cute to exceptional.
He even added music, something I hadn’t thought to do. “Different ‘80s songs,” Robby called them. When Jack and Jill performed, for example, the song was Tom Petty’s “Free Fallin’,” and when it was Hey Diddle Diddle’s turn to be acted out, Van Halen’s “Jump” was the tune that introduced the scene.
The Limitless players are making a name for themselves in the community, going on the road to perform season after season. With “Up and Down in Nursery Town,” the road has stopped at three area libraries and has one more to go. Mark your calendar for Nov. 6 and head to the Patrick Beaver Library for the 4:30 p.m. performance. You’ll see volunteers and Limitless actors performing together in a production that’s short but oh so imaginative. You’ll love the costumes, and you might be surprised by a bit of impromptu acting.
Admission to Limitless Theatre’s touring shows is free, but if you’d like to help the group financially or in some other way, don’t be shy. Call the Green Room’s main office, located at the Old Post Office Playhouse in Newton, at 828-464-6583.
Share story ideas with Mary at marycanrobert@charter.net.
Get local news delivered to your inbox!
Share this:
- Click to share on Facebook (Opens in new window)
- Click to share on Reddit (Opens in new window)
- Click to share on Twitter (Opens in new window)
- Click to email a link to a friend (Opens in new window)
- Click to share on Pinterest (Opens in new window)
- Click to share on Tumblr (Opens in new window)
- Click to share on LinkedIn (Opens in new window)
- Click to share on Pocket (Opens in new window)
- Click to print (Opens in new window)