From: <gre...@gm...> - 2004-12-01 21:11:58
|
Wow it finally worked! Thanks! I just had to add: from PythonCard.components import button,image,staticbox,statictext,textarea,textfield Though I'm slightly dissapointed it didn't make just one big exe file, but rather a whole folder of junk. Do I need to bring that whole folder to another computer in order to run my program? Wish me luck on my presentation tonight on a computer that I'm not allowed to install python on ;-) -Greg On Wed, 1 Dec 2004 12:35:18 -0800 (PST), Ruben Marquez <rmc...@ya...> wrote: > Gregory, > > I know, there is a lot to take in when you are getting > started. Note that Kevin said: > > "You need to specifically import the component modules > that you use in your resource file" > > What that means is that, when using py2exe, you have > to explicitly import each component that you use in > your app individually. In other words, it is not > enough to do: > > from PythonCard import model, dialog, etc... > > In addition to that, you need to do: > > from PythonCard.components import button, radiogroup, > etc... > > -Ruben > > > __________________________________ > Do you Yahoo!? > Read only the mail you want - Yahoo! Mail SpamGuard. > http://promotions.yahoo.com/new_mail > |