Acknowledged

Can't use insert as code on forum due to non-robot check ...

I tried to insert some text as code on a forum post, but had to go through the non-robot check with the following image:

After selecting the images I then tried to continue … but there was no way I could click OK/CONTINUE on the image checker as it was down below the cut-off somewhere. I couldn't scroll down to it either … so no way to insert as code!

Parents Comment Children
  • So it's not just targeting me Slight smile

    This is what I tried to paste by the way (just verified it still wants to check I'm not a robot!):

    var userProfile = UserProfile.getProfile();
    var BMR = (10.0/1000.0)*userProfile.weight + 6.25*userProfile.height - 5.0*(dateInfoMedium.year-userProfile.birthYear) + ((userProfile.gender==1/*GENDER_MALE*/)?5:(-161));
    var nonActiveCalories = (BMR*1.2).toNumber();
    var activeCalories = getNullCheckZero(activityMonitorInfo.calories) - (nonActiveCalories * timeNowInMinutesToday) / (24*60);
    var eStr = "" + ((activeCalories<0) ? "--" : activeCalories);