Step 1

Step1

create a simple “read to me” app with multi languages and test on corona simulator with mouse

New Project


Page1

Project properties > General> Create Navigation

Interaction > Add Button to layer “NaviBtn”


Page2

Add Audio


Page3

Add Variable “langValue”. Initial value is en and make it global and keep track is checked

Init page3

if composer.lang == "jp" then
    show checkJp
    hide checkEn
else
    show checkEn
    hide checkJp
end
show jpBtn
show enBtn

Other buttons


Setup(page4)

Next tutorial, we add the table view of key assignment here as an external code and Edit button makes it editable.

Page1 Init and Buttons

starting the page with action timer

if langValue == "en" then
    Set Language English
else
    Set Language Japanese
end

Done. Publish and Test with Corona Simulator.