Well, the IDE was greatly irritating me with its crap search function, and so I decided to work on Sublime Text
But I cannot figure how to use the command line, I tried all commands, and none of them did anything beside writing this:
* daemon not running. starting it now on port 15001 *
* daemon started successfully *
I tried with the player open, with the player closed, setting the ip to the ip the player shows... Nothing worked, ALL commands just print that mentioned message.
EDIT: This is on Windows... (I also develop on OSX, but right now I am have issues on Windows)
Comments
http://giderosmobile.com/forum/discussion/comment/33063#Comment_33063
Before making a sublime command, I try to make it work on the actual command line, what I meant on my post is that directly on the command line it is not working.
i want to make a simple windows 'run.bat' file that opens a gideros player and runs my project in it. can anybody tell me how such a run.bat file should look like?
Fragmenter - animated loop machine and IKONOMIKON - the memory game
(on command line)
i've seen those docs, but could not make a windows run.bat following the instructions (i want to open a player on the pc and run the project in it).
Fragmenter - animated loop machine and IKONOMIKON - the memory game
C:/Program Files/Gideros/Tools/gdrbridge.exe setip 192.168.100.19
C:/Program Files/Gideros/Tools/gdrbridge.exe play /Projects/Game1/game1.gproj
A simple run.bat should look like this (just an idea as I don't have a Windows machine right now and I haven't coded batch script for years )
run.bat setip ...
run.bat play ...
Likes: ar2rsawseen
start "" "C:/Program Files (x86)/Gideros/GiderosPlayer.exe"
"C:/Program Files (x86)/Gideros/Tools/gdrbridge.exe" setip 192.168.1.100
"C:/Program Files (x86)/Gideros/Tools/gdrbridge.exe" play myproject.gproj
great
Fragmenter - animated loop machine and IKONOMIKON - the memory game
Fragmenter - animated loop machine and IKONOMIKON - the memory game
Fragmenter - animated loop machine and IKONOMIKON - the memory game
Open CMD and type:
cd "c:/Program files/Gideros/Tools"
cd "c:/Program files (x86)/Gideros/Tools"
then type this to open Gideros Player:
start ../GiderosPlayer.exe
You can also launch it on device, by providing IP of device
Likes: Holonist
Since the only change was gideros version, I guess that back when I complained gideros was broken, and now it is fixed. (i tried the same steps that failed the last time, now it worked fine)