Hi to all,
I'm going to use Juce for developing some VST plugins.
In paricular I need to know if with this good library is possible to play an AVI video?
best regards
cialz
jules wrote:yes, but quicktime will happily play AVIs..
Compiling...
JuceVstMain.cpp
JUCE! Linking to: jucelib_static_debug.lib
c:\programmi\microsoft platform sdk\include\winnt.h(8854) : error C2955: 'tempArray' : use of class template requires template argument list
c:\juce\src\juce_core\containers\juce_array.h(966) : see declaration of 'tempArray'
c:\programmi\microsoft platform sdk\include\winnt.h(8863) : error C2955: 'tempArray' : use of class template requires template argument list
c:\juce\src\juce_core\containers\juce_array.h(966) : see declaration of 'tempArray'
openDirDialogButton->addActionListener ((ActionListener*)this); //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
void MultiVolver::actionListenerCallback (const String& m)
{
if (m == "gain") setParameterAutomated(gain,(float)editorComp->slider->getValue());
else if (m == openDirButtonName)
{
AlertWindow *aw = new AlertWindow(T("Titolo"),T("choose IR"),AlertWindow::InfoIcon);
}
}
jules wrote:If you have to cast "this" to an actionlistener, then it clearly isn't one!
And I put lots of examples of how to use AlertWindows in the demo - have a look at that, or have a better look at the AlertWindow help docs.
jules wrote:If you have to cast "this" to an actionlistener, then it clearly isn't one!
And I put lots of examples of how to use AlertWindows in the demo - have a look at that, or have a better look at the AlertWindow help docs.
//==============================================================================
openIRButton = new TextButton (openIRButtonName,
Colours::black,
Colours::lightgrey,
Colours::darkgrey,
"click here to choose the Impulse Responses...");
addAndMakeVisible (openIRButton);
openIRButton->setBounds (10, 50, 100, 24);
openIRButton->addActionListener (this);
openIRButton->setTriggeredOnMouseDown (true); // because this button pops up a menu, this lets us
Return to General JUCE discussion
Users browsing this forum: Google [Bot] and 1 guest