GMan Well-Known Member Licensed User Longtime User Apr 13, 2020 #1 Is there the choice to copy some plain text with a Click to the Clipboard ? Regards g-Man
I inakigarm Well-Known Member Licensed User Longtime User Apr 13, 2020 #3 https://www.b4x.com/b4j/help/jfx.html#clipboard B4X: fx.Clipboard.SetString("Text to be copied to Clipboard") Upvote 0
https://www.b4x.com/b4j/help/jfx.html#clipboard B4X: fx.Clipboard.SetString("Text to be copied to Clipboard")
GMan Well-Known Member Licensed User Longtime User Apr 14, 2020 #4 Thx so far - i tried that B4X: fx.Clipboard.SetString(B4XFloatTextField1.Text) but with no effects Upvote 0
GMan Well-Known Member Licensed User Longtime User Apr 14, 2020 #5 OK, i solved in in another way: B4X: Textarea.Text = File.ReadString(File.DirAssets, "LCDScreen_Sketch.txt") fx.Clipboard.SetString(Textarea.Text) Upvote 0
OK, i solved in in another way: B4X: Textarea.Text = File.ReadString(File.DirAssets, "LCDScreen_Sketch.txt") fx.Clipboard.SetString(Textarea.Text)
I inakigarm Well-Known Member Licensed User Longtime User Apr 14, 2020 #6 GMan said: Thx so far - i tried that B4X: fx.Clipboard.SetString(B4XFloatTextField1.Text) but with no effects Click to expand... Works for me... Upvote 0
GMan said: Thx so far - i tried that B4X: fx.Clipboard.SetString(B4XFloatTextField1.Text) but with no effects Click to expand... Works for me...
GMan Well-Known Member Licensed User Longtime User Apr 14, 2020 #7 Yo, don't know what was wrong here. But works now - thank you for your tips Upvote 0