Jump to content

WalkHappy

Members
  • Posts

    8
  • Joined

  • Last visited

WalkHappy's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hello, I'm in the process of recreation-ally expanding my Auto-it experience for some future awesome presentation-Al capabilities. So I have a user interface which loads a text document onto a GUI-object. The variables of this function are 1) The text document is dynamic in font size and face; giving the viewer an unpredictable horizontal/vertical scroll dimension. 2) The main objective is to animate the vertical scroll-bar so that it moves like the end of a movie with accreditation. 3) I'm trying to limit the accessibility in observation by excluding any mouse functions within the animation process. Any help would be greatly appreciated! Been trying to work on this for days now - from getting element properties, to embedding external code, and even exploiting ("$oIE.navigate") to loading several awkwardly formatted text documents in sequential order just to imitate a slightly offensive animation scheme. Anyways... Suggestions and comments welcomed please!! Script is from [Function GUICreate] - Doc: GUICreate("Embedded Web control Test", 640, 580, (@DesktopWidth - 640) / 2, (@DesktopHeight - 580) / 2, BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS, $WS_CLIPCHILDREN)) GUICtrlCreateObj($oIE, 10, 40, 600, 360) $idButton_Back = GUICtrlCreateButton("Back", 10, 420, 100, 30) $idButton_Forward = GUICtrlCreateButton("Forward", 120, 420, 100, 30) $idButton_Home = GUICtrlCreateButton("Home", 230, 420, 100, 30) $idButton_Stop = GUICtrlCreateButton("Stop", 330, 420, 100, 30) GUISetState(@SW_SHOW) ;Show GUI After this.. This is the window that pop's-up:
  2. oh no i need to delete this post, i meant to reply to someone else thread
  3. Is there a way to generate a random from a pool of numbers? [1,3,5,7] rather than (1-10)
  4. Is there anything you can do to this code to prevent using duplicate characters? Thanks
  5. Thank you thank you Ive been stuck on this for hours.. hopefully it wont lead into days lol I'll return with results
  6. I'm not sure which function I should use to remove colors? Converting to blackandwhite was super easy but I need something that could alter the image more I was taking a look at these two functions : FreeImage_SetTransparent FreeImage_Composite Could anyone explain exactly what these do? Or please give some examples? If you've ever used photoshop, this is what I'm trying to edit Thanks,
  7. oh sorry i totally forgot the _FreeImage_SaveU _FreeImage_Unload Ill come back with future questions
  8. I need help converting an image to greyscale #include <FreeImage.au3> $pDIB = "image01.bmp" _FreeImage_ConvertToGreyscale($pDIB) This code doesn't seem to do anything
×
×
  • Create New...