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

TidesSdk ajax post - php

I'am using tideSdk to create application using php and jquery this is my code Jquery: $(function(){ $('.button').on('click',function(){ Var name = $('.nameF').val(); $.post('index.php',{create:"",name:name},function(e){ …
0
votes
2 answers

tidesdk very slow, in html documents

I work with tideSDK i am make a document in html with external css but in the app is very slow please help me! I work with the php module and javascript but to make my document cOnly tests. html visualization remains slow in the application created…
Sam
  • 1
0
votes
1 answer

tideSDK in php module error

I created this function: index.php: which works, but refreshing the page in tideSDK gives this error: Fatal error: Cannot redeclare hello() (previously in .......) How do I fix this?
Sam
  • 1
0
votes
1 answer

TideSDK application get all applications from OS

Is it possible to use tideSDK to check what applications are running in the Operative System? Thank you
Tiago
  • 358
  • 2
  • 14
0
votes
3 answers

Tide SDK. How to read TEXT from txt file. Not binary data

Please advise on how to read text from a txt or csv file using Tide SDK. I already tried the following: var f = Ti.Filesystem.getFile(Ti.Filesystem.getDesktopDirectory(),'file.txt'); var fs =…
terreb
  • 1,417
  • 2
  • 23
  • 40
0
votes
1 answer

Does TideSDK work with Codeigniter?

This question was asked here with no actual response. Please don't stone me for asking it again. However does CodeIgniter work with TideSDK? I have a Codeigniter build with file structure System folder - Application folder - index.php etc. Works…
Fabricio G
  • 13
  • 5
0
votes
1 answer

TideSDK : convert.exe returned non-zero exit status

I am running TideSDK on windows and facing a problem with ImageMagick this is the error that I see in the console subprocess.CalledProcessError: Command '['convert.exe',…
0
votes
1 answer

TideSDK: Put all files into 1 *.exe and/or obfuscate the code

Has there been any movement of TideSDK adding capabilities to protect the source code of the applications we build using it. I have php files with database connection strings and I need to have my application launch on a public pc in an internet…
user2548054
0
votes
0 answers

Use "localhost" instead of "app://" to display files in TideSDK

Is there any way to load/display files by using 'localhost' address instead of 'app://'? I mean something like: http.://localhost/com.app/file.swf I've tried using HTTPServer & FileStream listed on TideSDK documentation, but every time I try to…
FrakyDale
  • 647
  • 8
  • 22
0
votes
1 answer

TideSDK Call PHP file w/ Ajax

So, TideSDK say that php is preprocessed upon each request (if it's a .php file). I'm using the following JS ajax: function ajax(url, method, data, async) { method = typeof method !== 'undefined' ? method : 'GET'; async = typeof async !==…
Jared Allard
  • 873
  • 10
  • 34
0
votes
1 answer

how to compile tidesdk package to get .exe file out of it?

Im trying to compile hello world package made from tide but couldnot make anything out of it. I tried compiling using tidebuilder.py but for some reason it seems not to be working. I installed tide sdk and tried to import but this package womt get…
Prashant Ghimire
  • 4,890
  • 3
  • 35
  • 46
0
votes
1 answer

Tide SDK Local and Web Data Base

I am making a little side project and trying Tide SDK for the first time. Is it possible to create an app that can work offline and when the PC has internet get the latest version of the DATA in the Web DataBase? The person who will use the…
0
votes
1 answer

Does TideSDK give you access to hardware (e.g. USB)?

I need to do some basic talking to hardware over USB and am looking for a simple way to build a cross-platform desktop app.
tarabyte
  • 17,837
  • 15
  • 76
  • 117
0
votes
0 answers

TideSDK createProcess starts wrong ruby version

I am struggling with starting a new ruby process in TideSDK. I use the javascript: my_process = Ti.Process.createProcess({ args:['ruby',Ti.API.application.resourcesPath + "/ruby/some_process_scrpt.rb", get_argvs()] }); my_process.launch(); Now…
Automatico
  • 12,420
  • 9
  • 82
  • 110
0
votes
1 answer

TideSDK bring window to top level on click of system notification

I am using tideSDK to create desktop app. I wanted to show the system notifications on certain events. The below code works well. //Create a callback function for the notification var doSomething = function() { //Do something! } //Creating…
veer7
  • 20,074
  • 9
  • 46
  • 74