appcelerator

SVG in Titanium Desktop?

青春壹個敷衍的年華 提交于 2019-12-07 05:49:11
问题 I'm running the 1.1.0 SDK of Titanium Desktop and only my SVG text elements are rendered properly. SVG methods such as getBBox() give error messages. The application works well outside the Titanium environment - that is: Chrome, Firefox, Safari. Any ideas on how to solve this? (What browser + version is really running inside Titanium??) Thanks. Edit: Example SVG code: <svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg" version="1.1"> <title>Example

PhoneGap or Appcelerator Implementation

旧巷老猫 提交于 2019-12-06 22:36:27
This is more of an advice question rather than a specific question. I am developing an application for mobile devices. Its basic functionality will be to open PDF files, Video files, and to open certain webpages. Would this be best implemented in PhoneGap or Appcelerator? PhoneGap and Appcelerator Titanium are both very popular open-source JavaScript frameworks for packaging and deploying mobile applications. At Universal Mind, we have clients that leverage both and clearly both frameworks have countless successful implementations on numerous platforms. However, there are enough significant

Apply filters to photos in Appcelerator

不羁的心 提交于 2019-12-06 16:40:39
I am building an iOS app in Appcelerator and I need to let the user take pictures and then apply a filter to them (like Instagram). How can I achieve this? Is it perhaps possible to use any javascript based image filter library? Thankful for all input! It is definitely possible, http://www.pixastic.com/lib/docs/ you can see some filters here as an example. All of these affects are achieved by looping over the image data and manipulating the pixels one by one. Hard part here would be making(or finding) the algorithms that would look good, like instagram has. There are also masks in instagram,

Keyboard shortcuts for Titanium IDE in MAC

左心房为你撑大大i 提交于 2019-12-06 15:23:10
问题 I'm new to appcelerator titanium IDE, previously I was working on Xcode. In xcode I'm relied on the keyboard shortcuts for saving my coding time. Now I'm struggling with titanium, because I don't know any keyboard shortcuts in titanium IDE. In Xcode commenting a block of code ( cmd+\ ), shifting them to left( cmd+} ) or right( cmd+{ ) was very easy. In titanium now I'm manually doing it for each line of code ! Can anybody help me to find the shortcuts for titanium IDE in MAC ? If this is not

Appcelerator - Android failed to package application, duplicate file

女生的网名这么多〃 提交于 2019-12-06 12:55:13
Having a load of issues with Appcelerator at the moment, random error messages at every turn, but I know that comes with the territory. Today's hurdle is testing out the Facebook integration for my app and I'm testing on a vanilla project created by the studio. When I go to test the application I get the following error: [ERROR] : Failed to package application: [ERROR] : [ERROR] : /Users/auhjbe0/Documents/Appcelerator_Studio_Workspace/CleanProject/build/android/res/drawable-hdpi-v4/com_facebook_button_like_icon_selected.png: error: Duplicate file. [ERROR] : /Users/auhjbe0/Documents

Unable to Open Appcelerator Studio after fresh Install

吃可爱长大的小学妹 提交于 2019-12-06 05:26:31
I am stuck with an issue. I have installed the Appcelerator studio on my Macbook from Appcelerator dashboard and it was installed successfully. But when I try to open it, below message appears. I also tried to install using the command-line but no success. After opening the log file mentioned in the message I found below log !ENTRY org.eclipse.osgi 4 0 2018-03-06 23:19:28.145 !MESSAGE Application error !STACK 1 java.lang.RuntimeException: Application "com.appcelerator.titanium.rcp.application" could not be found in the registry. The applications available are: com.aptana.commandline.launcher

Is the Facebook app built using a mobile development framework like PhoneGap or Appcelerator?

跟風遠走 提交于 2019-12-06 04:56:13
问题 I've found numerous sources that cite the Facebook app as an example of a Hybrid App. I understand the term Hybrid App is broadly defined as any smartphone app that wraps a WebView in a native application. There are mobile phone development frameworks (PhoneGap, Appcelerator, etc) that enable developers to build apps using their existing web dev skills (HTML5, Javascript, CSS) while providing access to core phone features (camera, address book, etc). Therefore, since Facebook is a hybrid app

How to resolve Titanium error “Ex…tion: No Android '-8' or android '-2.2' in the Android SDK.” on a Mac running OSX Lion?

南楼画角 提交于 2019-12-06 03:34:33
问题 Hi guys Im new using Titanium studio on a mac machine running OSX Lion. Im having no problem developing iphone and ipad apps but having problem setting-up a project for Android. I have an existing (latest) android SDK and is already developing basic apps using Java on standard Eclipse. I tried pointing Titanium to my android SDK which I was using for my Eclipse but fails with the following exception. Android SDK at the given path has the following error:"Ex...tion: No Android '-8' or android

How to calculate the sunrise and sunset in javascript?

杀马特。学长 韩版系。学妹 提交于 2019-12-05 22:50:12
i am using appcelerator titanium to develop an IOS app and i want to let my app send local notification to the users in sunrise and sunset a good tool to solve this is Yahoo weather using YQL ; however, yahoo weather is for non-commercial use only!! i am trying to find a javascript library to calculate the sunrise/set + a database of the world's countries and cities with the latitude and longtude have anyone ever needed the same? Any idea. Demian Brecht This algorithm looks pretty wicked to solve exactly what you're looking to do. mattexx Use NOAA's javascript routines for the solar position:

How do cross-platform mobile app development frameworks work?

旧街凉风 提交于 2019-12-05 14:58:50
问题 How are Rhodes, Phonegap, and Appcelerator able to take Javascript or Ruby, and compile them into binaries for app SDKs that normally require apps to be written in Obj-C, Java, and others? 回答1: Phonegap uses the default browser rendering engine, and uses that to display your application. The javascript is then handled by the native (compiled) part of the framework. Appcelerator uses something simular, but compiles the whole application if i remember correctly. MoSync uses a somewhat simular