Jump to content

Tarayıcı Yapmak Istiyorum


hakanight
 Share

Recommended Posts

Merhaba.

Ben tarayıcı yapıcam.

Fakat internet explorer üzerine olmasını istemiyorum.

Chrome,firefox,opera gibi özgür ve kendi yapımım gibi olmasını istiyorum.

Eğer öyle birşey mümkün değil ise internet explorer yerine barii chrome gibi bir tarayıcı üzerine olabilirmi?

Teşekkürler.

Link to comment
Share on other sites

Merhaba.

Ben tarayıcı yapıcam.

Fakat internet explorer üzerine olmasını istemiyorum.

Chrome,firefox,opera gibi özgür ve kendi yapımım gibi olmasını istiyorum.

Eğer öyle birşey mümkün değil ise internet explorer yerine barii chrome gibi bir tarayıcı üzerine olabilirmi?

Teşekkürler.

 

Ah güzel kardeşim, keşke bu kadar basit olsa. Biliyor musun, AutoIT tarayıcı yazmak için geliştirilen bir programlama dili değil.

Link to comment
Share on other sites

#include <GUIConstants.au3>
#include <WindowsConstants.au3>

$Mozilla = ObjCreate("Mozilla.Browser") ; Get the Mozilla ActiveX instance
if Not IsObj($Mozilla) then
  Msgbox(0,"Mozilla","Can't find Mozilla ActiveX Control")
endif

; Create a simple GUI for our output
GUICreate ( "Embedded Mozilla Test", 640, 580,(@DesktopWidth-640)/2, (@DesktopHeight-580)/2 , $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS)
$GUIActiveX         = GUICtrlCreateObj      ( $Mozilla,      10, 40 , 600 , 360 )
$GUI_Button_Back    = GuiCtrlCreateButton   ("Back",     10, 420, 100,  30)
$GUI_Button_Forward = GuiCtrlCreateButton   ("Forward", 120, 420, 100,  30)
$GUI_Button_Home    = GuiCtrlCreateButton   ("Home",    230, 420, 100,  30)
$GUI_Button_Stop    = GuiCtrlCreateButton   ("Stop",    330, 420, 100,  30)

GUISetState ()       ;Show GUI

$Mozilla.navigate("abc")

; Waiting for user to close the window
While 1
    $msg = GUIGetMsg()

    Select
        Case $msg = $GUI_EVENT_CLOSE
            ExitLoop
        Case $msg = $GUI_Button_Home
            $Mozilla.navigate("abc")
        Case $msg = $GUI_Button_Back
            $Mozilla.GoBack
        Case $msg = $GUI_Button_Forward
            $Mozilla.GoForward
        Case $msg = $GUI_Button_Stop
            $Mozilla.Stop
    EndSelect

Wend

$Mozilla = 0
GUIDelete()

exit

http://www.brothersoft.com/mozilla-activex-control-download-78221-s1.html

 

dediğin gibi olurda

çok sağlıklı değil bazı linklere tıkladığında güvenlik soruları soruyor

yavaş ,ayrıca ie kadar sağlıklı sonuçlar vermiyor

Link to comment
Share on other sites

http://tympanus.net/Development/ModalWindowEffects/

peki bunu desteklemiyor misal bunu destekleyen firefox bir dll olması lazım galiba

dll belki değiştirirsek çalıştırır

haklı olabilirsin , başka tarayıcı yada bir dll bulsak süper olacak

artık bende ie den kurtulmak istiyorum yeni değilde ei8 hiç destek vermiyor yukarıdaki örneği

ei9 w7 ve üstü için geçerli işte bakalım

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...