Unable to record sound, need help.

Michael92

Legendary
Joined
Dec 3, 2009
Messages
12,968
Kin
13,725💸
Kumi
78,629💴
Trait Points
0⚔️
I'm trying to record a sound file for my English project on my school's homepage. Every time I try to press record, I get this message:


'
You must be registered for see images


(Zoom in to see the text box)​

I've looked around on the net to find a solution to this problem and to allow access/premission so that I might record sound, but none of what I've found makes sense to me, too advanced in computer language.
Here's one of the pages I found;



Something about accessing policytool program and signing the applet's jar...

But I'm still confused. Any experts out there? Any help would be appriciated.

Edit: Also found this;

 
Last edited:

gamahiro

Active member
Supreme
Joined
Jul 8, 2010
Messages
32,579
Kin
0💸
Kumi
0💴
Trait Points
0⚔️
Awards
It's an unsigned applet. Whoever wrote it didn't sign it. Find a file called "java.policy" on your hard drive. Use whatever search function your operating system has. Add this to the file:

Code:
grant  {
permission javax.sound.sampled.AudioPermission "record";
};
Restart your browser. If you don't know where to put the above code in the java.policy file, or if that file doesn't exist, let me know. Good luck
 
  • Like
Reactions: Michael92

Michael92

Legendary
Joined
Dec 3, 2009
Messages
12,968
Kin
13,725💸
Kumi
78,629💴
Trait Points
0⚔️
It's an unsigned applet. Whoever wrote it didn't sign it. Find a file called "java.policy" on your hard drive. Use whatever search function your operating system has. Add this to the file:

Code:
grant  {
permission javax.sound.sampled.AudioPermission "record";
};
Restart your browser. If you don't know where to put the above code in the java.policy file, or if that file doesn't exist, let me know. Good luck
I'll contact you through vm instead...
 
Top