Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

HelpMe With TrayTip



  • Please log in to reply
2 replies to this topic
snowmind
  • Members
  • 43 posts
  • Last active: Dec 19 2019 02:39 PM
  • Joined: 04 Oct 2012

Hy SmartGuys,

 

Is there a way to increase the width of traytip (Yellow Baloon)? :S . When I read a TXT file containing the information:

 

File.txt

-------------------------------------------------------------------------------------------------------------------------------------------------------

CALL222421 - SUPPORT ESPECIALIST - STATUS: OPEN - LASTUPDATE: 29/10/2015 10:23:00

CALL432123 - SUPPORT ESPECIALIST - STATUS: OPEN - LASTUPDATE: 29/10/2015 11:43:00

CALL434532 - SUPPORT ESPECIALIST - STATUS: CLOSE - LASTUPDATE: 23/10/2015 14:00:00

--------------------------------------------------------------------------------------------------------------------------------------------------------

 

 

The Code:

....................................................................................................................

Sleep, 1000

FileRead, Output_1, C:\Temp\File.txt

Sleep, 100

If (Output_1<>NULL)

Sleep, 500

#Persistent

TrayTip, ANALISYS, %Output_1%, 60000, 3

Sleep, 8000

TrayTip

.....................................................................................................................

 

 

 

 



JMeneses
  • Members
  • 161 posts
  • Last active: Oct 30 2015 02:10 PM
  • Joined: 17 Feb 2011
✓  Best Answer

See: http://autohotkey.co...age-1?hl=notify

#include Notify v0.4991.ahk
oNotify := "IW=48 IH=48 GC=0xFFFFA0 TC=Red MC=Blue GR=20 BR=24 SI=500"
FileRead, Output_1, % A_Scriptdir . "\File.txt"
If (Output_1<>NULL)
   idNotify := Notify("ANALISYS",Output_1,4,oNotify)




snowmind
  • Members
  • 43 posts
  • Last active: Dec 19 2019 02:39 PM
  • Joined: 04 Oct 2012

Tks....really help me ;)