- published: 22 May 2014
- views: 25780157
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Erica Kane is a fictional character from the American ABC Daytime soap opera All My Children. The character was portrayed by actress Susan Lucci from her debut on January 16, 1970, until the last broadcast television episode on September 23, 2011. On February 11, 2013, it was announced that Lucci would be guest-starring on the Prospect Park's continuation of All My Children, the appearance would never come to fruition due to the soap's second cancellation. Erica is considered to be the most popular character in soap opera history.TV Guide calls her "unequivocally the most famous soap opera character in the history of daytime TV," and included her in their 2013 list of The 60 Nastiest Villains of All Time.
Agnes Nixon created Erica Kane in the 1960s as a part of the story bible for All My Children, a light-hearted soap opera that focused on social issues and young love. Nixon unsuccessfully attempted to sell the series to NBC, then to CBS, and once again to NBC through Procter & Gamble. With Procter & Gamble unable to make room for the new series in its line up, she put All My Children on hold. Nixon became head writer of Another World where she used the model of the Erica character to create a brand new character named Rachel Davis (originated by Robin Strasser, who later plays Dorian on Nixon's One Life to Live). Nixon said Rachel was Erica's "precursor to the public" but Rachel was a lower-class version. She detailed Rachel's goals as less "stratospheric" in nature since her primary motivation involved marrying Russ Mathews or a man with money while Erica wanted love, independence, and fame. "What Erica and Rachel have in common is they thought if they could get their dream, they'd be satisfied," Nixon said. "But that dream has been elusive."
Aaliyah Dana Haughton (/ɑː.ˈliː.ə/; January 16, 1979 – August 25, 2001) was an American singer, dancer, actress, and model.
She was born in Brooklyn, New York, and raised in Detroit, Michigan. At the age of 10, she appeared on the television show Star Search and performed in concert alongside Gladys Knight. At age 12, Aaliyah signed with Jive Records and her uncle Barry Hankerson's Blackground Records. Hankerson introduced her to R. Kelly, who became her mentor, as well as lead songwriter and producer of her debut album, Age Ain't Nothing but a Number. The album sold three million copies in the United States and was certified double platinum by the Recording Industry Association of America (RIAA). After facing allegations of an illegal marriage with R. Kelly, Aaliyah ended her contract with Jive and signed with Atlantic Records.
Aaliyah worked with record producers Timbaland and Missy Elliott for her second album, One in a Million; it sold 3 million copies in the United States and over eight million copies worldwide. In 2000, Aaliyah appeared in her first film, Romeo Must Die. She contributed to the film's soundtrack, which spawned the single "Try Again". The song topped the Billboard Hot 100 solely on airplay, making Aaliyah the first artist in Billboard history to achieve this goal. "Try Again" earned Aaliyah a Grammy Award nomination for Best Female R&B Vocalist. After completing Romeo Must Die, Aaliyah filmed her role in Queen of the Damned. She released her third and final album, Aaliyah, in July 2001.
Little Red is the second studio album by British singer Katy B. It was released on 7 February 2014 by Rinse, Columbia Records and Sony Music. The album includes the singles "5 AM" and "Crying for No Reason". The album peaked at number one on the UK Albums Chart, making it her first number-one album in the United Kingdom.
"5 AM" was released as the lead single on 4 November 2013. It reached number 14 on the UK Singles Chart. "Crying for No Reason" was released as the album's second single on 26 January 2014. It debuted at number five on the UK Singles Chart. "Still" was released as the album's third single on 2 May 2014.
"What Love Is Made Of" was released on 5 July 2013 and reached number 21 on the UK Singles Chart; however, the song did not make the album's final cut. "Aaliyah", originally released as part of the Danger EP, received extensive airplay on the likes of BBC Radio 1 and became part of the album.
On 12 November 2013 it was announced that Katy B will be doing a five-date UK tour. A date for London's Roundhouse in October 2014 was added on 17 January 2014. On 5 March 2014, full tour dates for October were added.
Aaliyah is the third and final studio album by American R&B recording artist Aaliyah, released on July 7, 2001, by Blackground Records and Virgin Records. After raising her profile with hit soundtrack singles during the late 1990s, Aaliyah started to work on the album in 1998, but rescheduled its recording around her developing film career. She resumed recording the record in 2000 at Sing Sing Studios in Australia, where she shot her role for the 2002 film Queen of the Damned during the day and recorded songs at night. Aaliyah worked primarily with Blackground's in-house crew of writers and producers, including Bud'da, J. Dub, Rapture, and Eric Seats, as well as longtime collaborator Timbaland.
Aaliyah was an R&B and neo soul record whose music drew on funk, hip hop, alternative rock, and electronica sounds, among others. The producers incorporated synthesizer melodies, fragmented beats, distorted guitar, and eccentrically manipulated vocals and song structures. Much of Aaliyah dealt with the complexities of romantic love and different stages in a relationship. Most of the songs were written by lyricist Static Major, who shared a close friendship and strong rapport with Aaliyah. She viewed the album as a reflection of herself as both a young adult and a matured vocalist.
Music video by Speaker Knockerz performing Erica Kane. © 2014 Talibandz Entertainment #SpeakerKnockerz #EricaKane #Vevo #HipHop #VevoOfficial #OfficialMusicVideo
Music video for Erica Kane (Audio) (Explicit) (#MTTM2) performed by Speaker Knockerz. Site: http://www.speakerknockerzonline.com Twitter: http://twitter.com/speakerknockerz Facebook: https://www.facebook.com/pages/Talibandz-Entertainment/197012020309166 Instagram: http://instagram.com/speakerknockerz Copyright (C) 2014 Talibandz Entertainment. -- Powered by http://www.vydia.com #SpeakerKnockerz #EricaKane #Vevo #HipHop #VevoOfficial #ExplicitAudio
Thanks for watching my first video!!!! We gone work on the editing i swear 😂😂😂 Appreciate y’all!! Hopefully this journey is a fun, crazy, but real one‼️‼️ Y’all gone get the real raw me at all timessss some days better than others but we persevere!!!!! ON THE ROAD TO 20K!!! Comment below what else yall want from meeeeee TikTok @ bigekane & eerbodyhateschris1 Intro song: BC SMITH YEAH ‼️
This is a series of unforgettable scenes from the 40 years of Erica Kane; mostly my favourites. 1) I want to be special and I'm going to be 2) Hollywood & Vine 3) Hollywood & Vine with Opal 4) Bianca is born 5) Mona's funeral 6) Erica & Brooke 7) Woman of the Year breakdown 8) Bianca comes out 9) Erica reacting to Bianca's news 10/11) Erica flushes Annie's head 12/13) Erica and imposter Jane 14) NYE breakdown in front of Kendall 15) Walking along the Hollywood Walk of Fame & Susan's star 16) This is not the ending I want
#vlog #100K #shopping #ekane 100K OMGGGGGG LOVE YALL more vlogs and pranks coming. !!!!
Iconic soap opera star Susan Lucci talks about playing the equally iconic Erica Kane in 'All My Children' and how she feels fans connected to the legendary character. Watch 'The Story of Soaps' streaming now on ABC and Hulu.
LEGENDARY ERICA KANE LANVIN @ 21ST NY AWARDS BALL 2015
Erica Reid appeared in this winter's issue of Rattle. Her manuscript, Ghost Man on Second, won the 2023 Donald Justice Poetry Prize and was just published by Autumn House Press in spring of 2024. She lives in Fort Collins, Colorado, and earned her MFA at Western Colorado University. Find more information on Erica, visit: https://ericareidpoet.com/ As always, we'll also include the live Prompt Lines for responses to our weekly prompt. A Zoom link will be provided in the chat window during the show before that segment begins. For links to all the past episodes, visit: https://www.rattle.com/rattlecast/ This Week’s Prompt: Write a “What to Do if …” poem about what to do in an unusual situation. Next Week’s Prompt: Write a “golden" sestina or tritina: start with an epigraph from anot...
Pre-Order "Reverence" Out March 7: https://iayze.lnk.to/ReverenceAlbum Stream "Monarch 2: Rock": http://iayze.lnk.to/Monarch2Rock IG: https://instagram.com/iayze Soundcloud: https://soundcloud.com/iayzeofficial Apple Music: https://music.apple.com/us/artist/iayze/1490328498 Spotify: https://open.spotify.com/artist/00msLVGU9crX0EC5McCiCa Genius: https://genius.com/artists/iayze Website: https://topkid.xyz #iayze #monarch2 #rock
Aaliyah -Try Again Listen & Download 'Romeo Must Die (Original Motion Picture Soundtrack)' out now - https://blackground.ffm.to/romeomustdie.oyd Remastered in 4K coming soon! Lyrics - [Intro: Timbaland] It's been a long time (Long time) We shouldn't have left you (Left you) Without a dope beat to step to Step to, step to, step to (Step) Step to, step to, freaky-freaky It's been a long time (Time) We shouldn't have left you (Left you) Without a dope beat to step to Step to, step to, step to (Step) Step to, freaky-freaky-freaky Baby girl, uh [Verse 1: Aaliyah] What would you do to get to me? What would you say to have your way? Would you give up or try again? If I hesitate to let you in Now would you be yourself or play a role? Tell all the boys or keep it low? If I say no, would you ...
Aaliyah being interviewed by Beyonce at the 2000 MTV Movie Awards. No Negativity Please.
Aaliyah - Are You That Somebody Listen & Download 'Are You That Somebody' out now - https://aaliyah.ffm.to/areyouthatsomebody.oyd Remastered in 4K coming soon! Lyrics - [Intro: Timbaland] Dirty South, can y'all really feel me? East Coast, feel me, West Coast, feel me Dirty South, can y'all really feel me? East Coast, feel me, West Coast, feel me Dirty South, can y'all really feel me? East Coast, feel me, West Coast, feel me Dirty South, can y'all really feel me? East Coast, feel me, West Coast, feel me [Verse 1: Aaliyah] Boy, I've been watching you like the hawk in the sky That flies, but you were my prey (My prey) Boy, I promise you if we keep bumpin' heads I know that one of these days (Days) We gon' hook it up, prolly talk on the phone But see, I don't know if that's good I've been...
✩ hi! ✩ talk about long time, no see? a life update was very much needed. in this video i discuss a range of topics a lot of you guys have consistently been inquiring about. if you didn’t have the opportunity to ask your question in time for this video, feel free to check out my social medias down below. this is so that you never miss a post and are consistently in the loop. ✩ pt 1: https://youtu.be/uQnV6MPFQ9Y?si=EW3gU8Q0e5c1oMLZ ✩ patreon: https://www.patreon.com/c/aaliyahnicolee ✩ keep up with me insta: https://www.instagram.com/aaliyahnhenderson?igsh=bXBqbWU1ZTNtMGNh&utm_source=qr finsta: https://www.instagram.com/12._____.02?igsh=ZXJ4ZWV4Z2VwY3hh&utm_source=qr snapchat: https://snapchat.com/t/Cyun7f9u tiktok: https://www.tiktok.com/@liyahnicolearchives?_t=ZT-8t2pIdE2mAI&_r=1 ...
"Age Ain't Nothing But A Number" by Aaliyah Listen to Aaliyah: https://Aaliyah.lnk.to/listenYD Watch more Aaliyah videos: https://Aaliyah.lnk.to/listenYD/youtube Subscribe to the official Aaliyah YouTube channel: https://Aaliyah.lnk.to/subscribeYD Follow Aaliyah: Twitter: https://Aaliyah.lnk.to/followTI/twitter Instagram: https://Aaliyah.lnk.to/followII/instagram Website: https://Aaliyah.lnk.to/followWI/websitegeneral Spotify: https://Aaliyah.lnk.to/followSI/spotify YouTube: https://Aaliyah.lnk.to/subscribeYD Lyrics: Age ain't nothin' but a number Throwin' down ain't nothin' but a thang This lovin' I have for you, it'll never change Age ain't nothin' but a number Throwin' down ain't nothin' but a thang This lovin' I have for you, it'll never change #Aaliyah #AgeAin...
Aaliyah - Rock The Boat (Official Video) Listen & Download 'Aaliyah' album out 9/10 - https://aaliyah.ffm.to/aaliyah Remastered in 4K Coming Soon! Pre-Save the Aaliyah Compilations now! - https://ffm.bio/aaliyah Lyrics - [Intro] Mmm, yeah, hmm Huh-uh, hmm Mmm, yeah [Verse 1] Boy, you know you make me float Boy, you really get me high Ooh, I feel like I'm on dope 'Cause you, you serve me on a regular (You serve me on a regular) Boy, you need to tie this rope Oh, before we drift any deeper (Before we drift any deeper) Baby, now hold me close Let's take this overboard now [Chorus] I want you to rock the boat, rock the boat (Mmm) Rock the boat, rock the boat (Yeah) Work it in the middle, work the middle Work the middle, work the middle Change positions on me New position (Oh), new positi...
Aaliyah - One In A Million Listen & Download 'One In A Million' album out now - https://aaliyah.ffm.to/oneinamillion Remastered in 4K coming soon! Lyrics - [Intro: Missy Elliott] Love it babe, love it babe, love it babe Love it babe, love it babe, love it babe Love it babe, love it babe, love it babe Love it babe, love it babe, love it babe [Verse 1: Aaliyah] Baby, you don't know what you do to me Between me and you I feel a chemistry I won't let no one come and take your place 'Cause the love you give, it can't be replaced See, no one else love me like you do That's why I don't mind to spend my life with you I wanna please you in anyway I can I wanna share my world, don't you understand? [Hook: Aaliyah] Your love is a one in a million It goes on and on and on You give me a really ...
Exposing Aaliyah's Death | FEUD With Beyonce | Family Hiding Evidence? By now we have already probably established that Aaliyah’s death was never an accident, but there have always been a bunch of questions surrounding her mysterious death. Like who really was behind Baby Girl’s death? Was it her family? Was it the men who used her like R Kelly and Jay Z? Was there really a feud with the likes of Beyonce, Brandy, and Missy Elliot? And why was Aaliyah really fighting with everyone in the weeks leading up to her death? #hollywood #jayz #beyonce #aaliyah #rkelly #jaguarwright #timbaland
Aaliyah with Timbaland - Are You That Somebody - Official Music Video HD in 720p Quality. :)
Erica Kane is a fictional character from the American ABC Daytime soap opera All My Children. The character was portrayed by actress Susan Lucci from her debut on January 16, 1970, until the last broadcast television episode on September 23, 2011. On February 11, 2013, it was announced that Lucci would be guest-starring on the Prospect Park's continuation of All My Children, the appearance would never come to fruition due to the soap's second cancellation. Erica is considered to be the most popular character in soap opera history.TV Guide calls her "unequivocally the most famous soap opera character in the history of daytime TV," and included her in their 2013 list of The 60 Nastiest Villains of All Time.
Agnes Nixon created Erica Kane in the 1960s as a part of the story bible for All My Children, a light-hearted soap opera that focused on social issues and young love. Nixon unsuccessfully attempted to sell the series to NBC, then to CBS, and once again to NBC through Procter & Gamble. With Procter & Gamble unable to make room for the new series in its line up, she put All My Children on hold. Nixon became head writer of Another World where she used the model of the Erica character to create a brand new character named Rachel Davis (originated by Robin Strasser, who later plays Dorian on Nixon's One Life to Live). Nixon said Rachel was Erica's "precursor to the public" but Rachel was a lower-class version. She detailed Rachel's goals as less "stratospheric" in nature since her primary motivation involved marrying Russ Mathews or a man with money while Erica wanted love, independence, and fame. "What Erica and Rachel have in common is they thought if they could get their dream, they'd be satisfied," Nixon said. "But that dream has been elusive."
Erica Kane, Erica Kane
She's back on the street [Incomprehensible] for the night
Fill you with grief, she cuts like a knife
Make you do things that no others could do
She turns a professor into a fool
Oh, she ain't hard to get, the girl gets around
And those that she met are destined to drown
She'll make ya change like you never believe
She'd turn a working man into a thief, oh
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica Kane
She's Erica, Erica, Erica, Erica
Yo, yo, she's Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica Kane
Oh, back on the block she's at it again
She'll be your friend as long as you spend
I know she's torn, whole family's apart
She'll shoot a poison arrow straight through your heart
Oh, this is the day for Erica Kane
There's nothing to lose, none for her to gain
She'll make a honest man steal from his folks
And drain a millionaire man until he go broke
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica Kane
She's Erica, Erica, Erica, Erica
Yo, yo, she's Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica Kane
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica Kane
She's Erica, Erica, Erica, Erica
Yo, yo, she's Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica Kane
I really don't think you should mess around
'Cause all she'll do is bring you down
And there's nothing for you to gain
And she goes by this name
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica Kane
She's Erica, Erica, Erica, Erica
Yo, yo, she's Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica Kane
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica Kane
She's Erica, Erica, Erica, Erica
Yo, yo, she's Erica, Erica, Erica
She's Erica, Erica, Erica, Erica
She's Erica, Erica, Erica, Erica Kane
Erica Kane, Erica Kane