Search found 2 matches

by chaos^^
Sun Oct 07, 2007 2:28 am
Forum: PSP Lua Player Development
Topic: Splitting a script into several files?
Replies: 3
Views: 15895

Hi, I solved this question using the "dofile()" method, like this: # file1.lua # (or whatever extension you like) function Funct1() return 2 end variable = 1 array = {} # main.lua # dofile("file1.lua") -- file1.lua...
by chaos^^
Sun Sep 16, 2007 6:43 am
Forum: PSP Lua Player Development
Topic: Access Point Scanning
Replies: 3
Views: 16632

hi, I'm not an expert but the error is simply to the fact that Wlan.getConnectionConfigs() function doesn't require any argument, so you may use it just as:

Code: Select all

array = {}
array = Wlan.getConnectionConfigs()
Hope to been useful.
Enjoy^^