ADVERTISEMENT

More relaxed Regine in 'Movies' concert series

Published Nov 19, 2018 05:20 am
 Regine Velasquez Regine Velasquez The hullaballoo over Regine Velasquez’s transfer to ABS-CBN has done wonders for her confidence. Although she’s likely aware of her iconic stature in the industry, hearing the fans defend her openly and so staunchly in recent weeks is strong reminder the songbird remains loved and can afford to relax a bit on her laurels. That’s exactly her vibe in “Regine at the Movies,” a concert series that opened at New Frontier Theater over the weekend with two more dates at the venue on Nov. 24 and 25. She is still able to hit the high notes, no doubt about it, yet she now paces herself in that she sometimes would opt to not sustain it as long as she used to. Those complex melismatic runs that have singer of lesser ability head for the hills? Tempered. Clearly, Regine was there to enjoy herself, and, funny enough, that made the show even more enjoyable to the audience. It’s like loving yourself first before you can share that love with other people. Taking her cue, musical director Raul Mitra stuck mostly to the familiar musical arrangements of the songs as heard on the soundtrack of the chosen movies (“Breakfast at Tiffany’s,” “Anastasia,” “A Walk to Remember,” etc.). The few exceptions included the piano-driven version of “It Must Have Been Loved” versus the original by Roxette that was heavy on drums and guitars; and “You Are My Song” and “Tagpuan” that used a full band against the more known quiet versions. Regine is more open about her religious beliefs. A renewed Christian for sometime now, she often thanked God throughout the show. After doing “Only A Hope,” a love song, she said “All glory to you Father,” giving the impression that to her, the lyrics can be read as a prayer. ‘Regine At The Movies’ ‘Regine At The Movies’ Even if you’re a solid Regine fan, you learn a lot about her in his series. Her spiels talk about the first movies she saw, her favourite songs from the movies and why, and her thoughts on how powerfully music resonates the message of movies especially in key scenes wherein a song take over. There are also numbers Regine sang simply. Hearing her do those from “James Bond” proves that even if you take away the flashy singing style many R&B singers are known for and one that Regine does so well, there’s that voice so impressive despite being unadulterated. The showstoppers in the first instalment of the series that saw Piolo Pascual as guest performer were: “I’ll Never Love Again” from “A Star Is Born,” “Never Too Far” from “Glitter” and “I Don’t Wanna Miss A Thing” from “Armageddon.” People held breath in to see if the diva still has it as far as reaching the high notes goes. Thankfully, it’s still there. Was that a spoiler? Not at all. At the press conference for the series held a couple of weeks back, Regine said that not one show on the series is the same. She means that you can watch all three shows and not hear the exact same repertoire every night. So, see you at the “Movies?”
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.