duzers 0 Posted November 21, 2010 Hello, How to change Javascript operators "|=","&=" and "<<" ? Javascript comands: List |= 1 << 20; // Add List &= !(1 << 20); // Remove Thx for help. Share this post Link to post Share on other sites
Richard Robertson 187 Posted November 21, 2010 This forum is for AutoIt support, not Javascript support. Share this post Link to post Share on other sites
duzers 0 Posted November 21, 2010 This forum is for AutoIt support, not Javascript support.Yes, but I try to transfer code JS to AutoIt. Share this post Link to post Share on other sites
ProgAndy 88 Posted November 21, 2010 Try to use BitShift, BitOr, BitAnd, BitNot ... *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Share this post Link to post Share on other sites
Richard Robertson 187 Posted November 22, 2010 I misunderstood then. ProgAndy is right. Share this post Link to post Share on other sites
duzers 0 Posted November 22, 2010 Try to use BitShift, BitOr, BitAnd, BitNot ... ...and work ok$list=bitor($list,bitshift(1,-20)) Share this post Link to post Share on other sites