0
Under review

Do no use third party Keyboard

Chamiu_IT 8 years ago in iPhone updated by Alexander Blach (Developer) 8 years ago 1

I installed ATOK for iOS.

Textatic do not display keyboard. I do not input.

0

Make it possible to open folder from Readdle's Documents

Khanh Le 8 years ago in General updated by Alexander Blach (Developer) 8 years ago 1

Current, I can only open single file from Readdle's Documents using the document picker. Please make it possible to open a folder similar to how it work with Working Copy.

0
Under review

Using Emmett to select edit points and items

trinsic 8 years ago in General updated by Alexander Blach (Developer) 8 years ago 1

Hi thank you for including Emmets into the new version it's works great the way you designed it. I was wondering if you included a way to select edit points and items to make it easy to select tags and move to edit points so you can delete or change surrounding tags. The emmet's version in notepad++ has this capability and makes it very easy for me to update and change code. If this is not included can I make a request for a feature if that is possible to do on a mobile device? I use an external Logitech keyboard k480 and it works great so far with textstatic

0
Under review

javascript ausführen auf iPad3

blackroy 9c 8 years ago in iPad updated by Alexander Blach (Developer) 7 years ago 3

Werte Community,


wie kann ich javascript code ausführen, innerhalb von Textastic?


console.log('hallo');


Den "run" Button habe ich bereits entdeckt, dieser ist aber nicht erreichbar da die Tastatur des iPad diesen verdeckt, sobald man in dessen Textfeld tippt.


Vielen Dank


Mit freundlichen Grüßen

Jens

0

On-screen Trackpad

Ryan Bailey 8 years ago in iPad 0

Similar to the implementation for the application, "Screens". You enable "trackpad mode", and the entire screen works as a touchpad. For instance, using only the bottom right edge of the screen you could move and manipulate the 'cursor' all of the way across the screen like you would on any other trackpad, and tapping on the screen would then register a "click". This prevents people from having to work to tap in the exact right spot on a line

0

Cursor Has Delay When Pressing Around

foreyez 8 years ago in iPhone updated 8 years ago 0

I've noticed that when I press around a document the cursor does not immediately go to its spot. There's about a 200ms delay.

1. Click somewhere on your document, the keyboard will be shown.

2. Now just press around in different areas of the document, you'll see there's a 200ms delay or so from the time that you press to the time that the cursor goes to that position.


This doesn't happen in iOS 'Notes' for example, where the cursor moves immediately as you press.

0
Answered

Textastic 6 für iPad öffnet keine Javascript (.js) Datei von Googledrive

blackroy 9c 8 years ago in iPad updated by Alexander Blach (Developer) 8 years ago 1

Liebe Community,


beim Versuch eine .js-Datei von GoogleDrive zu öffnen sind diese Dateien ausgegraut und lassen sich dementsprechend nicht öffnen. Txt-Dateien sind normal sichtbar und lassen sich auch öffnen. Ich habe den Editor aber gekauft um Javascript-Dateien zu öffnen und zu bearbeiten.


Der Entwickler wirbt explizit mit Javascript-Unterstützung.


Im manual habe ich auch keinen Hinweis gefunden.


Für einen Tip wäre ich sehr dankbar.


Viele Grüße

jens

0
Under review

Persist undo past "download latest"

Tony Meyer 8 years ago in General updated by Alexander Blach (Developer) 8 years ago 1

99.9% of the time, I love having the warnings for up/download set to "always" not prompt. Then 1 time in 1000, I bump "download" instead of "upload", frantically hit "cancel", and am always too late (at 'best', I end up with a partial download), and say goodbye permanently to whatever I had done.


If the entire contents of the file could be put into the undo history as the 'previous step' to downloading, then in this situation I could just hit undo and all would be good. This would be incredibly useful in those terrible accidental touch situations.


(It would be nice if the entire undo history was also preserved, but just getting the previous version of the complete file would be enough).

(Uploading isn't such an issue, because there's nearly always an original copy of whatever was replaced, unlike on the iPad where Textastic generally has the only copy of whatever I've just written).

0

Console error log

Нездешний 8 years ago in iPhone updated by Alexander Blach (Developer) 8 years ago 2

an example of code that works in textastic 5.3.1, but gives an error in the console in the 6.3 version


<!DOCTYPE html>

<html>
<head>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
</head>
<body>

<p>Click the button to open an output stream in a new window, add some text, then close the output stream.</p>

<button onclick="myFunction()">Try it</button>

<script>
function myFunction() {
var w = window.open();
w.document.open();
w.document.write("<h1>Hello World!</h1>");
w.document.close();
}
</script>

</body>
</html>