Granted, this may be too esoteric for me to understand, but I can’t seem to make this do what I want to do
Let’s say that I have 3 globals: gGlobal1 = 10.1, gGlobal2 = 20.2 and gGlobal3 = 30.3 I have an expression like gGlobal1*gGlobal2/gGlobal3 I want to transform this to the expression 10.1*20.2/30.3. Seems simple enough and I can do it in my usual inelegant way, but there must be a simpler way to do this??? Sorry for my confusion. Roger > On Feb 11, 2019, at 2:53 PM, Monte Goulding via use-livecode > <[email protected]> wrote: > > put format(“%f*%f/cos(%f) = %f”, gGlobal1, gGlobal2, gGlobal3, > gGlobal1*gGlobal2/cos(gGlobal3)) _______________________________________________ use-livecode mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode
