Search found 33 matches

by kleelof
16 Jan 2012, 07:33
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Admin tool
Replies: 4
Views: 7141

Thanks A51.

lee
by kleelof
15 Jan 2012, 12:33
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Admin tool
Replies: 4
Views: 7141

I mean how do you launch it? I can't even find the SWF. It must be in the webserver somewhere. What is the url?

lee
by kleelof
15 Jan 2012, 04:32
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Admin tool
Replies: 4
Views: 7141

Admin tool

Hello,

How in the world do you launch this thing?

Maybe the info is some where, but I can't find it and the documentation page titled 'The Admin Tool' doesn't have it. Maybe it should, seems like a logical place.

take care,
lee
by kleelof
07 Jan 2010, 08:09
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Odd connection problem
Replies: 5
Views: 6892

...

Hello,

Thanks.

lee
by kleelof
06 Jan 2010, 21:52
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Odd connection problem
Replies: 5
Views: 6892

Connect problem

Hello,

We have been using both.

lee
by kleelof
06 Jan 2010, 06:18
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Odd connection problem
Replies: 5
Views: 6892

Paritial Solution

Hello, Ok, so we figured out the problem was that the client is doing everything on a local machine, so I changed 'Local Playback Security' in the Publish settings to 'Access Network ONly'. Now it will connect, but it cannot load the local 'config.xml' file with the IP, Port and ZOne info. take care...
by kleelof
06 Jan 2010, 03:00
Forum: SmartFoxServer 1.x Discussions and Help
Topic: sfs.connect
Replies: 2
Views: 4547

sfs.connect

Hello, I have been trying to use the sfs.connect() command with no luck. Here is my code: public function connectToSFS(pathToConfig:String = "config.xml") { dispatchEvent (new SFSPGRevent (SFSPGRevent .SHOW_LOADER )); ConnectionStatus_txt .text = "Connecting..."; //SFSPGRglobal ....
by kleelof
06 Jan 2010, 02:55
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Odd connection problem
Replies: 5
Views: 6892

Odd connection problem

Hello, I have a very odd situation here. I am developing an application for a client. On my system, it connects as it should, but on his, it does not. He is able to use the SFS examples which all connect to IP 127.0.0.1:9339, so is this application. I know noone will be able to give me a specific an...
by kleelof
04 Jan 2010, 10:01
Forum: Server Side Extension Development
Topic: Database Data
Replies: 8
Views: 10830

Hello, I think the problem is I have been using the wrong terminology. Sorry about that. When I said 'elements', I should have been saying 'columns'. I want to be able to access the columns without knowing their names. If I do something like - var data = query .get(0).data; I get: (id=4, userName=kl...
by kleelof
02 Jan 2010, 14:20
Forum: Server Side Extension Development
Topic: Database Data
Replies: 8
Views: 10830

Hello,

Well, I can get a string representation of the row. I think it would be easier to just parse that string into the key/value pairs I need.

take care,
lee
by kleelof
02 Jan 2010, 08:58
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Custom Login and onJoinRoom event
Replies: 3
Views: 5601

Hello,

Ok, I found the problem. I was killing the eventListener too early. As usual, it works perfectly now.

thanks,
lee
by kleelof
02 Jan 2010, 08:56
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Custom Login and onJoinRoom event
Replies: 3
Views: 5601

Hello, I have it set-up as you described. Here is what I am seeing in the Flash IDE: onRoomListUpdate [Sending]: <msg t='sys'><body action='autoJoin' r='-1'></body></msg> [ RECEIVED ]: <msg t='sys'><body action='joinOK' r='1'><pid id='0'/><vars /><uLs r='1'><u i='7' m='0'><n><![CDATA[kleelof]]></n><...
by kleelof
02 Jan 2010, 08:40
Forum: Server Side Extension Development
Topic: Database Data
Replies: 8
Views: 10830

Hello, Here is the code I am using: var sql = "SELECT * FROM users WHERE name='" + userName + "'"; var query = dBase.executeQuery(sql); trace("QL: " + query.size()); if (query.size() > 0) { var row = query .get(0); O.id = row.getItem("id"); O.userName = row.ge...
by kleelof
02 Jan 2010, 06:14
Forum: Server Side Extension Development
Topic: Database Data
Replies: 8
Views: 10830

Hello,

I understand how to get each row from the query. I'm talking about the elements in each row. Is there a way to get how many elements there are in a row or a way to access the elements with a 'foreach' loop?

take care,
lee
by kleelof
01 Jan 2010, 02:23
Forum: Server Side Extension Development
Topic: Database Data
Replies: 8
Views: 10830

Database Data

Hello, I am using the following commands to access data from a DB: var row = query .get(0); O.id = row.getItem("id"); As you can see, I am calling up each data item and assigning it to an Object. What I would like to do is iterate through the row data and add it to the object without havin...

Go to advanced search