Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 972281
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T03:05:59+00:00 2026-05-16T03:05:59+00:00

I’ve a simple flash application that does counting on button click. I load it

  • 0

I’ve a simple flash application that does counting on button click. I load it in a page and a javaScript code does some DOM manipulation to move it from one div tag to another.

Problem: the state of the count is not preserved as the swf node is moved from one node to another.

What I did:

  1. I simply get the node using javascript getElementbyId function and then once I get the source and destination div nodes then I use

    destinationNode.appendChild(sourceNode); //javascript
    

This works well in Internet explorer, but it doesn’t work in Chrome and Firefox.

  1. So then I tried prototype library.

    node1 = $("destinationDIV");
    node2 = $("sourceDIV");   //keeps the swf element
    //------------------------------------------Works | only IE
    //node1.replace(node2);   //this works, only in IE
    node1.insert({'after':node2}); //this also works, also only in IE
    

sadly this works only in IE, not in Chrome, and Firefox.
3. I tried to clone the source node first and put cloned object to the destination div. Like:

var obj = Object.clone(node2); // prototype library
node1.insert({'after':obj});

but I got an error. That says
Exception… “Node cannot be inserted at the specified point in the hierarchy” code: “3”…

my concern is not this error. I’m concerned with the fact that solution 1 and 2 are working in Internet Explorer not in Firefox and chrome.

Any body who knows any way to make flash remember it’s state when it’s moved from one div to another in firefox,chrome, and IE??

thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T03:05:59+00:00Added an answer on May 16, 2026 at 3:05 am

    As you already noted it looks like the swf gets reloaded every time you displace it. So you will have to manually keep track of the current state and in case there is a reload pick up from there. The way to do that is to use a LocalSharedObject aka “Flash Cookie”:

    http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/net/SharedObject.html

    var my_so:SharedObject = SharedObject.getLocal("widgetState");
    my_so.data.buttonClicks= currentClicks;
    my_so.flush();
    

    Whenever the app gets started you first check if there is already a LocalSharedObject with your data present and if yes you load your data from it:

    var my_so:SharedObject = SharedObject.getLocal("widgetState");
    if ( my_so.data.buttonClicks != null ) currentClicks = my_so.data.buttonClicks;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 511k
  • Answers 511k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer By default, Spring beans are basically singletons. Spring will create… May 16, 2026 at 5:17 pm
  • Editorial Team
    Editorial Team added an answer I never used it, but if your have enough memory,… May 16, 2026 at 5:16 pm
  • Editorial Team
    Editorial Team added an answer I recently built an iPhone app with 86,000 rows and… May 16, 2026 at 5:16 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have just tried to save a simple *.rtf file with some websites and
Seemingly simple, but I cannot find anything relevant on the web. What is the
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I used javascript for loading a picture on my website depending on which small
link Im having trouble converting the html entites into html characters, (&# 8217;) i
Does anyone know how can I replace this 2 symbol below from the string
i got an object with contents of html markup in it, for example: string
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I have a jquery bug and I've been looking for hours now, I can't
this is what i have right now Drawing an RSS feed into the php,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.