91³Ô¹ÏÍø

Watch CBS News

Sally Kirkland, Oscar-nominated actor known for roles in "Anna" and "The Sting," dies at age 84

Sally Kirkland, a onetime model who turned to acting and was best known for sharing the screen with Paul Newman and Robert Redford in "The Sting" and her Oscar-nominated title role in the 1987 movie "Anna," has died, her representative confirmed to the Associated Press. She was 84.

Her representative, Michael Greene, told the AP that Kirkland died Tuesday morning at a Palm Springs hospice.

Friends established a  account this fall for her medical care. They said she had fractured four bones in her neck, right wrist and left hip. While recovering, she also developed infections, requiring hospitalization and rehab.

Kirkland acted in such films as "The Way We Were" with Barbra Streisand, "Revenge" with Kevin Costner, "Cold Feet" with Keith Carradine and Tom Waits, Ron Howard's "EDtv," Oliver Stone's "JFK," "Heatwave" with Cicely Tyson, "High Stakes" with Kathy Bates, "Bruce Almighty" with Jim Carrey and the 1991 TV movie "The Haunted," about a family dealing with paranormal activity. She had a cameo in Mel Brooks' "Blazing Saddles."

Sally Kirkland attends the closing night gala of the Arpa International Film Festival, Nov. 10, 2019, in Los Angeles, California.
Sally Kirkland attends the closing night gala of the Arpa International Film Festival, Nov. 10, 2019, in Los Angeles, California. John Wolfsohn/Getty Images

Her biggest role was in 1987's "Anna" as a fading Czech movie star remaking her life in the United States and mentoring a younger actor, Paulina Porizkova. Kirkland won a Golden Globe and earned an Oscar 91³Ô¹ÏÍø along with Cher in "Moonstruck," Glenn Close in "Fatal Attraction," Holly Hunter in "Broadcast News" and Meryl Streep in "Ironweed." (The Oscar went to Cher.)

"Kirkland is one of those performers whose talent has been an open secret to her fellow actors but something of a mystery to the general public," a Los Angeles Times critic wrote in  for "Anna." "There should be no confusion about her identity after this blazing comet of a performance."

Kirkland's small-screen acting credits include stints on "Criminal Minds," "Roseanne," "Head Case" and she was a series regular on the TV shows "Valley of the Dolls" and "Charlie's Angels."

Born in New York City, Kirkland's mother was a fashion editor at Vogue and Life magazine who encouraged her daughter to start modeling at age 5. Kirkland graduated from the American Academy of Dramatic Arts and studied with Philip Burton, Richard Burton's mentor, and Lee Strasberg, the master of the Method school of acting. An early breakout was appearing in Andy Warhol's "13 Most Beautiful Women" in 1964. She appeared naked as a kidnapped rape victim in Terrence McNally's off-Broadway "Sweet Eros."

Some of her early roles were Shakespeare, including the lovesick Helena in "A Midsummer Night's Dream" for New York Shakespeare Festival producer Joseph Papp and Miranda in an off-Broadway production of "The Tempest."

"I don't think any actor can really call him or herself an actor unless he or she puts in time with Shakespeare," she told . "It shows up, it always shows up in the work, at some point, whether it's just not being able to have breath control, or not being able to appreciate language as poetry and music, or not having the power that Shakespeare automatically instills you with when you take on one of his characters."

Kirkland was a member of several New Age groups, taught Insight Transformational Seminars and was a longtime member of the affiliated Church of the Movement of Spiritual Inner Awareness, whose followers believe in soul transcendence.

She reached a career nadir while riding nude on a pig in the 1969 film "Futz," which  dubbed the worst film he had ever seen. "It was about a man who fell in love with a pig, and even by the dismal standards of the era, it was dismal," he wrote.

Kirkland was also known for disrobing for so many other roles and social causes that Time magazine dubbed her 

Kirkland volunteered for people who had AIDS, cancer and heart disease, fed homeless people via the American Red Cross, participated in telethons for hospices and was an advocate for inmates, especially young people.

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=50747257b890e014813016b79ece0fb2'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });