I have BIG problems trying to get links to work inside a pdf generated with 
Coldfusion.

The problem is when using CFPDF and action "merge", then the links inside the 
pdfs are no longer click-able.
It works when using action "write".

Another problem is how to make internal links, example how to make a link that 
go to page 2. Normaly it works by adding "#page=2" to the URL.

code example:
---------------
<cfdocument format="pdf" name="testpdf">
        <cfdocumentsection name="Indhold">
                <cfoutput>
                        <a href="##page=2">Test</a><br>
                        <cfloop index="i" from="1" to="10">
                        <a href="http://www.ef.dk?test=#i#";>Test #i#</a><br>
                        </cfloop>
                </cfoutput>
        </cfdocumentsection>
        <cfdocumentsection name="blankpage">
                <cfoutput>page 2</cfoutput>
        </cfdocumentsection>
</cfdocument>

<cfpdf action="merge" destination="test-merge.pdf" overwrite="true">
        <cfpdfparam source="testpdf">
</cfpdf>

<cfpdf action="write" destination="test-write.pdf" overwrite="true" 
source="testpdf">

---------------

Any one have the same problem and maybe a soloution?

/Mikkel Johansen 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288134
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to