| Name | link() |
||||
|---|---|---|---|---|---|
| Examples | void draw() {
rect(20, 20, 60, 60);
}
void mousePressed() {
link("http://processingjs.org");
}void draw() {
rect(20, 20, 60, 60);
}
void mousePressed() {
link("http://processingjs.org", "_new");
} |
||||
| Description | Links to a webpage either in the same window or in a new window. The complete URL must be specified. | ||||
| Syntax | link(url) link(url, target) |
||||
| Parameters |
|
||||
| Usage | Web & Application |