Смотрите видео ниже, чтобы узнать, как установить наш сайт в качестве веб-приложения на домашнем экране.
Примечание: Эта возможность может быть недоступна в некоторых браузерах.
Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
Hi everyone. I am sure there is a simple snippet or method, but how do I update/set my browser version to the latest without using manually updating it in Project Maker?
I would like to be able to set this in the project settings or c# snippet.
Is the version usually set in the zpprofile...
Hi there. I am trying to restore a window of an instance via API that has been closed (after clicking X on Toolbar) rather than having to double click the instance thumbnail each time under the Instances tab in Zenno Poster. My code works fine (External exe separate to Zenno) however chrome...
Does anyone know the entry names of the zpcookie entries?
I managed to work out some of the entries, but unsure of the rest of them.
Domain ? Path ? Expires Value ? ? ? Priority ? Port ?
|...
Thanks for the reply. I can't find the option for Canvas / WebGL. I am using CEF (Chrome) as my browser. CAn this be done using a snippet?
The Ignore FRAME option I will try now but I will need to change this using C #. Do you have a snippet for changing this by any chance?
Thanks again
I'm having a major problem with 1 action in my project. Whenever I goto a URL after creating a new tab, after the page loads, I get a 'Action not executed' error.
I'm using the latest Zenno Poster 7.7.4.0.
Can anyone help?
Tried this but I get errors. Can anyone help?
textBox.KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if (e.KeyCode == System.Windows.Forms.Keys.Enter)
{
navigateToURL();
}
};
Thank you for your reply. I have tried to use the same logic to check if an element exists, but I get "Faulty Operation xxx of the action group id:"
Tab tab = instance.ActiveTab;
string criteria = "My Element";
int rCount = 0;
HtmlElementCollection results = null;
Top:;
results =...
I keep getting an error
I am checking if an element exists based on it's attribute value. If count is 0, I get thrown this error:
Here is my code:
HtmlElementCollection results = parent.FindChildrenByAttribute("span","innerhtml","chickens","text");
if (results.Count == 0)...
Thanks again. All I need to do now is save the table once I have data written to it. Is there a method to get the table contents to string value?
I have tried this but I get an error.
string CSVFile = @"C:\Test.csv"
string stream = project.Tables["leadTable"].ToString()...
Hi, I am trying to clear the Table in ZennoPoster rather than use the ZennoPoster action.
I try: project.Tables['leadTable'].Clear();
But this does not work. Can someone help?
Thanks
Hi, hoping someoine can help who has experience in running ZennoPoster/ZennoBox in Virtual Box.
I'm getting this error when trying to run any of my projects in Virtual Box. I have tried different browsers (Chromium Beta, Chrome, FireFox) but the error still happens when starting the browser...
Sorry, I should have explained it in more detail. I needed to have a different set of variables while testing in Project Maker so needed to check programmatically.
// Check Running Environment
string Environ = project. Context.ToString();
if (Environ.Contains("Manipulator"))
{
Running In...