Publish Settings
Publish Settings

-
Export images: export all layers as independent image files (depending of the selected device, it may export more than one size of each file). This option is as same as the export image icon on Kwik Panel:
-
Select just one layer with Export Images ON and it will export all page images;
-
Select more than one layer with Export Images ON and it will export only the selected layers images;
-
Select just one layer with Export Images OFF, press SHIFT key and click Publish: it will export only the selected layer image;
-
Export images and Publish only current page are also controlled from Publish Settings. You see them at the top of Publish Tab.

When publsih only current page, start Simulator in the current page is checked, kwik makes a change in main.lua This would conflict Publish only pages
You can manually change which page to open with Corona Simulator. Just edit the _K.page = 1 in main.lua
build4/main.lua
local function startThisMug()
local _K = require "Application"
local function bootstrap()
display.setStatusBar(display.HiddenStatusBar)
_K.appName = ""
_K.imgDir = "assets/images/"
_K.spriteDir = "assets/sprites/"
_K.thumbDir = "assets/thumbnails/"
_K.audioDir = "assets/audios/"
_K.videoDir = "assets/videos/"
_K.particleDir = "assets/particles/"
_K.trans = {}
_K.gt = {}
_K.timerStash = {}
_K.allAudios = {kAutoPlay = 5}
_K.gtween = require("extlib.gtween")
_K.btween = require("extlib.btween")
_K.Gesture = require("extlib.dmc_gesture")
_K.MultiTouch = require("extlib.dmc_multitouch")
_K.syncSound = require("extlib.syncSound")
_K.kBidi = false
_K.goPage = 1
...
}
end
--
bootstrap()
end