Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hyperlink text color in PowerPoint2007 #541

Closed
websitedevTychy opened this issue May 21, 2019 · 1 comment · Fixed by #682
Closed

Hyperlink text color in PowerPoint2007 #541

websitedevTychy opened this issue May 21, 2019 · 1 comment · Fixed by #682

Comments

@websitedevTychy
Copy link

websitedevTychy commented May 21, 2019

When I'm using PowerPoint2007 Writer hyperlinks are always blue. getFont() and styling color is not working. In ODPresentation everythink is ok. Is it possible to change color to black?
Code:

$shape = $slide->createRichTextShape()
	->setWidth(400)
	->setOffsetX(100)
	->setOffsetY(100);

$textRun = $shape->createTextRun($number);

$textRun->getFont()
	->setBold(true)
	->setSize(60);

if($link) {
	$textRun->getHyperLink()->setUrl($link)->setTooltip($name);
}
@Progi1984
Copy link
Member

Fixed by @MartynasJanu & @Progi1984 in #682

@Progi1984 Progi1984 self-assigned this Nov 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging a pull request may close this issue.

2 participants