Log.d(LOG_TAG, "createAndShowGUI");
flingFrame = new FlingFrame(appId);
// change the default app icon; might not work for all platforms
URL url = ClassLoader.getSystemResource("com/entertailion/java/fling/resources/logo.png");
Toolkit kit = Toolkit.getDefaultToolkit();
Image img = kit.createImage(url);
flingFrame.setIconImage(img);
flingFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
// flingFrame.setSize(420, 250);
flingFrame.setSize(420, 275); // with scrubber
flingFrame.setLocationRelativeTo(null);