Yes, you can create comic book like mobile app using the Kwik Photoshop plugin. Here’s how.
This feature is not available anymore in Kwik 2 because Corona Comics SDK was never updated and probably does not even run comic projects in the newest version of Corona SDK.
Also, just few users have used it due the limitations that the original Corona Comics SDK offered. People simple moved on to the main features Kwik offer (not available in Comics) like audio, animations, interactions, etc.
With a little bit of efforts, you can simulate zoom in/out with Kwik 2:
- create a “comic frame” layer (for example, layer ABC
- set it as a button, Tap: 2
- Add the following script in the External Code option:
if ABC.xScale == 1 then
ABC.xScale = 2; ABC.yScale = 2 –it will zoom the frame 2 times
else
ABC.xScale = 1; ABC.yScale = 1 –it will zoom the frame back to its original size
end
Of course, this is just a simulation that will not black the background like the original sdk did but you can play from there.
At this moment, there are NO plans to add the camera feature in Kwik 2.

Hi,
I just want to ask how to add that Corona SDK in Kwik plug-in in Photoshop. ‘Cause my latest one doesn’t have that look and functionality in Photoshop.
Hoping for your immediate feedback. Thanks.
Best regards,
Aiza
Aiza, Kwik 2 is not compatible with Corona Comics. Corona Comics was never updated and, in its current state, I don’t even know if it is compatible with the latest versions of Corona SDK. Kwik 2 focus on full storybooks and games. However, Comics can be created (with much more features like audio, animations, etc) and the “zoom” effect can be reproduced with Scale interactions.