Jump to content

Embedded help.


 Share

Recommended Posts

  • Developers

Ever considered your question is not clear enough after you already asked it now twice the same way in 2 different threads?

Edited by Jos

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

  • Moderators

ileandros,

All I can find is this. Any use? :)

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

ileandros,

All I can find is this. Any use? :)

M23

Posted Image

nah ;) It should help but im getting errors running the scripts their giving and they don't do and actions at my script.

This is my img check it out if it helps a bit more.

The second pics shows what exactly i want to do.

Posted Image

I want to make that browser withour having scroll.

And this is my Gui progg. It's a simple one i think :D

Posted Image

I feel nothing.It feels great.

Link to comment
Share on other sites

What's with those massive images?

Also, you have not even tried the relevant parts of the scripts that M23 pointed you to.

You have been posting about this project for a while now, and I have not smelt 1 single

whiff of effort on your part.

Here is the last of my input, it's just a hint

$oIE.document.Body.Scroll() = "No"

Do yourself a favour and do a bit of reading and experimenting, post code you have tried (runnable examples)

And lose those stupid pictures in favour of code tags.

Over and out.

AutoIt Absolute Beginners    Require a serial    Pause Script    Video Tutorials by Morthawt   ipify 

Monkey's are, like, natures humans.

Link to comment
Share on other sites

What's with those massive images?

Also, you have not even tried the relevant parts of the scripts that M23 pointed you to.

You have been posting about this project for a while now, and I have not smelt 1 single

whiff of effort on your part.

Here is the last of my input, it's just a hint

$oIE.document.Body.Scroll() = "No"

Do yourself a favour and do a bit of reading and experimenting, post code you have tried (runnable examples)

And lose those stupid pictures in favour of code tags.

Over and out.

What's the point posting a 400 lines script since this are the basics and these are what requiers to help me.???

Besides i don't know how to add a script :/

I'm asking for help dude relax. You can say it normaly so i will learn. I'm a newbie here that's why im posting.

If u don't want/know to help me simply ignore. I'm not making you to help me.

If u want to simply do it or ignore. Hard?

And as i said i tried that and didn't work for my script :/

Edited by ileandros

I feel nothing.It feels great.

Link to comment
Share on other sites

  • Moderators

ileandros,

You can add scripts within a post by using Code tags - put [autoit] before and [/autoit] after your posted code and then it looks like this:

; You even get pretty colours
$hTest = "Fred"

If u don't want/know to help me simply ignore. I'm not making you to help me.

If u want to simply do it or ignore. Hard?

And this sort of attitude will not win you many friends around here. :)

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

ileandros,

You can add scripts within a post by using Code tags - put

before and
after your posted code and then it looks like this:

; You even get pretty colours
$hTest = "Fred"

And this sort of attitude will not win you many friends around here. :)

M23

Well ur answer is much better dude and it shows me how to do it....

#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <WindowsConstants.au3>
#include <IE.au3>

Global $hGUI2 = 9999

gui1()

Func gui1()

$hForm1 = GUICreate("LB Radio", 674, 190, 195, 130)
$oIE = _IECreateEmbedded()
GUICtrlCreateObj($oIE,295,35,330,110)
$hButton1 = GUICtrlCreateButton("Play", 295, 150, 50, 25)
$hButton3 = GUICtrlCreateButton("Stop", 355, 150, 50, 25)
$hButton2 = GUICtrlCreateButton("Youtube", 40, 150, 80, 25)
$hButton4 = GUICtrlCreateButton("Exit", 545, 150, 80, 25)
$List1 = GUICtrlCreateCombo("", 40,40,150)
GUICtrlSetData(-1,"Plus Radio")
GUICtrlSetColor(-1,0x39045A)
$hGroup1 = GUICtrlCreateGroup("Radio List", 24, 16, 230, 170)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$hGroup2 = GUICtrlCreateGroup("Browser", 280, 16, 365, 170)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)




    While 1
        $aMsg = GUIGetMsg(1)
        Switch $aMsg[1]
            Case $hForm1
                Switch $aMsg[0]
                    Case $GUI_EVENT_CLOSE
                        ExitLoop

Case $hButton3
_IEAction($oIE,"Stop")


Case $hButton1
if GUICtrlRead($List1) = "" Then
MsgBox(0,"Error", "Select Radio from the List")
ElseIf GUICtrlRead($List1) = "Plus Radio" Then
_IENavigate($oIE,"http://live24.gr/radio/generic.jsp?sid=296",1)
$obj = _IEGetObjById($oIE,"l24player")
Endif
Case $hButton2
                        GUICtrlSetState($hButton2, $GUI_DISABLE)
                        gui2()
                EndSwitch
            Case $hGUI2
                Switch $aMsg[0] ; Now check for the messages for $hGUI2
                    Case $GUI_EVENT_CLOSE ; If we get the CLOSE message from this GUI - we just delete the GUI <<<<<<<<<<<<<<<
                        GUIDelete($hGUI2)
                        GUICtrlSetState($hButton2, $GUI_ENABLE)
                EndSwitch
        EndSwitch
    WEnd

EndFunc   ;==>gui1

Func gui2()

$hGUI2 = GUICreate("Youtube",800,600,200,50)
$oIE = _IECreateEmbedded()
GUICtrlCreateObj($oIE,10,10,780,580)
_IENavigate($oIE,"http://www.youtube.com/")
GUISetState(@SW_SHOW)

EndFunc
Edited by ileandros

I feel nothing.It feels great.

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