Questions tagged [tchromium]

TChromium is a VCL control wrapping around the "Chromium" web browser.It is defined in the cefvcl.pas unit. It's included in the Delphi "Chromium Embedded project" by Henri Gourvest.

Websites:

128 questions
0
votes
1 answer

Delphi Chromium Embedded (TChromium) - Get script output

Is there a way in TChromium to get the output after running a script ? For instance, if i run this script below in Chrome's developer tools : document.getElementsByTagName('input') Chrome will output all input nodes in the page. How can i read…
delphirules
  • 5,259
  • 13
  • 43
  • 87
0
votes
0 answers

Delphi Chromium Embedded (TChromium) - How to mute all sounds?

Is there a way to prevent sounds to play when loading webpages in TChromium? In fact I want no sound to be played by my app.
delphirules
  • 5,259
  • 13
  • 43
  • 87
0
votes
0 answers

delphi xe8 + twebbrowser : how to use Jquery inside to communicate?

My goal is to create a delphi XE8 project (VCL or fireMonkey) that will interact with webbrowser. I want to use the power of JS (jquery) to access DOM, extract some data and send them back to delphi. I try to use twebbrowser and... any page gives me…
yarek
  • 8,962
  • 25
  • 93
  • 180
0
votes
1 answer

How to block a key in TChromium?

Here is my code : procedure PreKeyEvent(Sender: TObject; const browser: ICefBrowser; const event: PCefKeyEvent; osEvent: PMsg; out isKeyboardShortcut, Result: Boolean); begin if (event.windows_key_code = VK_CONTROL) or …
Kermia
  • 3,963
  • 11
  • 56
  • 104
0
votes
1 answer

Delphi Chromium Embedded CEF3: inspect element

I am using 2 TChromium components in my project. One to view my web project and one to view the developer tool associated. When I view the developer tool and move my mouse over an element declaration, the corresponding dom elements is highlighted…
Dino
  • 1,035
  • 2
  • 11
  • 31
0
votes
0 answers

How to click websites automatically on google, using Delphi WebBrowser Component

I am developing a software using Delphi. I have following elements. 1 Webbrowser 1 button 2 edit box. Edit1 : input for a keyword Edit2 : input for a website When I click the "button" it searches the entered keyword on Google. If the website…
Johnny
  • 1,415
  • 4
  • 22
  • 36
0
votes
0 answers

Cannot set jsflags in Delphi tchromium DCEF 3 component

I am using the Delphi XE5 TChromium component that ship with the DCEF 3 library. It works fine except when I am trying to load a url that makes extensive use of the javascript library. If I load the project in Chrome I can overcome the problem by…
user1536396
  • 435
  • 2
  • 7
  • 20
0
votes
2 answers

How to communicate with CEF via Sockets

How can I communicate with CEF via Indy Sockets through Remote debugging protocol? As described here: https://developers.google.com/chrome-developer-tools/docs/debugger-protocol
user3060326
  • 179
  • 2
  • 16
0
votes
0 answers

How can I save the current URL in a variable?

For minimize I use this code: if (url = 'exiting.exit') then Form1.Close; When my app minimizes, the url changed. After restore, I need to load the previous url. I want to save current URL to variable in my Delphi App with TChromium. How can I do…
LeeAttila
  • 75
  • 1
  • 6
0
votes
0 answers

Delphi TCromium run Delphi code from web button

This is really frustrating. I've downloaded TChromium from the following link: http://dcef3.googlecode.com/svn managed to install it and I have also managed to pass some data from delphi XE2 to my web page using some JavaScript. I am new to…
user1536396
  • 435
  • 2
  • 7
  • 20
0
votes
0 answers

I can't install Delphi Chromium Embedded rev. 306 on Delphi 7

So I downloaded the DCEF-R306 folder and placed it somewhere. I heard this wouldn't be the latest edition, that should be something called DCEF3, but I saw DCEF3 didn't have anything in the \bin folder so I decided to try this one. I'm quite new at…
0
votes
1 answer

TChrome Tabs Paint Error

I want do a Tabs for my TChromium. When i opening 2 or more Tabs, they look bad, like this: Please, help me to fix this problem :( Also, please, look at this theme - TChromium ChromeTabs Not Working Thanks P.s. If it means something, i have this in…
Priler
  • 55
  • 10
0
votes
1 answer

TChromium ChromeTabs Not Working

I want do a Tabs for my TChromium. I have this: Browsers: array[0..1000] of TChromium; And this ChromeTabs procedures: procedure TForm1.ChromeTabsActiveTabChanged(Sender: TObject; ATab: TChromeTab); var c:integer; begin for c…
Priler
  • 55
  • 10
0
votes
0 answers

TChromium DelphiXe3 On Resize It Getting Black

I have my own Form Resize function, but i have problem with TChromium component. When I'm trying to resize Form, TChromium's background color changing to black and blinking fast until resize process stops, instead of it must be white everytime. This…
Priler
  • 55
  • 10
0
votes
1 answer

How to pass custom parameter in TChromium

I'm interested if there's any way possible for a custom parameter to be sent with every request in TCHromium (DCEF3, with Delphi XE3). Like the "Send a ‘Do Not Track’ request with your browsing traffic" option in Google Chrome. Regards.
Eduard
  • 2,909
  • 5
  • 33
  • 57
1 2 3
8
9