Jump to content

gero

Members
  • Posts

    12
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

gero's Achievements

  1. I updated the code and put it to credit with the 5 key, I left the screen resolution free to be changed and made some improvements to the code space invaders v3-.au3
  2. I got a way to increase the volume here, I need to do the same thing with the auxiliary sound output because I'm going to use a bluetooth there and I need to decrease the sound or disable the port #include <WinAPI.au3> #include <WindowsConstants.au3> #include <controle_volume.au3> ;############## Controla Volume Inicio ############## ; Caminho para o arquivo nircmd.exe Local $nircmd = _nircmd(True) ; Obter o volume atual $volume_atual = Run($nircmd & " changesysvolume 0") ; Verificar se o volume é diferente de 65535 -> (volume máximo 100%) If $volume_atual <> 64882 Then ;64882 equivale ao volume "99" GetAuxiliaryPortVolume() EndIf Func GetAuxiliaryPortVolume() ; Aumentar o volume para 100% Run($nircmd & " setsysvolume " & Int(65883)) ;Ajusta o volume para 99 EndFunc ;==>Aumenta_Volume controle_volume.au3
  3. I need help to make it work by disabling and enabling the auxiliary port on the motherboard in Windows 7
  4. #include <Constants.au3> #include <WinAPI.au3> Global $sHardwareID = "ACPI\PNP0C02\1" ; ID do hardware da porta ACPI Global Const $DICS_ENABLE = 0x0 Global Const $DICS_DISABLE = 0x1 ; Desativa o dispositivo correspondente ao hardware ID Func DisableDevice($sHardwareID) Local $hDevInfo, $i, $tSPDevInfoData, $bResult ; Obtém a lista de dispositivos presentes no sistema $hDevInfo = _WinAPI_SetupDiGetClassDevs($tagGUID_DEVCLASS_SYSTEM, Null, Null, $DIGCF_PRESENT) If $hDevInfo = $INVALID_HANDLE_VALUE Then Return False EndIf ; Procura pelo dispositivo com o hardware ID correspondente $i = 0 Do $tSPDevInfoData = _WinAPI_GetDeviceDataStruct($hDevInfo, $i) If _WinAPI_DevicePropertyString($tSPDevInfoData, $SPDRP_HARDWAREID) = $sHardwareID Then ; Desativa o dispositivo encontrado $bResult = _WinAPI_SetupDiSetDeviceState($hDevInfo, $tSPDevInfoData, $DICS_DISABLE, $DICS_FLAG_GLOBAL) ExitLoop EndIf $i += 1 Until _WinAPI_SetupDiGetDeviceData($hDevInfo, $tSPDevInfoData) _WinAPI_SetupDiDestroyDeviceInfoList($hDevInfo) Return $bResult EndFunc ; Desativa o dispositivo com o hardware ID especificado DisableDevice($sHardwareID)
  5. I'm doing a project that I need to enable and disable the auxiliary port on the motherboard in Windows 7 or higher on the PC in the case of the blue input above the sound one, I need help to do this. help to do this Teste_Som.au3 controle_volume.au3
  6. I made this modification that was perfect for me, I modified the password window and modified the 5 chances of putting the password and the way to verify. thanks to everyone who helped
  7. @ad777 your code solved my problem, I was able to adapt it to what I was needing, thank you very much
  8. I already edited and translated thanks for the warning
  9. I need help to do this I want that when running the script it gives 5 chances to type the right password when typing the right password it registers and restarts when restarting already registered it does not ask for the password anymore this part is working just missing the 5 chances to enter the password if anyone can help thank you
  10. I have a problem that when adding the files that have some special character type # in the name they do not appear in the list I wanted these special characters to be removed when showing the name in the list can anyone help? $ lista_pastas = _StringExplode ($ lista_pastas, "#", 0) _ArraySort ($ lista_pastas, 1,1,1) $ conta_cds = UBound ($ lista_pastas) $ total_cds = $ conta_cds - 1 $ qtde_casas = StringLen ($ total_cds) If $ qtde_casas <2 Then $ qtde_casas = 2 If $ total_cds> = 1 Then selecionar_cd ($ lista_pastas [1], 1) Else MsgBox (4096, "ERRO!", "Não foram encontrados cd's no catálogo indicado!", 3) Sair EndIf
  11. problem solved
  12. Estou editando esse código da jukebox, está quase funcional, minha dificuldade é cancelar a parte da lista de espera. Se eu apenas fechar o guia de vídeo, ele está fechando o guia do programa? Alguém pode ajudar com isso? problem solved
×
×
  • Create New...