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
0
votes
0 answers

TideSDK: is it possible to use mediaStream and webrtc ?

I would like to know if it is possible with TideSDK to use Camera, Microphone and all the webrtc stuff. I tried with a simple example but it does not work; I'm wondering if it is just matter of enabling it or if it's not supported at all. Thank you…
0
votes
2 answers

TideSDK - Set child window always to topMost of main window

I have a project that consists in creating an app that works on top of other apps. My app stays always on top and allows transparency for interaction with apps bellow. All is going ok, I've applied topMost (true) to the app and its ok. Because I…
Peter
  • 118
  • 9
0
votes
1 answer

How to get the system login information in TideSDK app using java script?

I have a desktop app built with TideSDK and java script. The idea is to use system login to autologin ot the tideSDK app. I have tried following code snippet to get the system login username. var WinNetwork = new ActiveXObject("WScript.Network"); …
veer7
  • 20,074
  • 9
  • 46
  • 74
0
votes
1 answer

Calling a function within a Nested Object

I have an object, nested within a parent object. The inner object has 2 functions and one needs to call the other. I assumed I could call this.theFunction(), but that doesn't seem to be the case. var views = { settings: { init: function() { …
Rob Wilkerson
  • 40,476
  • 42
  • 137
  • 192
0
votes
1 answer

How to call variable-ized private function?

I have a UserInterface class with a public method that needs to be able to delegate its work to a private function based on a parameter. The name of the private wrapper needs to be called dynamically: function UserInterface() { // ... …
Rob Wilkerson
  • 40,476
  • 42
  • 137
  • 192
0
votes
1 answer

Removing window header using tidesdk

I want to remove the header of a child window using TIDESDK. I don't know how to use xml settings for a child window. I was successful in creating tiapp.xml file for the parent. Now, I am trying to use the Ti.UI.UserWindow APIs to remove the borders…
theRev
  • 109
  • 1
  • 2
  • 12
0
votes
1 answer

TideSDK IDE Support and Debugging

Do we have any IDE support for TideSDK to build the applications. I just installed the TideSDK, but it have plane editor and don't have any debugging options. Is there IDE for this SDK like we have for Titanium Appcelerator. Best Regards, Ravi
Varma
  • 1
  • 1
0
votes
0 answers

Changing tideSDK notification styles

I am using tidesk to make desktop notifications for my webapp. I am able to use the notification API and am able to generate notifications but is there any way of styling those notifications. I would like to change the notifications css to style it…
theRev
  • 109
  • 1
  • 2
  • 12
0
votes
1 answer

Is it possible to create/remove/change files and directories in TideSDK?

I was wondering if it was possible to create, remove and change files and directories using the TideSDK, I was wondering this because I'm just wondering if I can create an application which can save files using a custom file format, and load the…
0
votes
1 answer

HTML5 Canvas drawImage TideSDK

I'm creating a HTML5 app and packaging with TideSDK. I'm trying to get an image to display on canvas; however try as I may, nothing is showing up. I've pinpointed the problem to the placement of the image file in the directory (I ran the same code…
Andrew
  • 3,501
  • 8
  • 35
  • 54
0
votes
1 answer

Tidesdk doesn't work CSS

i can't do somethings with css in tidesdk I tried to do a css circles, i'm using 1.3.1-beta, but it doesn't work, i don't know what i'm doing wrong. Can you help me? Sample
mackiur
  • 3
  • 3
0
votes
1 answer

MS SQL and tideSDK

I want to query with tideSDK a MS-SQL database. How can I realize this in tideSDK? My approach was to extend PHP with PDO SQLSRV. But I do not come on.
0
votes
1 answer

TideSDK Namespace (Application ID)

I have an app that functions perfectly outside of Tide. The app uses Flowplayer to load and play a video using HTML5. It appears that when Flowplayer insert the video tag and sets the src attributes, the path is prefaced by the namespace…
Ward
  • 3,318
  • 3
  • 30
  • 50
0
votes
1 answer

TideSDK, windows app run from external drive, no install

I have successfully translated a web app into a desktop app using TideSDK. I'm attempting to make this app run without being installed, so it may run from an external drive. On MAC this works just fine, I'm able able to "Package with Runtime", copy…
Andrew
  • 50
  • 7
0
votes
1 answer

How to set a fixed size for a Tide Sdk app window?

I am trying to compile an app, that would have a fixed window size, one that could not be scaled. I found these functions in the API, but they don't seem to work when compiling - var window = Ti.UI.currentWindow; window.setHeight(500); // Set the…
Andris Gauračs
  • 398
  • 6
  • 20