I thought I saw this somewhere, but I can't find it for the life of me.
Is there a way to just do something in development mode, for instance open a results window, which when you build the standalone version it doesn't open? I thought I saw something like
if development then
...
end if
but I can't find it anywhere.
Development mode
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
-
dave.kilroy
- VIP Livecode Opensource Backer

- Posts: 858
- Joined: Wed Jun 24, 2009 1:17 pm
- Contact:
Re: Development mode
Try this:
Code: Select all
if the environment = "development" then
--do stuff
else
--do other stuff
end if"...this is not the code you are looking for..."
-
matthellstrom
- Posts: 31
- Joined: Mon Apr 27, 2015 3:09 pm
Re: Development mode
OK, that seems to work great. Thanks!