Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6809215
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:03:34+00:00 2026-05-26T20:03:34+00:00

Using Titanium Appcelerator I am trying to dynamically create elements and add event listeners

  • 0

Using Titanium Appcelerator I am trying to dynamically create elements and add event listeners to them using a loop. Here is my current code:

for(i=0;i<7;i++){

testLabels[i] = Titanium.UI.createLabel({
    borderRadius: 35,
    text:'hello',
    textAlign:'center',
    width:70,
    height: 70,
    top: '13%',
    left:140,
    touchEnabled: true
});

    testLabels[i].addEventListener('click',function(e){
        //do something
    }
}

When I run this I get the following error:

Can't find variable: testLabels. 

Its interesting to me that the variable it can’t find isn’t “testLabels1”, which to me means the loop isn’t firing… any ideas?

Thanks!

Titanium doesn’t like it when I place “var” in front of the label declaration.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T20:03:35+00:00Added an answer on May 26, 2026 at 8:03 pm

    try this

    var testLabels = [];
    for(var i=0; i<7; i++ ) {
    
        testLabels[i] = Titanium.UI.createLabel({
            borderRadius: 35,
            text:'hello',
            textAlign:'center',
            width:70,
            height: 70,
            top: '13%',
            left:140,
            touchEnabled: true
        });
    
        (function(label) {
            label.addEventListener('click',function(e){
                //do something
            }
        }(testLabels[i]));
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Appcelerator Titanium for an Android app and the code below generates
I am using the following code in Titanium Appcelerator to connect with remote Host:
I have recently started creating an iPhone application using Appcelerator's Titanium. Since the application
I am trying to use Appcelerator Titanium to build a mobile app. This app
Using Titanium Appcelerator SDK 1.7.1 for iOS 4.3 I have a TableViewRow and need
I have been trying to make sense of some claims that Appcelerator Titanium makes.
and thank you for your time. I am using Titanium Appcelerator to write an
I am working on a small iPhone app using Titanium/Appcelerator. Now what I am
I am using Titanium Appcelerator, I want to refresh Window/TableView/ScrollView manually. How can I
I'm developing an app for iPad (using Titanium Appcelerator) that is designed to record

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.