Questions tagged [tidesdk]

TideSDK is an open source software development kit for creating multi-platform desktop apps using HTML5, CSS3, JavaScript and other common scripting languages.

Create multi-platform desktop apps with HTML5, CSS3 and JavaScript.

TideSDK has a compact microkernel written in C++ for running pluggable modules. The microKernel supports a cross-language, cross-platform 'binding' and invocation framework. This provides the capability to pass objects between languages (ie. pass a JavaScript object to a Python function and so on).

Tide currently supports C/C++, Python, Ruby, PHP and JavaScript. The supported languages may be embedded in the DOM or included by reference in your application code.

Support

328 questions
1
vote
1 answer

TideSDK keep window set on top (transparent overlay)

I'm looking to make a small app using TideSDK, but would like to have the window sit in the bottom right and always on top of other windows e.g. like a transparent overlay showing a graph or some information that is always visible regardless of…
Nathan Waters
  • 1,173
  • 4
  • 13
  • 23
1
vote
0 answers

Debugging TideSDK application: Quickly reload source

Is there a way to quickly reload the source files of a TideSDK application when developing instead of having to close it and restart? I tried binding a keypress event to location.reload(); but that does not work.
Ibrahim Muhammad
  • 2,808
  • 4
  • 29
  • 39
1
vote
2 answers

Can't get all rows from a query result using TideSDK API

I'm new to TideSDK so I am doing some tests. I found that the API has some methods to manage and retrieve data stored in a local DB. I created a table named Users with only two fields, id and name (This is the example at…
1
vote
1 answer

TideSDK packaging on mac for windows or linux

I have read this Building Win, Mac and Linux packages from one platform and the answer said A service platform is coming that will solve this issue to make development easier for everyone. We'll make announcements with this available. So I…
Tony Hsieh
  • 153
  • 1
  • 1
  • 10
1
vote
0 answers

TideSDK: Change titlebar color and add fullscreen

I wanted to change the color of titlebar from default silver to a dark grey (near black). The problem is: I couldn't find a way to create an Xcode project that either resembles TideSDK itself or integrates TideSDK in an existing application. Adding…
Benjamin Schmidt
  • 1,051
  • 13
  • 29
1
vote
0 answers

Data-icon not working in tidesdk

The following line has no effect in tidesdk,though its working fine in chrome and firefox I want that line to show up icon-images so that I don't have to use images.Is there…
Naveen
  • 7,944
  • 12
  • 78
  • 165
1
vote
1 answer

TideSDK Notifications in OSX Lion 10.7.5

I started using the tideSDK for a simple desktop application. Im using the notification api. This works on Windows platforms but not on my OSX Lion 10.7.5. This is the notification code from the TideSDK docs tideSDK docs doSomething = () -> …
Harry
  • 13,091
  • 29
  • 107
  • 167
1
vote
1 answer

Need help in Installing Tide SDK in Linux

I was very excited when I came to know about Tide yesterday.But I am frustrated now after struggling with mere installation for more than 24 hours now. I downloaded TideSDK-1.3.1-beta-linux-x86.zip but it had not any executables and after reading on…
Naveen
  • 7,944
  • 12
  • 78
  • 165
1
vote
1 answer

TideSDK app to send file to FTP server

I've developped a web page for sending file to a FTP server. It take the file, rename it, access a FTP server, create a directory and put the file in. I'm looking for a way to make it working as a desktop app. Is TideSDK able to do that? I guess it…
1
vote
1 answer

How to give widget look to the application developed using tide sdk

I have developed a weather application for windows using html and css with the help of tide sdk.But i want to give it a widget look like windows desktop gadgets i.e i do not want the title bar and borders that windows applications normally…
Naveen
  • 7,944
  • 12
  • 78
  • 165
1
vote
2 answers

TideSDK php connect via ssh

Are there any possibilities to connect to server via ssh using php in tidesdk. I'm trying to use $session = ssh2_connect($server, 22); But an error occurred Fatal error - Call to undefined function ssh2_connect()
Alex
  • 59
  • 2
  • 7
1
vote
1 answer

How do I log debug for a desktop app built with TideSDK?

I'm involved in building an html5/js/css app that we want to package for both Mac and Win using TideSDK. When using TideSDK Developer, I have access to all logging (Ti.API.debug, etc) in the console tab. Is there any way to see that same logging…
Stephroy
  • 115
  • 1
  • 6
1
vote
2 answers

TideSDK with Spring MVC

Just wondering, is it possible to turn spring mvc web development content into a desktop application using TideSDK? Both are using HTML5 as the front-end. Then, as for the back-end process, it should be able to reuse the java code inside spring…
Iso
  • 3,668
  • 2
  • 20
  • 18
1
vote
1 answer

Ti.Network.createHTTPClient SSL

When I try to connect my application to my apache sslv3 server tidesdk reports: "SSL connect error" var url = 'https://www.sipmeeting.com/'; var client = Ti.Network.createHTTPClient({ onload: function(e) { //request complete do…
John Hass
  • 21
  • 3
1
vote
1 answer

SCons can't find cl when building TideSDK on Win8 w/ VS2010

I am following the directions on https://github.com/TideSDK/TideSDK/wiki/Windows7-x86-2010-Express, but when running: scons debug=1 I get errors about SCons not being able to find cl so I added the following to SContruct: if build.is_win32(): …
cacciatc
  • 9
  • 5