Quantcast
Channel: Appcelerator Developer Center Q&A Unanswered Questions 20
Viewing all articles
Browse latest Browse all 8068

Change font size with slider

$
0
0

So I'm trying to change a label's font size using a slider. Both the slider and the text appear but moving the slider doesn't cause a change. Some help please

.xml

<Alloy>
    <Window id='articleWindow' backgroundColor="white">
 
        <Slider id='slider' onChange='onChange'/>
        <Label id="story"/>
 
    </Window>
</Alloy>
.tss
"#slider": {
    top: 5,
    min: 0,
    max: 100,
    value: 50,  
},
"#story": {
    color: 'black',
    font: {fontFamily:'Arial', fontSize: 15},
    top:10,
    left:10,
    right:10,
}
.js
$.story.text = "I love Cheese"
 
$.slider.text = $.slider.value;
function onChange (e){
    $.story.font.fontSize = String.format("%3.1f", e.value);;
    Ti.API.info($.story.font.fontSize);
 
};

Viewing all articles
Browse latest Browse all 8068

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>