Jump to content

The SEND command does not write all characters


Magni
 Share

Go to solution Solved by Jos,

Recommended Posts

Hello

I'm quite new in this making scripts, and have a issue that I can't solve.

In my script I have a variable called $Rooms1 with a URL (https://rooms-dgihusetvejle.azurewebsites.net/arr_map.html#?rooms=1&limit=11) as the value.

In line 20 I run the command "SEND ($Rooms1)", but when executet it does not write the # in the URL

Can anyone tell me how to solve this problem?

The hole scrift, see below :-)

best regards

Morten Magni

Global $Side2, $Side3, $Side4, $Rooms1, $Rooms2, $Rooms3, $Rooms4, $Rooms6

$Side2 = 1
$Side3 = 1
$Side4 = 0

$Rooms1 = "https://rooms-dgihusetvejle.azurewebsites.net/arr_map.html#?rooms=1&limit=11"
$Rooms2 = 0
$Rooms3 = 0
$Rooms4 = 0
$Rooms6 = 0

Sleep(1000)
Local $iPID = Run("C:\Program Files\Google\Chrome\Application\chrome.exe", "", @SW_SHOWMAXIMIZED)
Sleep(2000)
#åben ny fane specifik URL#
#Holdplan#
Send($Rooms1)
Sleep(1000)
Send("{ENTER}")
Sleep(200)
Sleep(2000)
#side 2#
Send("^t!dhttps://www.dgihusetvejle.dk/media/ccxodpjh/screen_1080x1920_fitnessbootcamp_jan2022.pdf{ENTER}")
Sleep(2000)
#Side 3#
Send("^t!dhttps://www.dgihusetvejle.dk/media/p1yngc1j/screen_1080x1920_smarttraining_jan2022.pdf{ENTER}")
#Side 4#
Send("^t!dhttps://www.dgihusetvejle.dk/media/vogpey13/screen_1080x1920_tapas.pdf{ENTER}")
Sleep(2000)
Send("{F11}")

While 1
    #Holdplan#
    Send("^1")
    Send("{F5}")
    Sleep(15000)
    #Side 2#
    While $Side2 = 1
        Send("^2")
        Sleep(10000)
        $Side2 -= 1
    WEnd
    #Holdplan#
    Send("^1")
    Sleep(15000)
    #Side 3#
    While $Side3 = 1
        Send("^3")
        Sleep(10000)
        $Side3 -= 1
    WEnd
    #Holdplan#
    Send("^1")
    Sleep(15000)
    #Side 4#
    While $Side4 = 1
        Send("^4")
        Sleep(10000)
        $Side4 -= 1
    WEnd
    $Side2 += 1
    $Side3 += 1
    $Side4 += 1
WEnd

 

 

Edited by Melba23
Link to comment
Share on other sites

  • Moderators

Magni,

Welcome to the AutoIt forums. When you post code in future please use Code tags - see here how to do it.  Then you get a scrolling box and syntax colouring as you can see above now I have added the tags. Thanks in advance for your cooperation.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Developers
  • Solution

... or better send the characters in RAW mode by specifying the appropriate parameter in send(). ;) 

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

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...