G4P lib with video file
in
Programming Questions
•
2 years ago
Hi,
Basically I wish to create cascading windows, displaying a small video file, so
that the popup windows would fill the viewers desktop.
Is this possible using the following createWindows method?
Any help would be most welcome!
Thankx
Basically I wish to create cascading windows, displaying a small video file, so
that the popup windows would fill the viewers desktop.
Is this possible using the following createWindows method?
Any help would be most welcome!
Thankx
- import guicomponents.*;
- private GWindow[] window;
- void setup(){
- size(300,225);.mov
- createWindows();
- }
- void draw(){
- }
- public void createWindows(){
- int col;
- window = new GWindow[3];
- for(int i = 0; i < 3; i++){
- window[i] = new GWindow(this, "Window "+i, 130+i*210, 100+i*100,300,225,false, JAVA2D);
- }
- }
1