Finally, I can play this message, which I get from time to time.
This is in V8.04, on windows 7.
During the attempts, I discovered how to get Mathematica to generate the above message when I open the laptop with Manipulate in it.
The error message screen appears first:

Now I click on “turn on the speaker” and everything looks good. But every time I open the laptop again, I get a message again. (You must close M and start again, and then open the laptop to see the message).
Therefore, I do not understand this warning message and why it appears, and what I need to change in the code in order to delete it.
Code to create it:
Manipulate[ DynamicModule[{p}, p["x"] = 0; Row[{Dynamic[ Refresh[p["x"]++; Row[{"p[x]=", p["x"]}], TrackedSymbols -> {n}]]}] ], Button["update counter", n++], {{n,0}, None} ]
The above version is on your own notebook, in which there is nothing in the notebook.
Close M, then run it, then open Notepad and I will see the above message.
Now, at first I thought that to delete the message I need to change p ["x"] to p [x] so that I close the aforementioned laptop and make a new notebook with this code:
Manipulate[ DynamicModule[{p}, p = 0; Row[{Dynamic[Refresh[p++; Row[{"p=", p}], TrackedSymbols -> {n}]]}] ], Button["update counter", n++], {{n, 0}, None} ]
Then I closed M and started it again and opened the above notepad, and now I did not see a warning message. But when I repeated this process, I saw the same error.
(I sent this question to the Math group, but it’s slow, and my post didn’t even appear there, but in this post I said that the error disappeared when I changed p ["x"] to p [x] because it actually happened at first, but when I later tried, the message returned that I do not understand why)
p ["x"] is an indexed object, as described on this page:
http://reference.wolfram.com/mathematica/tutorial/MakingDefinitionsForIndexedObjects.html
Question: what in the above code causes this warning to appear? Am I writing something wrong in the above example?
The code works fine after turning on the speakers. By the way, I open this laptop from the same folder in which I open all my other laptops, nothing has changed, and this is on the home PC, there is no shared folder and nothing unusual.
Here is a link to laptop security
http://reference.wolfram.com/mathematica/tutorial/NotebookSecurity.html
I do not see anything in this that is related to what I am doing. All I can say is the use of DynamicModule [] inside Manipulate, which itself is a dynamic module. But I do not understand this well enough to understand why this is a problem.
Update 1
I do not see how this relates to the path. I can remove the error simply by commenting on the internal dynamic, like this:
Manipulate[ (* DynamicModule[{p}, p["x"]=0; Row[{Dynamic[Refresh[p["x"]++;Row[{"p[x]=",p["x"]}],TrackedSymbols-> \ {n}]]}] ], *) n, Button["update counter", n++], {{n, 0}, None} ]
Save the laptop, close M, start M, open notepad. The error has disappeared.
So this is in code.
Update 2
Trying to reproduce what Yoda said in his answer, I cannot.
- make a new laptop, enter
Dynamic@DateString [] - ENTER to rate.
- SAVE
- close M
- open M
- open laptop
- no mistakes

Update dec 21, 2001
At the Math Group, John Fulz was kind enough to reply to my post; I don't think he will mind if I post his answer here so you can see others.
> > So, why is using p["x"] causing the security warning message? That is a bug, which has already been fixed in development sources. John Fultz User Interface Group Wolfram Research, Inc.
Sorry, I do not have a link to include in his answer, I could not find a link to google now. I use thunderbird to read newsgroups.
Should this question remain open? Or should it be closed? If I need to close it, I can accept one of the answers so that it is closed.