Trying to set a local back button on SlideView

I have the back button at the lower right hand of the screen but when I click I don’t get a return back to the intro.

[code]
display.setStatusBar( display.HiddenStatusBar )
local ui = require(“ui”)
local slideView = require(“slideView”)

function NarrationFinished(event)
print(“Narration Finished on channel”, event.channel)
if event.completed then
print(“Narration completed playback naturally”)
else
print(“Narration was stopped before completion”)
end
end

backgroundMusicChannel = audio.play( backgroundMusic, { channel=1, loops=-1, fadein=12000 } )
local myImages = {
“10.png”,
“11.jpg”,
“12.jpg”,

}

slideView.new( myImages )

local back = display.newImage (“thisway.png”)
back.x = math.floor(display.contentWidth*0.93)
back.y = 675
local function goback (event)

director:changeScene (“intro”)

end

[/code] [import]uid: 88495 topic_id: 30494 reply_id: 330494[/import]