Activity Feed
Created a new thread: execute button
HtmlDocument document = webView21.Document;
string scriptName = "GetText";
object[] args = new string[0];
object obj = document.InvokeScript(scriptName, args);
string script = obj.ToString();
API.Execute(script);
How can i do this with webVeiw2?
Created a new thread: Adding monaco to winform
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace idk yet
{
public partial class dev : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Url = new Uri(string.Format("file:///{0}/Monaco/Monaco.html", Directory.GetCurrentDirectory()));
}
}
}
when i try to do this all it does is warn me about script errors and once I press ok on all of them monaco doesnt show up. So can anyone help me fix this?
Created a new thread: How to make themes
Hello I've been working my executor and was wondering how to make themes so it changes the color I selected on a combo box but I'm open for suggestions.
Created a new thread: scripting a executor with Ace
How do i make a listbox that works with ace. Also how do i make a Save/Open file with it.
Replied to thread: syntax hoghlighting for fastcoloredtextbox
@0x777_ If you don't mind me asking why is Monaco better
Replied to thread: syntax hoghlighting for fastcoloredtextbox
@0x777_ which is better ace or monaco in your opinoin?
Created a new thread: Ping/Latency local script for a screen gui
So ive been trying to make a ping local script like i did for my Fps script but everything ive been trying nothing has worked
The Fps script:
local fps = 0
local rs = game:GetService("RunService")
rs.RenderStepped:Connect(function()
fps = fps + 1
end)
while true do
script.Parent.Text = "FPS: "..fps
fps = 0
wait(1)
end
Created a new thread: syntax hoghlighting for fastcoloredtextbox
How do make a syntax highlighting like Oxygen on synapse. This is what i got so far but it dosnt look good so i was wondering if there was anything better
fastColoredTextBox1.Language = FastColoredTextBoxNS.Language.Lua;
Replied to thread: How to make textbox in a kind of key system on a windows form app
@0x777_ ty it worked perfectly
Created a new thread: How to make textbox in a kind of key system on a windows form app
this is what i got so far but it just open the form even tho i didnt type anything
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text != "coco")
{
Form1 form = new Form1();
form.Show();
this.Hide();
}
else
MessageBox.Show("Wrong key");