[Xerte] Compile library error

Paul Swanson Paul.Swanson at harlandfs.com
Wed Nov 10 19:48:45 GMT 2010


Try margin-bottom? Hokey way of doing it, but if margin-left and
margin-right work...

 

From: xerte-bounces at lists.nottingham.ac.uk
[mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett
Sent: Wednesday, November 10, 2010 11:41 AM
To: Xerte list
Subject: RE: [Xerte] Compile library error

 

No. inline or block, just ignores it.

p
{
  font-family: tahomabd;
  font-size: 14px;
  color: #FF0000;
  display: inline;
}


>From the Adobe site:
 
Paragraph tag (<p>) The paragraph <p> tag creates a new paragraph. The
opening <p> tag does not force a line break, but the closing </p> tag
does. Unlike in HTML, the <p> tag does not force a double space between
paragraphs; the spacing is the same as that generated by the <br> tag. 


Well, my bad.
There is no mention in the Xerte or Flash help I could find of this
proviso.
So I told the client "these tags are supported", and of course they have
created reams of content based on that.
Pfff.




________________________________

Subject: RE: [Xerte] Compile library error
Date: Wed, 10 Nov 2010 11:08:52 -0800
From: Paul.Swanson at harlandfs.com
To: xerte at lists.nottingham.ac.uk

True. But I think that is the fault of Flash.

 

Try Pat's idea of a CSS stylesheet.

 

p {display:block}

 

I haven't tried that in a stylesheet, but I know that margin-left works.
I've used that for indenting paragraphs and list items.

 

From: xerte-bounces at lists.nottingham.ac.uk
[mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett
Sent: Wednesday, November 10, 2010 10:57 AM
To: Xerte list
Subject: RE: [Xerte] Compile library error

 

To get that in Xerte I do it like this:

 

<p>Here is a</p>

<p>paragraph</p>

<p>of text.</p>

 

==========================

 

Right, but put that inline and see what you get.

The <p></p> is just a line break, with your physical line returns added
in.

 

Here is a<br>

paragraph<br>

of text.<br>

 

will come close to the same thing.

 

 

What I'm trying to say is, <p></p> does not seem to function, except as
a <br> essentially.

Which is a drag if that means you have to you have to pre-parse read-in
content.

It also takes away a spacing  tool, as <p> produces differently than
<br>. 

 

 

 

 

 

________________________________

Subject: RE: [Xerte] Compile library error
Date: Wed, 10 Nov 2010 10:32:18 -0800
From: Paul.Swanson at harlandfs.com
To: xerte at lists.nottingham.ac.uk

It should insert a line feed after the </p>, but it also should have one
before the <p>. Normal output in Flash should be:

 

Here is a 

paragraph

of text.

 

But on a web page it should look like:

 

Here is a

 

paragraph

 

of text.

 

To get that in Xerte I do it like this:

 

<p>Here is a</p>

<p>paragraph</p>

<p>of text.</p>

 

But I'm a little anal about stuff like that.  ;o)

 

From: xerte-bounces at lists.nottingham.ac.uk
[mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett
Sent: Wednesday, November 10, 2010 10:02 AM
To: Xerte list
Subject: RE: [Xerte] Compile library error

 

When I run it, 

Here is a <p>paragraph</p> of text

Appears as:

Here is a paragraph
 of text.

That what you see?
It's breaking at the </p> for me.



________________________________

From: Julian.Tenney at nottingham.ac.uk
To: xerte at lists.nottingham.ac.uk
Date: Wed, 10 Nov 2010 17:18:08 +0000
Subject: RE: [Xerte] Compile library error

This works OK?

 

It's nothing to do with the engine. In this example, the <p> drops the
text a line, are you sure you can actually see it? It's not being
poushed somewhere you can't see.

 

If you inspect the text of the icon, what do you get?

 

From: xerte-bounces at lists.nottingham.ac.uk
[mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett
Sent: 10 November 2010 17:03
To: Xerte list
Subject: RE: [Xerte] Compile library error

 


I can't get <p> to work in any plain vanilla way.
Any chance the interpretation got broken in the engine?

________________________________

From: Julian.Tenney at nottingham.ac.uk
To: xerte at lists.nottingham.ac.uk
Date: Wed, 10 Nov 2010 15:10:48 +0000
Subject: RE: [Xerte] Compile library error

I don't know I'm afraid, I hardly ever use embedded fonts.

 

From: xerte-bounces at lists.nottingham.ac.uk
[mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett
Sent: 10 November 2010 15:05
To: Xerte list
Subject: RE: [Xerte] Compile library error

 

Tahoma italic is apparently not a Win system font.
You have to buy it from 3rd party.
:-/

No diff with <p align="left">
Wonder why <li> would work but not the more basic stuff?

Unfortunately, fonts look lousy without anti-aliasing.



From: Julian.Tenney at nottingham.ac.uk
To: xerte at lists.nottingham.ac.uk
Date: Wed, 10 Nov 2010 14:01:56 +0000
Subject: RE: [Xerte] Compile library error

They do work with a non-embedded font. I don't know if you also need a
ialic font, sometimes you need a separate bold font.

 

I'd have thought <p> would have worked though. Hmm. Did you try <p
align="left">?

 

From: xerte-bounces at lists.nottingham.ac.uk
[mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett
Sent: 10 November 2010 13:20
To: Xerte list
Subject: RE: [Xerte] Compile library error

 

Could be, although I've compiled libs before and not seen it.

Aside:

details.setText('How to:<li>1. Move the pointer</li>'); //gives me an
indented  bullet line

details.setText('How to:<br>1. Move the pointer'); //gives me a line
break

details.setText('How to:<p>1. Move the pointer</p>'); //gives me nothing

details.setText('How to:<i>1. Move the pointer<i>'); //gives me nothing


I thought  p and i etc were supported?

Font is embedded Tahoma/Tahomabd

Dave

________________________________

From: Julian.Tenney at nottingham.ac.uk
To: xerte at lists.nottingham.ac.uk
Date: Wed, 10 Nov 2010 13:12:58 +0000
Subject: RE: [Xerte] Compile library error

I don't see that. You have Win2000 don't you? Maybe something to do with
trying to run swfmill from zinc on Win2K?

 

From: xerte-bounces at lists.nottingham.ac.uk
[mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett
Sent: 10 November 2010 12:11
To: Xerte list
Subject: [Xerte] Compile library error

 

Just an FYI for the archives.

When I hit compile library I initially get an error dialog:

Windows - No Disk
Exception Processing Message blah blah.

If I hit Continue, it seems to compile normally.

Google says this is usually a start-up problem involving Quicktime, but
this only happens when I hit Compile library.

Dave


This message and any attachment are intended solely for the addressee
and may contain confidential information. If you have received this
message in error, please send it back to me, and immediately delete it.
Please do not use, copy or disclose the information contained in this
message or in any attachment. Any views or opinions expressed by the
author of this email do not necessarily reflect the views of the
University of Nottingham. 
This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system: you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation. 

_______________________________________________ Xerte mailing list
Xerte at lists.nottingham.ac.uk
http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and
any attachment are intended solely for the addressee and may contain
confidential information. If you have received this message in error,
please send it back to me, and immediately delete it. Please do not use,
copy or disclose the information contained in this message or in any
attachment. Any views or opinions expressed by the author of this email
do not necessarily reflect the views of the University of Nottingham.
This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system: you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation. 


_______________________________________________ Xerte mailing list
Xerte at lists.nottingham.ac.uk
http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and
any attachment are intended solely for the addressee and may contain
confidential information. If you have received this message in error,
please send it back to me, and immediately delete it. Please do not use,
copy or disclose the information contained in this message or in any
attachment. Any views or opinions expressed by the author of this email
do not necessarily reflect the views of the University of Nottingham.
This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system: you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation. 


_______________________________________________ Xerte mailing list
Xerte at lists.nottingham.ac.uk
http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and
any attachment are intended solely for the addressee and may contain
confidential information. If you have received this message in error,
please send it back to me, and immediately delete it. Please do not use,
copy or disclose the information contained in this message or in any
attachment. Any views or opinions expressed by the author of this email
do not necessarily reflect the views of the University of Nottingham.
This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system: you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation. 


_______________________________________________ Xerte mailing list
Xerte at lists.nottingham.ac.uk
http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and
any attachment are intended solely for the addressee and may contain
confidential information. If you have received this message in error,
please send it back to me, and immediately delete it. Please do not use,
copy or disclose the information contained in this message or in any
attachment. Any views or opinions expressed by the author of this email
do not necessarily reflect the views of the University of Nottingham.
This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system: you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation. 


_______________________________________________ Xerte mailing list
Xerte at lists.nottingham.ac.uk
http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and
any attachment are intended solely for the addressee and may contain
confidential information. If you have received this message in error,
please send it back to me, and immediately delete it. Please do not use,
copy or disclose the information contained in this message or in any
attachment. Any views or opinions expressed by the author of this email
do not necessarily reflect the views of the University of Nottingham.
This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system: you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation. 


_______________________________________________ Xerte mailing list
Xerte at lists.nottingham.ac.uk
http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and
any attachment are intended solely for the addressee and may contain
confidential information. If you have received this message in error,
please send it back to me, and immediately delete it. Please do not use,
copy or disclose the information contained in this message or in any
attachment. Any views or opinions expressed by the author of this email
do not necessarily reflect the views of the University of Nottingham.
This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system: you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation. 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20101110/008d4bd7/attachment.html


More information about the Xerte mailing list