Jump to content

Crome_BAD

Active Members
  • Posts

    169
  • Joined

  • Last visited

About Crome_BAD

  • Birthday 11/04/1987

Recent Profile Visitors

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

Crome_BAD's Achievements

Prodigy

Prodigy (4/7)

0

Reputation

  1. hey guys, just messing around with autoit, and i decided id give it a shot to program a Yahoo! Messenger status changer that would change when i listened to a song (Similar to YStatusRevolution). After searching online, ive come across a way to do it, but i need to "refresh" yahoo to reflect the changes. Here is the original C code i believe // Find the yahoo messenger window and sent it the notification // 0x111: WM_COMMAND // 0x188: Code 392 IntPtr hWndY = FindWindow ("YahooBuddyMain", null); System.Diagnostics.Debug.WriteLine ("Find window got: " + hWndY.ToString()); PostMessage (hWndY, 0x111, 0x188, 0); How would i do this? EDIT: Didnt see the sendmessage.au3 added in. Sorry guys. I figured it out!
  2. I use to play music in a chat room, and i was trying to simulate music being played from a cd player on the input or mic line.
  3. Hm, ill give it a shot guys. Im on Vista, sooo it doesnt have the traditional sound board, which im use to, lol
  4. No, im not using either. I believe i found a plugin for Winamp that can do this...hopefully it works.
  5. Ive looked, and havent found them. I use to own a chat room, but i had a old cd player plugged into my input, and was using that as my sound. What id like to do is play sound off of lets say winamp, and make it simulate it on the input line or even my mic line so that it can be heard.
  6. Hey guys, im trying to build a little program to play music, and instead of playing it through the speakers, id like to re-route the sound into the "input" so i can use it in chat rooms as a "mic". Hopefully it can be done, and hopefully you guys understand what im looking for, haha. Crome
  7. Hmmmm, no. Let me check it out. EDIT: AHH! That works great. Thanks alot, and im sorry for the question. Ive never used hotkeys for them. Thanks alot!
  8. Ya there is software that came with it, but i would like to make my own, that i could tell if winamp or WMP is open, and convert the click over inside. Laptop: HP Pavilion dv9720US
  9. Hey everyone, its been a long time since ive posted I have a question, that i think i know the answer to, but thought id ask anyways. I have a laptop with a "media strip" on the top. (Rewind/Play and Pause/Forward/Stop and mute) I also use Winamp. I was looking through the forums, and saw a really nice winamp UDF i believe, and was wondering, where my media strip only works inside windows media player, if i could write a little script to work with winamp. Now, if you dont see my question through my jibberish: Q: Is there a way i can capture presses through my "media strip"? Thanks for looking, and possibly the help im looking for Crome
  10. ;----------- ; Include ;----------- #include <A3LNetShare.au3> #include <GUIConstants.au3> ;----------- ; Globals ;----------- Global $Tab[2] Global $Input[2] Global $Button[2] Global $hwnd[3] $hwnd[1] = 300 $hwnd[2] = 150 ;----------- ; GUI ;----------- $hwnd[0] = GUICreate("Brians NetShare v0.1", $hwnd[1], $hwnd[2]) GUICtrlCreateTab(5, 5, 290, ($hwnd[2] - 10)) $Tab[0] = GUICtrlCreateTabItem("Share") $Input[0] = GUICtrlCreateInput("", 15, 35, 200, 20) $Input[1] = GUICtrlCreateInput("Share Name Here", 15, 65, 200, 20) GUICtrlSetState(-1, $GUI_DISABLE) $Button[0] = GUICtrlCreateButton("Browse..", 220, 35, 60, 20) $Button[1] = GUICtrlCreateButton("Share!", 95, 110, 100, 20) GUISetState() While 1 Sleep(10) $GUIMsg = GUIGetMsg() Select Case $GUIMsg = -3 Exit Case $GUIMsg = $Button[0] SelectFolder() Case $GUIMsg = $Button[1] Check(GUICtrlRead($Input[1])) CreateShare(GUICtrlRead($Input[1]), GUICtrlRead($Input[0])) EndSelect WEnd ;----------- ; Functions ;----------- Func Check($sName) $Check = _NetShare_ShareCheck(@ComputerName, $sName) EndFunc Func CreateShare($sName, $sDir) $sInfo = _NetShare_ShareAdd(@ComputerName, $sName, 0, $sDir) EndFunc Func SelectFolder() $TextInput = FileSelectFolder("Select Folder To Share...", "C:\") GUICtrlSetData($Input[0], $TextInput) GUICtrlSetState($Input[1], $GUI_ENABLE) EndFunc There it is, Im still unsure as to why, and i am running under admin of the computer.
  11. Hey guys, im trying to make a share program, because with my network, its hard to tell other how to do it. So, i thought id make a program that they could do on there own. My question: _NetShare_ShareCheck returns -1 regardless of what i put in! EVEN if i put in a already used name. Am i missing something? I can put the code in if its needed. Im just stumped as to why it returns -1 all the time..
  12. Hey guys, after a long time offline, i have set my TeamSpeak server backup. But whats a teamspeak server without a music channel!? I have seen programs that can "stream" music into different soundcards (i.e. Ventrilo is capable of doing this). I was wondering if AutoIT has the capabilities of choosing which soundcard i want to send my music through, and if i was to be able to stream music through it.
  13. Hey guys, i have a question about DLL Call. The code from MSDN: ULONG HttpInitialize( HTTPAPI_VERSION Version, ULONG Flags, PVOID pReserved ); Parameters Version [in] HTTP version. This parameter is an HTTPAPI_VERSION structure. For the current version, declare an instance of the structure and set it to the pre-defined value HTTPAPI_VERSION_1 before passing it to HttpInitialize. Flags [in] Initialization options, which can include one or both of the following values. Value Meaning HTTP_INITIALIZE_CONFIG Perform initialization for applications that use the HTTP configuration functions, HttpSetServiceConfiguration, HttpQueryServiceConfiguration and HttpDeleteServiceConfiguration. HTTP_INITIALIZE_SERVER Perform initialization for applications that use the HTTP Server API. pReserved [in, out] This parameter is reserved and must be NULL. How would i call this within AutoIt IF i have the httpapi.dll that is required. Would i call it like this? DllCall(".\httpapi.dll", "long", "HTTP_INITIALIZE_SERVER") Or? Crome
  14. Well, i play this game. It depends on what you want to do? I made a program to auto-right click b/c it becomes a tedious job And with a darklord, it takes 100000000000 click to even reach lvl 350 sooooooo Let me kno what you want to do, ill see if i can help. @TK: That would work. But its pointless to have 2 exe's. Ill post what i have. Dim $StartRightClick = 0 HotKeySet("{F5}", "RightClickCall");On/Off HotKeySet("{F6}", "MyExit");Exit While 1 Select Case $StartRightClick = 1 MouseClick("right") EndSelect Sleep(10) WEnd Func RightClickCall() Select Case $StartRightClick = 0 $StartRightClick = 1 Case $StartRightClick = 1 $StartRightClick=0 EndSelect EndFunc Func MyExit() Exit EndFunc Lets see if we can figure this out
  15. Hey guys, im going back and forth between acouple apps and well now im onto my cdburning app. I cant figure out how to find my cdburners burning speeds....it would be nice to find them... Anyways, any ideas? Crome
×
×
  • Create New...