Director Class - Load Images from another file?

From a current screen, how do you load images from another file?
Below is sample code that would show what I am doing wrong!

Main screen: screen1.lua

  
module(..., package.seeall)  
  
-------------------------------------  
-- LOAD PACKAGES  
-------------------------------------  
  
local physics = require("physics")  
local ui = require( "ui" )  
local introparts = require( "intro-parts" )  
physics.start()  
  
-------------------------------------  
-- NEW  
-------------------------------------  
  
function new()  
 --Local Group  
 local localGroup = display.newGroup()   
  
 --Calling Parts  
 parts()  
 return localGroup  
end  

Parts: intro-parts.lua

[code]
function parts()
local localGroup = display.newGroup()
box1 = display.newImage(“images/box1.png”, 422, 254)
physics.addBody( box1, { density=5.0, friction=0.3, bounce=0.4 } )
localGroup:insert(box1)

end

[/code] [import]uid: 7197 topic_id: 5004 reply_id: 305004[/import]

Try introparts.parts()

It isn’t the images, it’s just that you’re trying to call the method in the wrong scope.

a. [import]uid: 12405 topic_id: 5004 reply_id: 16600[/import]

Guys, please write your questions at Director’s sub-forum. I don’t have too much time to answer and I really didn’t see most of the topics created for Director. I’m sorry for that and I will appreciate if you all could go to this link:

http://developer.anscamobile.com/forums/director-class [import]uid: 8556 topic_id: 5004 reply_id: 18689[/import]