Login Page - Create Account

Support Board


Date/Time: Mon, 05 Jan 2026 12:33:07 +0000



Post From: Null Function ACSIL

[2023-08-13 22:57:18]
ForgivingComputers.com - Posts: 1183
My suggestion is don't use alerts to trigger entries. Whatever logic the alert is performing can be coded in ACSIL. Then you can put other conditions you want around it.

This
if(LongArray, !weeklyVol[sc.Index] == 1)

is invalid. LongArray needs an index, and there are no commas in an if statement.

I think you want this:
if(LongArray[sc.Index]== 1 && weeklyVol[sc.Index] != 1)

The arrays are of the type float, so putting a ! in front doesn't really make sense.