ConnectedText
September 08, 2010, 12:38:26 PM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: SMF - Just Installed!
 
   Home   Help Search Login Register  
Pages: [1] 2 3 ... 10
 1 
 on: Today at 07:33:20 AM 
Started by evogel99 - Last post by Eduardo Mauro
Some firewalls and anti-virus for some reason block CT. Example: Spy Doctor.

 2 
 on: Today at 06:24:53 AM 
Started by evogel99 - Last post by GabiLaser

Perhaps try to isolate problem:
- try several times CT with antivirus disabled
- disable all plugins (antivirus enabled), run CT several times, enable plugins one by one, try again

 3 
 on: September 04, 2010, 07:20:09 AM 
Started by evogel99 - Last post by evogel99
Here is more detail (on XP sp3)

now running trial version

-restart
-monitor tasks
-run ct, ok
-close ct, ok
- run ct
 - starts
 - CT splash
 - hangs w/CT splash now white hole in screen
 - can run other programs but they are "under" the CT splash screen ghost
 - cannot kill the task that is CT

the only thing that will clear this is a restart!

I have recently installed ct USB 4.0.0.13, but its flash drive is not present when all this happens.


 4 
 on: September 04, 2010, 03:17:30 AM 
Started by ice - Last post by Bluespianist
Hi Jacek,

at first sight, ".tabletext" seems straightforward, doing just what it says. For text-decoration, change "none" to "line-through", then reload your topic and look at the tables. Just another way to control table formatting, I guess. But why is it put into its own class? Makes you think it wouldn't apply to custom tables formatted with {|%%class=myClass%% (CSS: tables.myClass). But instead, it still applies to all tables. Beats me, I have no clue.

I use ".highlite" as an alternative to hard-coding background-colors via inline-formatting. If I decide I want another color, I simply change the CSS, instead of having to do a search and replace for the color code.

I am trying to cope with a bunch of CSS-problems, mostly related to the CSS cascade, but more about that some other time.

Quote
What I am trying to do with Welcome, is to increase its internal integrity by adding anchors, headings, internal links, updating images and unification the layout.
Whoa, that sounds promising. Thorough and dedicated overhauls bearing the Jacek-trademark. Will try to contribute some stuff, though I am in a bit of a time crunch at the moment.


 5 
 on: September 04, 2010, 01:48:49 AM 
Started by evogel99 - Last post by Bluespianist
Don't know if this helps to track down possible causes:
I have not experienced any lockups so far, also running the Kaspersky Suite with latest updates and databases, on Vista 32, SP 2.

The only thing I witnessed with 4.0.0.13: It tends to lock all folders that are open in file managers etc, so when I try to rename or delete these folders, I get an access denied, until I close down CT. Only then am I able to modify those folders.

 6 
 on: September 03, 2010, 10:54:04 PM 
Started by evogel99 - Last post by evogel99
CT4.0.0.13  has started to lock up when I start it. No idea why as it has run well for some time now. I uninstalled and reinstalled. When I first started it up at the end of the install, it seemed to run fine. I quit, then restarted and it locked up.

I did upgrade my Kaspersky suite to the latest version, and the problem started after that. However, I believe I have given it full permissions.

How can I start resolving this problem?

Thanks,

Eric

 7 
 on: September 03, 2010, 09:31:34 AM 
Started by Pacoli - Last post by Pacoli
Only a change...  Sad
Now you can write the source code of a component directly on a topic of CT!!
For this, create a topic with the name of the component and write the component code in a preformatted block at top of the topic.
For example:
Create a topic with name "Component.Sample" and write in it:
{{{
<?xml version="1.0" encoding="UTF-8"?>
<component id="Component.Sample">
<?component error="false" debug="false"?>
<public>
  <method name="Echo"/>
</public>
<script language="JScript">
<![CDATA[
function Echo(p) { return p; }
]]>
</script>
</component>
}}}

Now you can call this component as usual (in this or another topic of the project):
<% WSC.Component.Sample.Echo /I\ Simple text %>

NOTES:
- The preformatted block must be the first text in the topic
- You can assign a category to the topic (for example [[$CATEGORY:WSC]]) to have it identified as a component
- You can assign an attribute [[Cached:=1/0]] if you want the plugin to keep the component in cache. Default is 0
- No need to add the name of the component to plugin.xml file. If the plugin does not find the component name in the manifest file, it seeks a topic with that name. If found, it takes the text in the first preformatted block, saves it in a temp file and continues as usual (load that file and create an instance of the component).
- He noted that CT does not detect the commands after the preformatted block. I think it is due to element "<![CDATA[ ]]>". As a workaround, you can write after the preformatted block:
{{{
....
</component>
}}}
!> {{{This is a workaround to CT recognize the command [[$CATEGORY]] and the attribute [[Cached]]}}}
[[$CATEGORY:WSC]]
Cached = [[Cached:=1]]

I will modify the tutorial as soon as possible to add this change Wink

Thanks!!

 8 
 on: September 02, 2010, 11:23:29 PM 
Started by tt - Last post by tt
Oh, sorry. I conducted full text search for certain words in Japanese. It seems that Chinese characters are no problem but when I search for Japanese words or characters (hiragana and katakana), CT says "No topics found" though there really are the words or characters in the document. I also searched by using context menu, clicking on "Search for", but the result was the same. I then searched for each character, not each word. I found CT search hit some characters like "?" (&#x30A6;) but other characters like "?" (&#x30CD;) can't be searched for by CT.

I fully understand that CT works well for every user, not just for me. So if it's something complicated regarding character codes and language matter, I understand.

 9 
 on: September 02, 2010, 10:45:19 PM 
Started by tt - Last post by tt
Thank you in advance for examining this situation. I created a test project which contains a topic written in Japanese and sent it to your support mail adress in a zip file.

 10 
 on: September 02, 2010, 10:25:21 PM 
Started by ice - Last post by JotDee
Stefan,
I guess you already know about this alignment adjustment:
http://connectedtext.com/forum/index.php?topic=1637.0
Thanks, I have overlooked this. I will take this into consideration.

Regarding css, there are still two hazy things for me:
  • .tabletext section - I do not know how it works
  • .highlite section - it seems it is a custom style, which is used in [[Welcome:Inline Styles]] topic (see Clean.css).
If you can write anything about this, or if you have any other inventive solutuions you use, post them here.

What I am trying to do with Welcome, is to increase its internal integrity by adding anchors, headings, internal links, updating images and unification the layout. I also develop a reasonable system of categories that would be a help in browsing things. What is more, there are some undocumented CT features, for example usage of internal Browser.

Pages: [1] 2 3 ... 10
Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!