[TIMOB-23573] Windows: Support Ti.UI.ImageView.reverse
| GitHub Issue | n/a |
|---|---|
| Type | Improvement |
| Priority | Medium |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2016-06-30T07:27:24.000+0000 |
| Affected Version/s | Release 5.3.0 |
| Fix Version/s | Release 6.0.0 |
| Components | Windows |
| Labels | n/a |
| Reporter | Gary Mathews |
| Assignee | Gary Mathews |
| Created | 2016-06-29T11:19:54.000+0000 |
| Updated | 2016-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
| File | Date | Size |
|---|---|---|
| clock.zip | 2016-06-29T11:36:58.000+0000 | 68191 |
master: https://github.com/appcelerator/titanium_mobile_windows/pull/759
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