Hello,

I use lilypond 2.10.25 and jEdit with lilypondtool under WinXP sp2 and when I 
have larger scores the point-and-click links are not available in jEdits pdf 
viewer anymore.
They are still present though when I open it with Acrobat.

I attached a file where the problem occurs.
It's not really that large a score yet so I don't really know what causes the 
problem.
Hope someone can help me because I use the point-and-click a lot and especially 
in large scores it would be a nice feature.

regards,

Tao
-- 
GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS.
Alle Infos und kostenlose Anmeldung: http://www.gmx.net/de/go/freemail
\version "2.10.25"

%\include "my-drumpitch-init.ly"

makeSlash =
{
	\override NoteHead #'style = #'slash
	\override Stem #'transparent = ##t
}

makeNote =
{
	\revert NoteHead #'style
	\revert Stem #'transparent
}

rhyOn =
{
	\revert Stem #'transparent
	\override NoteHead #'style = #'slash
}

rhyOff = \revert NoteHead #'style

flute = \relative c''
{
	\set Staff.instrumentName = "Flute"
	\set Staff.shortInstrumentName = "Fl."
	\clef G
	\time 3/4
	\key c \major
	#(override-auto-beam-setting '(end * * * *) 1 4)
	#(override-auto-beam-setting '(end * * * *) 1 2)
%{001%}	R2.*12 |
%{013%}	r4 fis16 g fis f e8 fis |
	d8 b a g fis e |
	R2.*2 | \bar "||"
	g'8 g r g r g |
	g4 r8 g r g |
	g4 r8 g r g |
}

horns =
{
	\set Staff.instrumentName = "Horns"
	\set Staff.shortInstrumentName = "Hrns."
	\clef G
	\time 3/4
	\key c \major
	#(override-auto-beam-setting '(end * * * *) 1 4)
	#(override-auto-beam-setting '(end * * * *) 1 2)
%{001%}	R2.*16 | \bar "||"
}

strings = 
{
	\set Staff.instrumentName = "Strings"
	\set Staff.shortInstrumentName = "Strs."
	\clef G
	\time 3/4
	\key c \major
	#(override-auto-beam-setting '(end * * * *) 1 4)
	#(override-auto-beam-setting '(end * * * *) 1 2)
%{001%}	R2.*16 | \bar "||"
}

guitar = \relative c''
{
	\set Staff.instrumentName = "Guitar"
	\set Staff.shortInstrumentName = "Gtr."
	\clef G
	\time 3/4
	\key c \major
	#(override-auto-beam-setting '(end * * * *) 1 4)
	#(override-auto-beam-setting '(end * * * *) 1 2)
%{001%}	\rhyOn \repeat unfold 12 { b8 b r b b4 }
%{013%}	b2.~ |
	b2. |
	r4 b2~ |
	b2. | \bar "||"
	\makeSlash \repeat unfold 60 { b4 }
}

gtrChords = \lyricmode
{
%{001%}	DM2. "Cm6" BbM AbM
	GM FM GM FM
	EbM DbM EbM DbM
%{013%}	CM _ _4 "Db6/9/s11"2 _2.
	CM2. "Bbm7" AbM "DbMs11"
}

bass = \relative c
{
	\set Staff.instrumentName = "Bass"
	\set Staff.shortInstrumentName = "Bs."
	\clef F
	\time 3/4
	\key c \major
	#(override-auto-beam-setting '(end * * * *) 1 4)
	#(override-auto-beam-setting '(end * * * *) 1 2)
%{001%}	R2.*14 |
%{015%}	des4-. des2->~ |
	des2\glissando as'4\glissando | \bar "||"
	c,4. g' |
	bes, f' |
}

drKicks = \drummode
{
	#(override-auto-beam-setting '(end * * * *) 1 4)
	#(override-auto-beam-setting '(end * * * *) 1 2)
%{001%}	R2.*14 |
	
}

drSlash = \drummode
{
	#(override-auto-beam-setting '(end * * * *) 1 4)
	#(override-auto-beam-setting '(end * * * *) 1 2)
%{001%}	s2.*16 |
}

dr =
{
	\set Staff.instrumentName = "Drums"
	\set Staff.shortInstrumentName = "Dr."
	<< \new DrumVoice { \drKicks } \new DrumVoice { \drSlash } >>
}

\book
{
	\paper { #(set-paper-size "a4" 'landscape) }
	\score
	{
		<<
			\new Voice = "fl" \flute
			\new Voice = "hr" \horns
			\new Staff = "str" \strings
			\new Staff = "g" \new Voice = "gtr" \guitar
			\new Lyrics \with { alignAboveContext = "g" }
			{
				%\override Score.LyricText #'font-name = "JazzChords"
				\set associatedVoice = "gtr"
				\gtrChords
			}
			\new Voice = "bs" \bass
			%\new DrumStaff \with { drumStyleTable = #latin-style } \dr
		>>
		
		\layout
		{
			\context { \RemoveEmptyStaffContext }
			\context
			{
				\Lyrics
				\consists Bar_engraver
				\consists Separating_line_group_engraver
				\override BarLine #'transparent = ##t
			}
		}
	}
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to