Jump to content

mike2003

Active Members
  • Posts

    151
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

mike2003's Achievements

  1. Never mind, it's your choice. But it's uncomfortable.
  2. $iHeight = 71 $e = _Notify_Size($iHeight, 4 * $iHeight, 10 * $iHeight) $e = error in iMaxWidth step (Force to even) ---- Truncate title/text must be OFF default. It is always better to show than not to show for minimal settings. Otherwise, the whole message simply disappears.
  3. wow I understand! you have a check inside, it is crooked and with an error, but I figured out how to get around this after experiments. but it's complicated and incomprehensible until you look at the code.
  4. Hi again. I am trying to re-enable this module for myself. How to increase the size? I want to see text bigger. But none of the options _Notify_Size() work. And there is nothing in the examples. Help me.
  5. But I can't find any references about START. There are no such examples in the file. When I start SciTE Jump everything is fine and is not blocked. I tried to redo it, the same commands do not help me. I dont need Output
  6. When I run from the menu, SCITE is blocked. How can I avoid this? This interferes a little with the development of the main script Perhaps the picture is not very clear, but all commands are disabled. This is how it should be.
  7. How can I remove a specific element? For example "UK". So that the loop now returns only two elements.
  8. I'm happy with ObjCreate. But is there anything to enumerate elements? Like For - In ?
  9. I can't solve my problem in the regular version?
  10. Yes > Variable subscript badly formatted.: And a lot of complaints here on the forum that this is a mistake in the help.
  11. It does not work for me. "_Notify_Size BEFORE _Notify_Locate" Everything remains the same. And the first element disappeared! #include "Notify_Test.au3" HotKeySet("{ESC}", "_Exit") _Notify_Size(200, 360, 400) ;~ _Notify_Size($iHeight = 40, $iMinWidth = 160, $iMaxWidth = 320) ; Set notification location _Notify_Locate(0, 2) ; Set Show time to 250 ms - note fast entry _Notify_Set(1, 0xAA0000, Default, "", True, 350) Global $aNotCID[5] $aNotCID[0] = _Notify_Show(0, "Title 1 asdf", "Message 1 asdf asd fasd dfg hdg dfghd gdgfdh dfgh dfg hdf") $aNotCID[1] = _Notify_Show(0, "", "Message 2" & @CRLF & "more Message 2") $aNotCID[2] = _Notify_Show(0, "Title 3", "Message 3") $aNotCID[3] = _Notify_Show(0, "", "Message 4" & @CRLF & "more Message 4") $aNotCID[4] = _Notify_Show(0, "Test", "Auto-retract", 1) While 1 Sleep(100) WEnd Func _Exit() Exit EndFunc
  12. Classic array creation method Local $aArray[4] $aArray[0] = "Jasper" $aArray[1] = "Beethoven" $aArray[2] = "Pinky" $aArray[3] = "Fidget" But what if I need several arrays from a file, and I don't know how many arrays there will be? Local $aArray1[4] Local $aArray2[10] Local $aArray3[6] Local $aArray4[2] Local $aArray...[...] How can I declare arrays at runtime? Maybe an array list whose length I can change? Is there another way to store such data?
  13. If the height is changed - "you can change it" When calculating the shift $iNotify_Y, the height $iNotify_Height is not taken into account and everything overlaps.
  14. Can the text size be adjusted here?
  15. I use Process Hacker, I see everything. All codes are in the examples above.
×
×
  • Create New...