Search found 89 matches

by Yatendra3192
12 Apr 2019, 11:55
Forum: Ask for Help (v1)
Topic: AHK to modify CSS value of web page on chrome
Replies: 0
Views: 573

AHK to modify CSS value of web page on chrome

Hi All, I'm struggling with a task I can do it in chrome inspect window easily but have no idea how to use the AutoHotkey to automate it. I have a web page where page style has an elemant .main_image_selected{box-shadow: 0 0 0 10000px #fff; I want it to update it to .main_image_selected{box-shadow: ...
by Yatendra3192
23 Mar 2019, 11:32
Forum: Ask for Help (v1)
Topic: Update CSV every min instead of blocks
Replies: 1
Views: 457

Update CSV every min instead of blocks

Hi, I'm using below code to record active and idle pc time script is working fine and recording the time in active and idle time in blocks. it updates the CSV whenever the state is changed from active to idle of idle to active it all good but I'm facing a minor issue for example if the user is activ...
by Yatendra3192
10 Feb 2019, 04:59
Forum: Ask for Help (v1)
Topic: Read INI File If word found run the script else exitapp Topic is solved
Replies: 2
Views: 735

Read INI File If word found run the script else exitapp Topic is solved

Hi, I'm trying to create an AHK script which Checks SETTINGS.INI file and if Password=Iksula Found it will run A msg box and web address else it will do nothing. Below is the code I have created to do this task but not able to get it to work properly If I change the Password value to something else ...
by Yatendra3192
22 Jan 2019, 00:54
Forum: Ask for Help (v1)
Topic: Send highlighted text to the input box of web form
Replies: 1
Views: 634

Send highlighted text to the input box of web form

Hi, I have this very useful code for copying highlighted text and put it in a defined excel column. The code is working fine with excel sheet but I want to use it for web form filling. On pressing 1 highlighted text copied in 1st excel column I want to modify this code so that on pressing 1 highligh...
by Yatendra3192
18 Jan 2019, 01:48
Forum: Ask for Help (v1)
Topic: how to use xlApp ComObjActive("Excel.Application") for WPS spreadsheet
Replies: 0
Views: 631

how to use xlApp ComObjActive("Excel.Application") for WPS spreadsheet

Hi, have found a very useful code for copying highlighted text and put it in a defined excel column. The code is working fine with excel sheet but some of my friends use WPS spreadsheet how can I modify below code to be used in WPS spreadsheet 1:: 2:: 3:: Column := A_ThisHotkey + 0 ; force this to b...
by Yatendra3192
11 Jan 2019, 02:25
Forum: Ask for Help (v1)
Topic: How to create break time chart in PHP or any plugin suggestion
Replies: 0
Views: 535

How to create break time chart in PHP or any plugin suggestion

I have been struggling with creating a more advanced Gantt chart with PHP than the simple Stacked Bar Chart that is typically used in the examples I have seen in the web. For my example I would like to group multiple rows for the and entity on one row of the final Gantt. See the example data below: ...
by Yatendra3192
05 Jan 2019, 03:42
Forum: Ask for Help (v1)
Topic: Suggestion to improve the code
Replies: 4
Views: 960

Re: Suggestion to improve the code

That is some very High-level coding skills you have to make this tool.

I've just started to learn AHK and have no knowledge of any other coding language.

So any improvement points which can help my script perform better would be greatly appreciated.
by Yatendra3192
05 Jan 2019, 03:09
Forum: Ask for Help (v1)
Topic: Suggestion to improve the code
Replies: 4
Views: 960

Re: Suggestion to improve the code

Hi SL5, Basic use of this script is to capture active and Idle time of the computer user in a CSV file. in the above script, I have put together some function which will also send the send the data to MySQL server If you want You can test it with below script #SingleInstance force #InstallKeybdHook ...
by Yatendra3192
05 Jan 2019, 02:29
Forum: Ask for Help (v1)
Topic: Suggestion to improve the code
Replies: 4
Views: 960

Suggestion to improve the code

Hi All, With the help of this AutoHotkey community, I have created a time tracking script. The script is working as expected but I want a suggestion from you experts if I can improve anything in it. You might see your own code in this script lot of copy paste is been done there :lol: apologies for a...
by Yatendra3192
22 Dec 2018, 05:03
Forum: Ask for Help (v1)
Topic: How to download image link with % sign? Topic is solved
Replies: 5
Views: 1193

Re: How to download image link with % sign? Topic is solved

Thank you garry, for the detailed explanation. your suggestion will be helpful in the future.
by Yatendra3192
22 Dec 2018, 02:12
Forum: Ask for Help (v1)
Topic: How to download image link with % sign? Topic is solved
Replies: 5
Views: 1193

How to download image link with % sign? Topic is solved

Hi All,

How can we download image link with % sign?

Code: Select all

UrlDownloadToFile, https://images-na.ssl-images-amazon.com/images/I/716zuSk%2BQsL._SL1500_.jpg, E:\Users\user1\Desktop\NOON TEST\5.jpg
with this code i'm getting error This parameter contains a variable name missing its ending percent sign.
by Yatendra3192
28 Oct 2018, 04:24
Forum: Ask for Help (v1)
Topic: Count the Elements By Class Name and show in msg box Topic is solved
Replies: 2
Views: 621

Count the Elements By Class Name and show in msg box Topic is solved

HI All, I'm trying to write a script which runs on the active browser window and Count the ElementsByClassName and show the count in a Msg box. the webpage containes boxes ( Class Name "main_image_rectangle") https://i.imgur.com/43N8JCS.jpg I can get the Count by console window. is there a way to ge...
by Yatendra3192
20 Sep 2018, 08:47
Forum: Ask for Help (v1)
Topic: How to sum and divide result to show in GUI Topic is solved
Replies: 3
Views: 782

Re: How to sum and divide result to show in GUI Topic is solved

wolf_II also solved it for me with this

Code: Select all

LV_Delete()
    For Date, Records in TT {
         Result := (Records.Active + Records.NotActive) / 60
        LV_Add("", ID, Date, Records.Active, Records.NotActive, Result)
    }
AHK community is awesome you guys are so nice and very helpful :clap:
by Yatendra3192
20 Sep 2018, 07:24
Forum: Ask for Help (v1)
Topic: How to sum and divide result to show in GUI Topic is solved
Replies: 3
Views: 782

Re: How to sum and divide result to show in GUI Topic is solved

able to get so far by modifying wolf_II code #NoEnv #SingleInstance, Force SetWorkingDir, %A_ScriptDir% Totalhr = %Bool% + %Value% / 60 myFile = ( "Date","Username","Computername","State","Minutes at State","State Start time" "12-17-2017","YATENDRA","YATENDRA-PC","Active","1","06:14 AM" "12-29-2017"...
by Yatendra3192
20 Sep 2018, 06:47
Forum: Ask for Help (v1)
Topic: How to sum and divide result to show in GUI Topic is solved
Replies: 3
Views: 782

How to sum and divide result to show in GUI Topic is solved

Hi can anyone help me with how to modify below script to show the result in the last column? Result = (Active + Not Active / 60) Active min of that day + Not Active min of that day divided by 60 #NoEnv #SingleInstance, Force myFile = ( "Date","Username","Computername","State","Minutes at State","Sta...
by Yatendra3192
05 Apr 2018, 00:59
Forum: Ask for Help (v1)
Topic: How to connect to Network drive/server with user password
Replies: 4
Views: 1478

Re: How to connect to Network drive/server with user password

Hi BoBo, Nice to hear from you again. I just want to login to the drive form the system I run the script. Manually it's working fine, I'm not able to do it with the script might be there some kind of mistake in it. Below are the details of connection parameters. Server address- \\192.123.2.123\micro...
by Yatendra3192
04 Apr 2018, 12:07
Forum: Ask for Help (v1)
Topic: How to connect to Network drive/server with user password
Replies: 4
Views: 1478

Re: How to connect to Network drive/server with user password

anyone for help
it's being vary hard for me to do
i have spent all day looking for it
i fond below fro maping the drive
but i just ned to connect it

Run %comspec% /c net use x: \server\share password /USER:domain\user

how to modify this ?

Go to advanced search