theAutoitSpammer Posted April 30, 2009 Posted April 30, 2009 (edited) I want to move a link in my desktop from one place to another. can somebody point me in the right direction? Al Edited May 4, 2009 by alram
Valuater Posted April 30, 2009 Posted April 30, 2009 http://www.autoitscript.com/autoit3/docs/f...ns/FileMove.htm8)
theAutoitSpammer Posted April 30, 2009 Author Posted April 30, 2009 http://www.autoitscript.com/autoit3/docs/f...ns/FileMove.htm8)I'm sorry I should said "within the desktop" (change the position coordinates)in pixels from (x,y) to (x1,y1)How do I select and drag it without knowing the original position
Moderators Melba23 Posted May 1, 2009 Moderators Posted May 1, 2009 alram, This was a lot easier than I thought it would be - once I found that the DeskTop is a ListView! So the normal Autoit commands work on the icons - which are ListViewItems within the DeskTop. This simple script will move the 'Recycle Bin' icon and then replace it:#Include <GuiListView.au3> #include <Array.au3> ; Get desktop handle $hDeskTop = ControlGetHandle( "Program Manager", "", "SysListView321" ) ; Save the listview items (icons) data to an array Global $aIcons[_GUICtrlListView_GetItemCount($hDeskTop)][3] For $i = 0 to _GUICtrlListView_GetItemCount($hDeskTop) - 1 ; Name $aIcons[$i][0] = _GUICtrlListView_GetItemText($hDeskTop, $i) $aPos = _GUICtrlListView_GetItemPosition($hDeskTop, $i) ; Left $aIcons[$i][1] = $aPos[0] ; Top $aIcons[$i][2] = $aPos[1] Next ; Show the icons and their positions _ArrayDisplay($aIcons) ; Look for the Recycle Bin and get its index $iIndex = _ArraySearch($aIcons, "Recycle Bin") ; Save its current position $iOld_X = $aIcons[$iIndex][1] $iOld_Y = $aIcons[$iIndex][2] ; Move it to a new position MsgBox(64, "Moving the Recycle Bin icon", "Press OK when ready to move!") _GUICtrlListView_SetItemPosition($hDeskTop, $iIndex, 500, 500) ; Wait a bit Sleep(5000) ; And move it back _GUICtrlListView_SetItemPosition($hDeskTop, $iIndex, $iOld_X, $iOld_Y) Over to you now.... :-) M23 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 columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Yashied Posted May 1, 2009 Posted May 1, 2009 Melba23, excelent example.5+ My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
Moderators Melba23 Posted May 1, 2009 Moderators Posted May 1, 2009 Yashied, Spasiba. M23 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 columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Yashied Posted May 1, 2009 Posted May 1, 2009 Yashied,Spasiba.M23 Correction: Spasibo My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
theAutoitSpammer Posted May 4, 2009 Author Posted May 4, 2009 Thanks Melba it works but the funny thing is that I was messing arround with the same functions before and I couldn't get them to work. I'll have to study your script and find my error. Thanks again Al
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now