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

Usage of Ti.UI.Tray

Can Someone explain me what Ti.UI.Tray is for? I want to create a system tray application that displays notifications on update and when the user closes the window it goes into system tray instead of exiting and the user closes the application by…
Siva.K
  • 113
  • 5
1
vote
1 answer

Drag to move application

Using TideSDK, how would I go about using a div or any element to drag/move the application window around the desktop? I'm looking to mimic the default behavior of the operating system frame (click and drag to move the application around) I have my…
blockloop
  • 5,565
  • 5
  • 30
  • 31
1
vote
1 answer

Will TideSDK webkit version be upgraded?

I heard on StackOverflow the webkit version is about 2 years old. Will you upgrade the webkit ? Or can I upgrade it by myself ? Regards
ChainList
  • 1,198
  • 7
  • 28
1
vote
1 answer

Using post form with TideSDK 1.3.1-beta and php

I'm trying to use forms with post method to send data through pages, but after the submit the $_POST array is empty. Using get method instead, the $_GET array works. Is there a fix? Thanks
1
vote
1 answer

Download links with TideSDK

I have seen several posts coming close to solving my issue, but I am still not able to accomplish my simple task, which is this: Imagine I have a window which contains a link to a remote file (most often it will be a zip file). How can I structure…
Chimpy
  • 11
  • 1
1
vote
1 answer

Are Windows TideSDK apps running in sandbox?

The windows software I create in TideSDK, does it run in sandbox or can I have full access to file system?
Jakov Don
  • 25
  • 2
1
vote
1 answer

Distributing TideSDK application

I recently finished an application based on Titanium, Javascript, HTML, CSS. I have only been a web designer to date so I have little experience in distributing applications. I was accustomed to the TiDev Community deploying app, which prepared the…
1
vote
1 answer

Scrollbar shows up on Windows

I have a problem with TideSDK on Windows 8. I have in my tiapp.xml: true But even with that, scrollbars show up, why? I can hide them with jQuery or CSS using overflow: hidden; But I can't scroll anymore after…
ChainList
  • 1,198
  • 7
  • 28
1
vote
2 answers

How to allow text selection in TideSDK

I'm developing an app for use with TideSDK. Obviously, in Chrome, the user can select any html text he sees. However, in TideSDK, it appears that text selection is disabled by default. I imagine a simple setting will allow it, but after Googling and…
preahkumpii
  • 1,301
  • 4
  • 21
  • 36
1
vote
2 answers

How to create a new window

I need to create a new top level window or a child window based on the action of the user and i'm using javascript to know the action that has been taken. I'm using the Ti.UI.createWindow() for this and I have tried it with all the possible…
Siva.K
  • 113
  • 5
1
vote
1 answer

HTML5 desktop application

We have a desktop app with python and GTK, some parts of it are developed in C, may be its for performance or legacy I am not too sure, also it has a embedded mySQL database. Now the same APP is targeted to run on Android platforms too. Its not very…
Kamath
  • 4,461
  • 5
  • 33
  • 60
1
vote
1 answer

Track mouse activity in unfocused TideSDK app

I would like to know if it is possible to track mousemovement in a TideSDK application even when the application is not focused/active. I am currently using: $(window).on("mousemove",function(e){ console.log(new Date().getTime()); …
Samuel
  • 11
  • 1
1
vote
1 answer

Ordering Menu Items in TideSDK

I'm adding main menu items to my application. But, they get added only after the default 'Edit' menu item. new_menu = Ti.UI.createMenu() fileItem = new_menu.addItem('File') settingsItem = new_menu.addItem('Settings') Ti.UI.setMenu(new_menu) This…
Shrihari
  • 105
  • 2
  • 10
1
vote
1 answer

How do I build the TideSDK Developer app?

Ubuntu 12.10 I'm trying to build the TideSDK developer application (not the SDK itself, that's where it should be. The developer app that is a separate installation, to avoid any confusion). First, I installed the TideSDK files into ~/.tidesdk…
razorbeard
  • 2,924
  • 1
  • 22
  • 29
1
vote
2 answers

How to make TideSDK window not closeable?

I am trying to make a TideSDK application that cannot be closed and minimizes to the system tray. I have the system tray part figured out for the most part, but when I specify "closeable" in tiapp.xml it doesn't do anything. i.e. I still see the…
0x6A75616E
  • 4,696
  • 2
  • 33
  • 57