hastebinLink.setX(95).setY(top);
hastebinLink.setTextColor(grey);
screen.attachWidget("Spoutcraft", hastebinLink);
generateHastie();
Button button = new CopyErrorURL(this).setText("Copy Link");
button.setHeight(20).setWidth(80);
button.setX((int) (hastebinLink.getWidth() + hastebinLink.getX() + 10.0));
button.setY(top-5);
button.setAlign(WidgetAnchor.TOP_CENTER);
screen.attachWidget("Spoutcraft", button);
top += 25;
button = new ReportErrorButton().setText("Report");
button.setHeight(20).setWidth(70);
button.setX((int) (width / 2 - button.getWidth() - button.getWidth() / 2));
button.setY(top);
button.setAlign(WidgetAnchor.TOP_CENTER);
screen.attachWidget("Spoutcraft", button);
button = new IgnoreErrorButton().setText("Ignore");
button.setHeight(20).setWidth(70);
button.setX((int) (width / 2 + button.getWidth() / 2));
button.setY(top);
button.setAlign(WidgetAnchor.TOP_CENTER);
screen.attachWidget("Spoutcraft", button);
top += 30;
}