Loading...
Processing Forum
Recent Topics
All Forums
Move this topic
Forum :
Share your Work
Programming Questions
Core Library Questions
Contributed Library Questions
Android Processing
Processing with Other Languages
Integration and Hardware
Library and Tool Development
Events and Opportunities
General Discussion
Sub forum :
Move this topic
Cancel
General Discussion
Other
karlhungus
remove stop from present mode
in
General Discussion
•
Other
•
4 months ago
hi, running sketch in present mode there is stop in the left corner
how to get rid of that?
1
Replies(3)
Chrisir
Re: remove stop from present mode
4 months ago
when exporting as an app un-check the field ("show stop button" or so) in the dialog
Leave a comment on Chrisir's reply
karlhungus
Re: remove stop from present mode
4 months ago
ok, but what if i dont want to export anything?
Leave a comment on karlhungus's reply
Chrisir
Re: remove stop from present mode
4 months ago
hello,
why not use the standard mode (the one you use also for interactive programs, see 2nd link below) with
noLoop();
Your code would be almost the same except for using setup() and draw()
Like this
void setup() {
size(200, 200);
noLoop();
}
void draw() {
line(10, 10, 190, 190);
}
see
http://www.processing.org/reference/noLoop_.html
http://www.processing.org/learning/overview/
Greetings, Chrisir
Leave a comment on Chrisir's reply
Change topic type
Topic Type :
Discussions
Questions
No of days :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Change topic type
Cancel
Link this topic
Provide the permalink of a topic that is related to this topic
Permalink
Save
Close
Reply to karlhungus's question
Top
Reply
{"z4290323":[25080000002191163,25080000002199035],"z6159912":[25080000002191140,25080000002189671]}
Statistics
3
Replies
405
Views
1
Followers
Tags
No tags available for this topic.
Cancel
Actions
Permalink
Related Posts
Creating a start/stop button?
Processing and animations