Jump to content

how to make number a letter


eyal159
 Share

Recommended Posts

Very nice, the only thing is you can't go from 1 to 26.

#include <MsgBoxConstants.au3>

Local $sText = ""
For $i = 65 To 122
    $sText = $sText & Chr($i)
Next
MsgBox($MB_SYSTEMMODAL, "Uppercase + Lowercase alphabet", $sText) ; Display the characters between 65 to 90.
MsgBox(64, 'Letter A', Chr(65))

 

Edited by careca
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Link to comment
Share on other sites

Just now, eyal159 said:

and another quastion , if for example i have somthing in copy and i wanna paste it into a 

and another quastion , if i got number on the screen at ,648,594 for example and i wanna copy it and update one of my virables into it . $Amount , how can i do that  ? 


 

Link to comment
Share on other sites

$Amount  = 648.594

Come on, a poor question warrants a poor response.

Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Link to comment
Share on other sites

13 minutes ago, careca said:

$Amount  = 648.594

Come on, a poor question warrants a poor response.

i dont think you understood what i was trying to say ,  basicly i have text on the screen at 1274,765 and i wanna get this text into $amount . 

how can i do that . becuse when i do $Amount  = 1274.765 and then send($amount) it gives me 1274.765 and i wanna have whatever on the screen at that point . ty alot ! 

 

 

Link to comment
Share on other sites

You have to know the window and the control, using the info tool for example.

EDIT: oh wait, i see now, 1274,765 are coordinates. I thought it was just a value.

Still, what is the window and control? Or is it a web page or something?

Edited by careca
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Link to comment
Share on other sites

30 minutes ago, careca said:

You have to know the window and the control, using the info tool for example.

EDIT: oh wait, i see now, 1274,765 are coordinates. I thought it was just a value.

Still, what is the window and control? Or is it a web page or something?

thats a web page (website)

Link to comment
Share on other sites

I think the best way is IE functions, give it the id and it's done. No need for the coordinates.

Im not sure i never used it much, maybe try with something like this:

https://www.autoitscript.com/autoit3/docs/libfunctions/_IEGetObjById.htm

 

Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Link to comment
Share on other sites

46 minutes ago, careca said:

I think the best way is IE functions, give it the id and it's done. No need for the coordinates.

Im not sure i never used it much, maybe try with something like this:

https://www.autoitscript.com/autoit3/docs/libfunctions/_IEGetObjById.htm

 

2

ok so after trying i have few questions aggin:)

1 ) how do i find the object Id ? (the name)

2) what am i suppost to write as the object ? the URL (using chrome if it matters) ty alot .1  

Link to comment
Share on other sites

In most browsers, you can right-click and the desired element and then select "Inspect" from the popup menu to open the developer tools with the desired element already highlighted. You can read more on Chrome's Dev Tools here. You may want to look into the WebDriver UDF for Chrome automation (see my sig).

Link to comment
Share on other sites

19 hours ago, Danp2 said:

In most browsers, you can right-click and the desired element and then select "Inspect" from the popup menu to open the developer tools with the desired element already highlighted. You can read more on Chrome's Dev Tools here. You may want to look into the WebDriver UDF for Chrome automation (see my sig).

hey , http://prntscr.com/l6dyo6 , just to make sure. the id is inputiRandomCardNumber? 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...