Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-23573] Windows: Support Ti.UI.ImageView.reverse

GitHub Issuen/a
TypeImprovement
PriorityMedium
StatusClosed
ResolutionFixed
Resolution Date2016-06-30T07:27:24.000+0000
Affected Version/sRelease 5.3.0
Fix Version/sRelease 6.0.0
ComponentsWindows
Labelsn/a
ReporterGary Mathews
AssigneeGary Mathews
Created2016-06-29T11:19:54.000+0000
Updated2016-09-06T16:19:13.000+0000

Description

Add support for Titanium.UI.ImageView.reverse in image sequences.
var win = Ti.UI.createWindow({ backgroundColor: 'white' }),
    img = Ti.UI.createImageView({
        width: 128,
        height: 128,
        duration: 60,
        //reverse: true
    }),
    seq = [];
for (i = 0; i <= 12; i++) {
    seq.push('clock_' + i + '.gif');
}
img.images = seq;
img.start();
win.add(img);
win.open();

Attachments

FileDateSize
clock.zip2016-06-29T11:36:58.000+000068191

Comments

  1. Gary Mathews 2016-06-29

    master: https://github.com/appcelerator/titanium_mobile_windows/pull/759
  2. Ewan Harris 2016-09-06

    Verified using: OS: Microsoft Windows 10 Pro 10.0.14393 Appc core: 6.0.0-38 Appc NPM: 4.2.8-6 Ti SDK: 6.0.0.v20160904203840 Lumia 930: 10.0 Ti.UI.ImageView now supports the reverse property Closing ticket

JSON Source