Search found 7 matches

by fsol
23 Mar 2010, 15:45
Forum: The Bug Trap
Topic: room list update - new room vars overwritten with old ones
Replies: 4
Views: 168

Hi,

Yes, I'm using roomListVars="true" in the zone config file.

Cheers
f
by fsol
23 Mar 2010, 10:56
Forum: The Bug Trap
Topic: room list update - new room vars overwritten with old ones
Replies: 4
Views: 168

Hi -

I'm using the latest patch (1.6.8), which contains these AS3 client classes:

SmartFoxClient 1.6.1

SysHandler 1.3.0

Are these the latest versions?

Cheers
f
by fsol
19 Mar 2010, 11:34
Forum: The Bug Trap
Topic: room list update - new room vars overwritten with old ones
Replies: 4
Views: 168

room list update - new room vars overwritten with old ones

Hi,

I'm using AS3 client 1.6.1.

My lobby does some stuff with Room variables, so I've set the 'roomListVars' attribute to true on the zone config.

I noticed that the room vars weren't updating correctly when using getRoomList(), even though the debug XML looks fine. Looking through the code, it ...
by fsol
16 Mar 2010, 12:11
Forum: The Bug Trap
Topic: SmartFoxClient.as strict compile issue
Replies: 1
Views: 89

SmartFoxClient.as strict compile issue

SmartFoxClient.as 1.6.1
AS3

I had to change line 2323 of this file to ensure strict type compiling:

Code: Select all

var varOwner = room.getUser(userId)
to

Code: Select all

var varOwner:User = room.getUser(userId)
by fsol
07 Nov 2008, 10:15
Forum: Server Side Extension Development
Topic: Using Scheduler in python extensions
Replies: 1
Views: 4212

by fsol
06 Nov 2008, 16:27
Forum: Server Side Extension Development
Topic: Using Scheduler in python extensions
Replies: 1
Views: 4212

Using Scheduler in python extensions

Hi,

I'm writing my SF extensions in Python, but haven't found any specific documentation for the Scheduler functionality.

Does anyone have an example of this working or should I translate the Java/AS examples? In particular I'm unsure how to handle the ITaskHandler interface.

Cheers in advance ...
by fsol
06 Nov 2008, 09:31
Forum: SmartFoxServer 1.x Discussions and Help
Topic: AS3: Multiple SmartFoxClient instances?
Replies: 2
Views: 6211

AS3: Multiple SmartFoxClient instances?

SFS Pro 1.6.2
AS3

Hi,

I'm testing my SFS app by having a single SWF create multiple instances of the SmartFoxClient, allowing it to make multiple connections to the server. This is to test server-side functionality of adding multiple users to the system without having lots of windows open.

I'm ...