Indefined class

i’m trying to make my first little plugin in juce
it’s a simple simpler nut i have a weid error
juce::FileChooser n’a pas de membre browseForFileToOpen
any one here can solve this ??
and thx uuu <3

This isn’t explicitly stated in the main documentation yet unfortunately, but modal loops are no longer permitted by default, of which browseForFileToOpen was one such method relying on a modal loop.

Since you’re starting out don’t get into bad habits by enabling them again, instead use launchAsync JUCE: FileChooser Class Reference

There is an example however of how to use launchAsync at the top of the FileChooser docs.