Is it possible to make date-based text to displayed in uppercase through bindings or scripting?
Is it possible to make date-based text to displayed in uppercase through bindings or scripting?
]]>« A next alarm (dynamic text/widget), if possible, would be handy. (Previous Post)
(Next Post) Hi! »
< ![CDATA[
mystring.toUpperCase()
]]>
< ![CDATA[
James Coyle through scripting?
]]>
< ![CDATA[
Or bindings
$ll_day_name.toUpperCase()
]]>
< ![CDATA[
TrianguloY ah. Thanks bud! :3
]]>
< ![CDATA[
Yes sorry was in a lecture. Shoulda mentioned it works from bindings and scripts.
]]>
< ![CDATA[
here is my date in Bindings
for showing Tue 02 Feb 2016
]]>
< ![CDATA[
var JourN = $ll_day_name;
var moisN = $ll_month_name;
DateN=
JourN.charAt(0).toUpperCase() + JourN.substring(1,3).toLowerCase() + ” ” + $ll_day + ” ” + moisN.charAt(0).toUpperCase() + moisN.substring(1,3).toLowerCase() + ” ” + $ll_year;
return DateN;
]]>
< ![CDATA[
James Coyle it’s okay 🙂
+Bruno-Isa (y u no tag G+) Thanks for le example!
]]>