An MVC-inspired Appcelerator framework for the Titanium SDK, with focus on rapid development/prototyping. Contains built-in support for Backbone.js and Underscore.js.
Questions tagged [titanium-alloy]
918 questions
3
votes
0 answers
Titanium Route Type missing and other issue
I'm building a tourism application that make use of native map view modules for Titanium (>3.2.0)
i'm apparently having 3 issues
at any refresh with same coords in the same order the route seems to change,
the route is being calculated DRIVING and…

Zerho
- 1,440
- 4
- 19
- 39
3
votes
1 answer
Unable to run the appcelerator titanium app in IOS8
I am using the latest version of studio
Titanium Studio, build: 3.4.0.201409261227,
Mac OS Version 10.9.5,
alloy version 1.5.1,
Titanium SDK version is 3.4.0.GA
i want to update my app to IOS8, which was previously developed in IOS7 using…

Saif
- 2,678
- 2
- 22
- 38
3
votes
2 answers
Issue featch with where condition in titanium alloy
I have two pick lists in my app, both are dynamic values coming from DB. The values in to second pick list are displayed based the value selected in first pick list. So change event of first pick list the second pick list values should dynamically…

Vinod
- 2,263
- 9
- 55
- 104
3
votes
3 answers
Can't hide titlebar Titanium with Alloy
I have encounterd a problem in Titanium Appcelerator using Alloy MVC. This problem contains the following(see image)
I can't remove the black bar where the app name and logo is found. I am running the app on a device(Google Nexus, no simulator)
I…

Orion
- 227
- 1
- 4
- 14
3
votes
2 answers
How to track if location services is enabled or not enabled? titanium
I am able to turn it off.
code:
//get current Location
//
Titanium.Geolocation.accuracy = Titanium.Geolocation.ACCURACY_BEST;
Titanium.Geolocation.distanceFilter = .25;
var overlays = require('overlays');
//check if gps is enabled
exports.checkGPS…

user3754111
- 859
- 1
- 10
- 20
3
votes
4 answers
How can I view all information about my Titanium and Alloy install inside the console
How can I log all system information about Titanium and Alloy configuration and all other information about the current build, version numbers etc?
I'm looking for something similar to PHP's phpinfo.

shrewdbeans
- 11,971
- 23
- 69
- 115
3
votes
1 answer
Appcelerator Titanium View Proxy Memory Management
I've been struggling on how to handle memory allocations on my Titanium app (built for android [9.4MB], ios[2.8MB] and MobileWeb[5.4MB].
I have created a widget which will be use to open views from a menu selection.

vvns
- 3,548
- 3
- 41
- 57
3
votes
2 answers
How can I use Proguard in Titanium
How can I use Proguard in titanium or is there any similar functionality in order to make de-compile of codes harder to achieve? Any suggestion ?

Suraj kochale
- 973
- 5
- 14
3
votes
2 answers
In Titanium JS, how can I change the inactive Tab tint colour?
I've successfully changed the Tabs background colour and the active tab tint colour. However, I can't seem to change the tint colour of an inactive tab from grey.
As you can see in the image above, the "About" tab text and icon are grey.
Note that…

shrewdbeans
- 11,971
- 23
- 69
- 115
3
votes
1 answer
Titanium Alloy: Can a xml view have nested views with the same id?
I'm studing Codestrong 2012 app and trying to make it work on SDK 3.1.3.
I thought xml views should have unique id's, but I've found this:
//main.xml
…

Fernando Fabreti
- 4,277
- 3
- 32
- 33
3
votes
3 answers
Titanium JS: cannot use an image stored in SQLite Database in TiSocial module
My app has a bunch of images stored as blobs in the local SQLite Database. These images are taken with the device camera. I'm using Titanium Alloy, so the image was saved using the .save() method an Alloy Model.
I've started using the TiSocial…

shrewdbeans
- 11,971
- 23
- 69
- 115
3
votes
2 answers
Titanium Alloy - Create view without controller and access components inside that view
I have a Titanium Alloy view called overlay.xml that doesn't have a controller. I am creating it in another controller called episode.js and adding it to a container in episode.xml. I'm doing this in order to make overlay.xml into reusable view that…

shrewdbeans
- 11,971
- 23
- 69
- 115
3
votes
0 answers
Android Camera Zoom with overlay in Titanium
I am trying to add an overlay for android camera using Titanium SDK. Everything is fine. But, zoom is not working. Is there a way to implement that in titanium?
I am using the latest Titanium SDK 3.2.1GA
Here's my code:
// Containing window
var win…

user3374261
- 31
- 1
3
votes
2 answers
Build Failed Error in Titanium iOS project
I am using Titanium 3.1.3 GA version.
While include mobile app tracking module in project, getting "Build Failed" Error message.
Tried with new project also getting the same error.
[ERROR] : ** BUILD FAILED **
[ERROR] : The following build…
user1884495
3
votes
3 answers
Applying styles to my Titanium UI
I'm just starting Appcelerator's Titanium Alloy.
How can I add styles to my controller/index.js here's the code:
var title = Titanium.UI.createLabel({
title: "My Label",
id: "myLabel"
});
I am trying this one on styles/index.tss
"#myLabel":…

AllenC
- 2,754
- 1
- 41
- 74