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
1 answer

Load HTML from applicationDirectory in TideSDK

I'm using the default index.html located in RessourcesFolder of my app. The index.html page is only there to check if my application has an update (new html pages to display in app). It works perfectly.. I can download my new contents from the…
Zuhn
  • 79
  • 9
0
votes
1 answer

TideSDK - package app larger than 2gb

I'm trying to generate an installer (package the app) for my application, but it contains a lot of video files which make the total size of the whole project 2.5GB. TideSDK throws the following error everytime I try to package: light.exe : error…
Carlos Yasuda
  • 121
  • 12
0
votes
0 answers

Socket.IO don't load inside TideSDK app

i created a chat app using Node.JS + Socket.IO + TideSDK, actually my Node.JS+Socket.IO server work perfectly through browser, but when a try load the server with my TideSDK app this error happend: ReferenceError: Can't find variable: io What's can…
Tom
  • 641
  • 2
  • 8
  • 21
0
votes
2 answers

Can I use webrtc in TideSDK?

I want to use latest HTML5 features in my Tidesdk app like getusermedia, webrtc etc for screen sharing and sip calling? can anyone help regarding this? or any idea how can we do this?
Akhilesh Singh
  • 173
  • 1
  • 8
0
votes
1 answer

Does TideSDK's Ti.UI.addTray work in Ubuntu?

I was testing out a TideSDK example using the following code from github. https://github.com/meeech/Menu-App I am using Ubuntu and what I would expect to happen is a new tray icon appearing in the right hand side of the tray along the menu. It…
Joe Buckle
  • 871
  • 5
  • 14
0
votes
1 answer

tidesdk missing form variables

I have searched similar questions but none of the solutions have worked for me. I have a simple form as shown below.
Jay Bhatt
  • 5,601
  • 5
  • 40
  • 62
0
votes
1 answer

Is there a way to package a desktop application from my sencha project

I have a sencha project which works perfect on (Safari & Chrome) from index.html. I want to create a dmg file (executable) so that i can deploy on other pc. I tried it with TideSDK. But some functionality like data retrieval from store, scrolling,…
Daisy
  • 71
  • 1
  • 5
0
votes
1 answer

Does Hello World app created with TideSDK need SDK to run on another computer?

I installed TideSDK and TideSDK Developer correctly in Ubuntu and Windows 7. I can run Developer, import Hello World project, can run the app and do a Package with Runtime. Followed the "Get Started With TideSDK" tutotial. The app generated can run…
Luis Arriojas
  • 561
  • 3
  • 8
  • 19
0
votes
1 answer

TideSDK - Show unread count (Icon Badges)

I intend to create a basic chat program with TideSDK. I was now wondering if it's possible to display new/unread message count in the dock/tray icon. For example, like this dock icon in OSX: I did a quick search the docs but could not find anything…
peanutman
  • 327
  • 1
  • 2
  • 8
0
votes
1 answer

tidesdk google analytics implementation

hello i trying to incorporate google analytics through my application that i have created using tidesdk. i have the standard javascript includes that you would usually use in a website however. i cant seem to get this to…
0
votes
1 answer

Can TideSDK use sqlite database on the mapped network drive?

I need to create the multi-platform desktop application. And also multiple users need to work with shared data. Since the data is corporate confidential one, I would like to put the sqlite database in the intranet. I concern that TideSDK application…
kazu
  • 33
  • 2
0
votes
2 answers

Why I can't use Ti namespace with a TideSDK project with TiDev Community App

I am using TideSDK Developer to create a new desktop app. I'm not sure of the differences between "TideSDK Developer" and "TiDev Community 1.3.03"? I develop with php language. But I can't use Ti in my project.
crepy1234
  • 95
  • 1
  • 1
  • 5
0
votes
1 answer

Tidesdk Ti.UpdateManage

anyone know what's Ti.UpdateManage module in TideSDK ? I create a software with TideSDK framework and now I need to implement a system to upgrade the version of my software. I need to do alter table of DB (preserve data) and change others css…
enfix
  • 6,680
  • 12
  • 55
  • 80
0
votes
1 answer

Can I use AngularJS 'ng-view' in TideSDK 1.3.1beta?

I've got a simple TideSDK application going, using AngularJS. Works nicely. Recently as I started adding features, I replaced my single ng-include with ng-view and Angular routing. It works great in Chrome, but errors galore in TideSDK. Is it…
Daryn
  • 4,791
  • 4
  • 39
  • 52
0
votes
1 answer

TideSDK - Problems trying to toggle a file chooser from a button

I'm facing this problem: I wanna toggle a file chooser from a button. On jsfiddle I can completely do that, while the same code doesn't work in TideSDK. This is really weird, and I'm going to think that this is a TideSDK related problem. Link to the…