0

I keep on getting the following error in processing 3.3:

The package "javax.media" does not exist. You must be missing a library.

Please suggest a solution for the same.

Thanks in advance!

MMKaur
  • 11
  • 1
  • 1

1 Answers1

0

The javax.media package is not a standard Java package. You can check by looking for it in the Java API.

So you have to track down the jar file that contains the javax.media package. Google is your friend here, but here are a couple promising results:

Once you've found the jar file, you can simply drag it onto your Processing editor to use it in your Processing code.

Community
  • 1
  • 1
Kevin Workman
  • 41,537
  • 9
  • 68
  • 107
  • I tried that but to no avail. Processing still shows the same error :| – MMKaur Mar 27 '17 at 16:45
  • What exactly do you mean when you said you tried that? If you find the jar that contains the `javax.media` package and add it to your sketch, your error will go away. If you're still seeing an error, then you haven't added the jar correctly. Can you please be more specific about exactly what you're doing? – Kevin Workman Mar 28 '17 at 01:23