<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Illustrator Tutorials</title>
	<atom:link href="https://illustratordersleri.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://illustratordersleri.com/</link>
	<description>Basic Training</description>
	<lastBuildDate>Sat, 18 Oct 2025 09:53:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>Yerden ısıtma proje Kodları:</title>
		<link>https://illustratordersleri.com/yerden-isitma-proje-kodlari/</link>
		
		<dc:creator><![CDATA[akif kutlu]]></dc:creator>
		<pubDate>Mon, 11 Nov 2024 05:58:23 +0000</pubDate>
				<category><![CDATA[Genel]]></category>
		<guid isPermaLink="false">https://illustratordersleri.com/?p=4206</guid>

					<description><![CDATA[<p>The post <a href="https://illustratordersleri.com/yerden-isitma-proje-kodlari/">Yerden ısıtma proje Kodları:</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-kevinbatdorf-code-block-pro" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span role="button" tabindex="0" data-code="/*
Oda termostatları ile Kombi kontrol Sistemi
Ana kontrol Tasarım 
V1.0 
Güncellemeler

*/
boolean Kombi_istek,Kombi_SonDurum = false;
boolean Mutfak,Salon,O_Oda,C_Oda,Y_Oda,Banyo = true;

void setup() {

  pinMode(1, OUTPUT); // kombi röle

  pinMode(2, INPUT_PULLUP); // Oda termostat 1: Mutfak
  pinMode(3, INPUT_PULLUP); // Oda termostat 2: Salon
  pinMode(4, INPUT_PULLUP); // Oda termostat 3: O_Oda
  pinMode(5, INPUT_PULLUP); // Oda termostat 4: C_Oda
  pinMode(6, INPUT_PULLUP); // Oda termostat 5: Y_Oda
  pinMode(7, INPUT_PULLUP); // Oda termostat 5: Banyo
  digitalWrite(1, HIGH); // Kombi kapalı olarak başla 
}

void loop() {
  
  Mutfak = digitalRead(2);
  Salon = digitalRead(3);
  O_Oda = digitalRead(4);
  C_Oda = digitalRead(5);
  Y_Oda = digitalRead(6);
  Banyo = digitalRead(7);

  Kombi_istek = !Mutfak | !Salon | !O_Oda | !C_Oda | !Y_Oda | !Banyo;
 
  if (Kombi_istek == true &amp;&amp; Kombi_SonDurum == false) {
    delay(120000);            // Vananın açılmasını bekle
    digitalWrite(1, LOW); // Kombi  Çalıştır
    Kombi_SonDurum = true;
  } 
  if (Kombi_istek == false &amp;&amp; Kombi_SonDurum == true){
    digitalWrite(1, HIGH); // Kombiyi kapat 
    Kombi_SonDurum = false;
  }

}
" style="color:#393a34;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg></span><pre class="shiki vitesse-light" style="background-color: #ffffff" tabindex="0"><code><span class="line"><span style="color: #A0ADA0">/*</span></span>
<span class="line"><span style="color: #A0ADA0">Oda termostatları ile Kombi kontrol Sistemi</span></span>
<span class="line"><span style="color: #A0ADA0">Ana kontrol Tasarım </span></span>
<span class="line"><span style="color: #A0ADA0">V1.0 </span></span>
<span class="line"><span style="color: #A0ADA0">Güncellemeler</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A0ADA0">*/</span></span>
<span class="line"><span style="color: #B07D48">boolean</span><span style="color: #393A34"> </span><span style="color: #B07D48">Kombi_istek</span><span style="color: #999999">,</span><span style="color: #B07D48">Kombi_SonDurum</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #1E754F">false</span><span style="color: #999999">;</span></span>
<span class="line"><span style="color: #B07D48">boolean</span><span style="color: #393A34"> </span><span style="color: #B07D48">Mutfak</span><span style="color: #999999">,</span><span style="color: #B07D48">Salon</span><span style="color: #999999">,</span><span style="color: #B07D48">O_Oda</span><span style="color: #999999">,</span><span style="color: #B07D48">C_Oda</span><span style="color: #999999">,</span><span style="color: #B07D48">Y_Oda</span><span style="color: #999999">,</span><span style="color: #B07D48">Banyo</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #1E754F">true</span><span style="color: #999999">;</span></span>
<span class="line"></span>
<span class="line"><span style="color: #AB5959">void</span><span style="color: #393A34"> </span><span style="color: #59873A">setup</span><span style="color: #999999">()</span><span style="color: #393A34"> </span><span style="color: #999999">{</span></span>
<span class="line"></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #59873A">pinMode</span><span style="color: #999999">(</span><span style="color: #2F798A">1</span><span style="color: #999999">,</span><span style="color: #393A34"> </span><span style="color: #B07D48">OUTPUT</span><span style="color: #999999">);</span><span style="color: #393A34"> </span><span style="color: #A0ADA0">// kombi röle</span></span>
<span class="line"></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #59873A">pinMode</span><span style="color: #999999">(</span><span style="color: #2F798A">2</span><span style="color: #999999">,</span><span style="color: #393A34"> </span><span style="color: #B07D48">INPUT_PULLUP</span><span style="color: #999999">);</span><span style="color: #393A34"> </span><span style="color: #A0ADA0">// Oda termostat 1: Mutfak</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #59873A">pinMode</span><span style="color: #999999">(</span><span style="color: #2F798A">3</span><span style="color: #999999">,</span><span style="color: #393A34"> </span><span style="color: #B07D48">INPUT_PULLUP</span><span style="color: #999999">);</span><span style="color: #393A34"> </span><span style="color: #A0ADA0">// Oda termostat 2: Salon</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #59873A">pinMode</span><span style="color: #999999">(</span><span style="color: #2F798A">4</span><span style="color: #999999">,</span><span style="color: #393A34"> </span><span style="color: #B07D48">INPUT_PULLUP</span><span style="color: #999999">);</span><span style="color: #393A34"> </span><span style="color: #A0ADA0">// Oda termostat 3: O_Oda</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #59873A">pinMode</span><span style="color: #999999">(</span><span style="color: #2F798A">5</span><span style="color: #999999">,</span><span style="color: #393A34"> </span><span style="color: #B07D48">INPUT_PULLUP</span><span style="color: #999999">);</span><span style="color: #393A34"> </span><span style="color: #A0ADA0">// Oda termostat 4: C_Oda</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #59873A">pinMode</span><span style="color: #999999">(</span><span style="color: #2F798A">6</span><span style="color: #999999">,</span><span style="color: #393A34"> </span><span style="color: #B07D48">INPUT_PULLUP</span><span style="color: #999999">);</span><span style="color: #393A34"> </span><span style="color: #A0ADA0">// Oda termostat 5: Y_Oda</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #59873A">pinMode</span><span style="color: #999999">(</span><span style="color: #2F798A">7</span><span style="color: #999999">,</span><span style="color: #393A34"> </span><span style="color: #B07D48">INPUT_PULLUP</span><span style="color: #999999">);</span><span style="color: #393A34"> </span><span style="color: #A0ADA0">// Oda termostat 5: Banyo</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #59873A">digitalWrite</span><span style="color: #999999">(</span><span style="color: #2F798A">1</span><span style="color: #999999">,</span><span style="color: #393A34"> </span><span style="color: #B07D48">HIGH</span><span style="color: #999999">);</span><span style="color: #393A34"> </span><span style="color: #A0ADA0">// Kombi kapalı olarak başla </span></span>
<span class="line"><span style="color: #999999">}</span></span>
<span class="line"></span>
<span class="line"><span style="color: #AB5959">void</span><span style="color: #393A34"> </span><span style="color: #59873A">loop</span><span style="color: #999999">()</span><span style="color: #393A34"> </span><span style="color: #999999">{</span></span>
<span class="line"><span style="color: #393A34">  </span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #B07D48">Mutfak</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #59873A">digitalRead</span><span style="color: #999999">(</span><span style="color: #2F798A">2</span><span style="color: #999999">);</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #B07D48">Salon</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #59873A">digitalRead</span><span style="color: #999999">(</span><span style="color: #2F798A">3</span><span style="color: #999999">);</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #B07D48">O_Oda</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #59873A">digitalRead</span><span style="color: #999999">(</span><span style="color: #2F798A">4</span><span style="color: #999999">);</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #B07D48">C_Oda</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #59873A">digitalRead</span><span style="color: #999999">(</span><span style="color: #2F798A">5</span><span style="color: #999999">);</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #B07D48">Y_Oda</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #59873A">digitalRead</span><span style="color: #999999">(</span><span style="color: #2F798A">6</span><span style="color: #999999">);</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #B07D48">Banyo</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #59873A">digitalRead</span><span style="color: #999999">(</span><span style="color: #2F798A">7</span><span style="color: #999999">);</span></span>
<span class="line"></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #B07D48">Kombi_istek</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #AB5959">!</span><span style="color: #B07D48">Mutfak</span><span style="color: #393A34"> </span><span style="color: #AB5959">|</span><span style="color: #393A34"> </span><span style="color: #AB5959">!</span><span style="color: #B07D48">Salon</span><span style="color: #393A34"> </span><span style="color: #AB5959">|</span><span style="color: #393A34"> </span><span style="color: #AB5959">!</span><span style="color: #B07D48">O_Oda</span><span style="color: #393A34"> </span><span style="color: #AB5959">|</span><span style="color: #393A34"> </span><span style="color: #AB5959">!</span><span style="color: #B07D48">C_Oda</span><span style="color: #393A34"> </span><span style="color: #AB5959">|</span><span style="color: #393A34"> </span><span style="color: #AB5959">!</span><span style="color: #B07D48">Y_Oda</span><span style="color: #393A34"> </span><span style="color: #AB5959">|</span><span style="color: #393A34"> </span><span style="color: #AB5959">!</span><span style="color: #B07D48">Banyo</span><span style="color: #999999">;</span></span>
<span class="line"><span style="color: #393A34"> </span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #1E754F">if</span><span style="color: #393A34"> </span><span style="color: #999999">(</span><span style="color: #B07D48">Kombi_istek</span><span style="color: #393A34"> </span><span style="color: #AB5959">==</span><span style="color: #393A34"> </span><span style="color: #1E754F">true</span><span style="color: #393A34"> </span><span style="color: #AB5959">&amp;&amp;</span><span style="color: #393A34"> </span><span style="color: #B07D48">Kombi_SonDurum</span><span style="color: #393A34"> </span><span style="color: #AB5959">==</span><span style="color: #393A34"> </span><span style="color: #1E754F">false</span><span style="color: #999999">)</span><span style="color: #393A34"> </span><span style="color: #999999">{</span></span>
<span class="line"><span style="color: #393A34">    </span><span style="color: #59873A">delay</span><span style="color: #999999">(</span><span style="color: #2F798A">120000</span><span style="color: #999999">);</span><span style="color: #393A34">            </span><span style="color: #A0ADA0">// Vananın açılmasını bekle</span></span>
<span class="line"><span style="color: #393A34">    </span><span style="color: #59873A">digitalWrite</span><span style="color: #999999">(</span><span style="color: #2F798A">1</span><span style="color: #999999">,</span><span style="color: #393A34"> </span><span style="color: #B07D48">LOW</span><span style="color: #999999">);</span><span style="color: #393A34"> </span><span style="color: #A0ADA0">// Kombi  Çalıştır</span></span>
<span class="line"><span style="color: #393A34">    </span><span style="color: #B07D48">Kombi_SonDurum</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #1E754F">true</span><span style="color: #999999">;</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #999999">}</span><span style="color: #393A34"> </span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #1E754F">if</span><span style="color: #393A34"> </span><span style="color: #999999">(</span><span style="color: #B07D48">Kombi_istek</span><span style="color: #393A34"> </span><span style="color: #AB5959">==</span><span style="color: #393A34"> </span><span style="color: #1E754F">false</span><span style="color: #393A34"> </span><span style="color: #AB5959">&amp;&amp;</span><span style="color: #393A34"> </span><span style="color: #B07D48">Kombi_SonDurum</span><span style="color: #393A34"> </span><span style="color: #AB5959">==</span><span style="color: #393A34"> </span><span style="color: #1E754F">true</span><span style="color: #999999">){</span></span>
<span class="line"><span style="color: #393A34">    </span><span style="color: #59873A">digitalWrite</span><span style="color: #999999">(</span><span style="color: #2F798A">1</span><span style="color: #999999">,</span><span style="color: #393A34"> </span><span style="color: #B07D48">HIGH</span><span style="color: #999999">);</span><span style="color: #393A34"> </span><span style="color: #A0ADA0">// Kombiyi kapat </span></span>
<span class="line"><span style="color: #393A34">    </span><span style="color: #B07D48">Kombi_SonDurum</span><span style="color: #393A34"> </span><span style="color: #999999">=</span><span style="color: #393A34"> </span><span style="color: #1E754F">false</span><span style="color: #999999">;</span></span>
<span class="line"><span style="color: #393A34">  </span><span style="color: #999999">}</span></span>
<span class="line"></span>
<span class="line"><span style="color: #999999">}</span></span>
<span class="line"></span></code></pre></div>



<figure class="wp-block-image aligncenter size-large"><img fetchpriority="high" decoding="async" width="1024" height="675" src="https://illustratordersleri.com/wp-content/uploads/2024/11/Yerden-isitma-kontrol-devresi-1024x675.jpg" alt="" class="wp-image-4210" srcset="https://illustratordersleri.com/wp-content/uploads/2024/11/Yerden-isitma-kontrol-devresi-1024x675.jpg 1024w, https://illustratordersleri.com/wp-content/uploads/2024/11/Yerden-isitma-kontrol-devresi-300x198.jpg 300w, https://illustratordersleri.com/wp-content/uploads/2024/11/Yerden-isitma-kontrol-devresi-768x506.jpg 768w, https://illustratordersleri.com/wp-content/uploads/2024/11/Yerden-isitma-kontrol-devresi.jpg 1048w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
<p>The post <a href="https://illustratordersleri.com/yerden-isitma-proje-kodlari/">Yerden ısıtma proje Kodları:</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>dotted dashed line in illustrator</title>
		<link>https://illustratordersleri.com/how-to-make-a-dotted-dashed-line-in-illustrator/</link>
		
		<dc:creator><![CDATA[akif kutlu]]></dc:creator>
		<pubDate>Sat, 18 Jun 2022 13:43:55 +0000</pubDate>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[pattern brush]]></category>
		<category><![CDATA[stroke panel]]></category>
		<guid isPermaLink="false">https://illustratordersleri.com/?p=3587</guid>

					<description><![CDATA[<p>Create dotted and dashed lines in Illustrator This tutorial shows how to create both a dotted and dashed line using Illustrator, as shown below. Step 1. Draw any shape to create a dotted line Step 2. change stroke options Easy</p>
<p>The post <a href="https://illustratordersleri.com/how-to-make-a-dotted-dashed-line-in-illustrator/">dotted dashed line in illustrator</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading">Create dotted and dashed lines in Illustrator</h1>



<p>This tutorial shows how to create both a dotted and dashed line using Illustrator, as shown below.</p>



<figure class="wp-block-image aligncenter size-full"><img decoding="async" width="199" height="23" src="https://illustratordersleri.com/wp-content/uploads/2022/06/Main.jpg" alt="" class="wp-image-3598"/></figure>



<h2 class="wp-block-heading"><strong>Step 1. </strong>Draw any shape to create a dotted line</h2>



<ul class="wp-block-list">
<li>As an example shape, grab the rectangle tool  (<strong>M</strong>) and click on your artboard. </li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img decoding="async" width="204" height="210" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Rectangle-tool-icon.jpg" alt="rectangle tool" class="wp-image-2963" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Rectangle-tool-icon.jpg 204w, https://illustratordersleri.com/wp-content/uploads/2020/12/Rectangle-tool-icon-45x45.jpg 45w" sizes="(max-width: 204px) 100vw, 204px" /></figure>



<ul class="wp-block-list">
<li>Type 100 px , 100 px for the width and height.  hit Ok. </li>



<li>Zoom in by holding down ALT/OPT key and spin the mouse wheel  </li>
</ul>



<h2 class="wp-block-heading"><strong>Step 2.</strong> change stroke options</h2>



<ul class="wp-block-list">
<li>Make sure the rectangle is selected. There are multiple ways to reach stroke options. Either use the Properties panel (<strong>1</strong>), appearance panel (<strong>2</strong>), or control panel. </li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="372" height="411" src="https://illustratordersleri.com/wp-content/uploads/2022/06/Properties-Pannel.jpg" alt="" class="wp-image-3599" srcset="https://illustratordersleri.com/wp-content/uploads/2022/06/Properties-Pannel.jpg 372w, https://illustratordersleri.com/wp-content/uploads/2022/06/Properties-Pannel-272x300.jpg 272w" sizes="auto, (max-width: 372px) 100vw, 372px" /></figure>



<ul class="wp-block-list">
<li>Click underlined Stroke (<strong>1</strong>) </li>



<li>Change weight to 2 pt (<strong>2</strong>)</li>



<li>Enable rounded cap (<strong>3</strong>)</li>



<li>Enable Dashed line (<strong>4</strong>) and give the dash and gap values as shown in the figure </li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="700" height="533" src="https://illustratordersleri.com/wp-content/uploads/2022/06/Stroke-Options.jpg" alt="" class="wp-image-3600" srcset="https://illustratordersleri.com/wp-content/uploads/2022/06/Stroke-Options.jpg 700w, https://illustratordersleri.com/wp-content/uploads/2022/06/Stroke-Options-300x228.jpg 300w" sizes="auto, (max-width: 700px) 100vw, 700px" /><figcaption class="wp-element-caption">dotted dashed line</figcaption></figure>



<ul class="wp-block-list">
<li>You should have a stroke like this.</li>
</ul>



<div class="wp-block-cover aligncenter"><img loading="lazy" decoding="async" width="442" height="431" class="wp-block-cover__image-background wp-image-3601" alt="" src="https://illustratordersleri.com/wp-content/uploads/2022/06/dotted-dashed-line.jpg" data-object-fit="cover" srcset="https://illustratordersleri.com/wp-content/uploads/2022/06/dotted-dashed-line.jpg 442w, https://illustratordersleri.com/wp-content/uploads/2022/06/dotted-dashed-line-300x293.jpg 300w, https://illustratordersleri.com/wp-content/uploads/2022/06/dotted-dashed-line-45x45.jpg 45w" sizes="auto, (max-width: 442px) 100vw, 442px" /><span aria-hidden="true" class="wp-block-cover__background has-background-dim"></span><div class="wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow">
<p class="has-text-align-center has-large-font-size"></p>
</div></div>



<p> Easy huh! <img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p>Akif Kutlu</p>
<p>The post <a href="https://illustratordersleri.com/how-to-make-a-dotted-dashed-line-in-illustrator/">dotted dashed line in illustrator</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to draw a pentagram star in illustrator</title>
		<link>https://illustratordersleri.com/how-to-draw-a-pentagram-star-in-illustrator/</link>
		
		<dc:creator><![CDATA[akif kutlu]]></dc:creator>
		<pubDate>Mon, 06 Jun 2022 09:27:21 +0000</pubDate>
				<category><![CDATA[What to Draw]]></category>
		<category><![CDATA[angular copy]]></category>
		<category><![CDATA[Line segment tool]]></category>
		<category><![CDATA[pen tool]]></category>
		<category><![CDATA[pentagram star]]></category>
		<category><![CDATA[star tool]]></category>
		<guid isPermaLink="false">https://illustratordersleri.com/?p=3558</guid>

					<description><![CDATA[<p>Pentagram drawing in illustrator Here&#8217;s how to draw using Illustrator a shape with lines joined from the inside, known as a pentagram or five-side star, as shown below. Basically, there are different techniques for drawing this shape. Here, we show only one</p>
<p>The post <a href="https://illustratordersleri.com/how-to-draw-a-pentagram-star-in-illustrator/">How to draw a pentagram star in illustrator</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading">Pentagram drawing in illustrator </h1>



<p>Here&#8217;s how to draw using Illustrator a shape with lines joined from the inside, known as a pentagram or five-side star, as shown below. Basically, there are different techniques for drawing this shape. Here, we show only one method. To see other methods, please visit <a href="https://www.youtube.com/watch?v=MZZwbGe0Q5A" target="_blank" rel="noreferrer noopener">here .</a></p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="402" height="377" src="https://illustratordersleri.com/wp-content/uploads/2022/06/Pentagram.jpg" alt="" class="wp-image-3574" srcset="https://illustratordersleri.com/wp-content/uploads/2022/06/Pentagram.jpg 402w, https://illustratordersleri.com/wp-content/uploads/2022/06/Pentagram-300x281.jpg 300w" sizes="auto, (max-width: 402px) 100vw, 402px" /></figure>



<h2 class="wp-block-heading"><strong>Step 1. </strong>Create a Line</h2>



<ul class="wp-block-list">
<li><strong>Get the line segment tool (L)</strong>&nbsp;from&nbsp;the tool menu</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="113" height="264" src="https://illustratordersleri.com/wp-content/uploads/2022/06/Line-segment-tool.jpg" alt="" class="wp-image-3572"/></figure>



<ul class="wp-block-list">
<li>Open a dialog with one click anywhere on the artboard, then,</li>



<li>Enter the angle value as 360/5.&nbsp;And close the dialog box by confirming</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="274" height="278" src="https://illustratordersleri.com/wp-content/uploads/2022/06/Line-segment-tool-options.jpg" alt="" class="wp-image-3571" srcset="https://illustratordersleri.com/wp-content/uploads/2022/06/Line-segment-tool-options.jpg 274w, https://illustratordersleri.com/wp-content/uploads/2022/06/Line-segment-tool-options-45x45.jpg 45w" sizes="auto, (max-width: 274px) 100vw, 274px" /></figure>



<h2 class="wp-block-heading"><strong>Step 2</strong>. Create five copies of the line</h2>



<ul class="wp-block-list">
<li>Make sure the line you created in the previous step is selected and then </li>



<li>Get the rotate tool ( <strong>1</strong> ) from the tool menu afterward</li>



<li>Keeping the ATL/OPT key pressed on the inner middle right part of the line, left-click the mouse (&nbsp;<strong>2</strong>&nbsp;)</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="431" height="435" src="https://illustratordersleri.com/wp-content/uploads/2022/06/Rotate-tool.jpg" alt="" class="wp-image-3575" srcset="https://illustratordersleri.com/wp-content/uploads/2022/06/Rotate-tool.jpg 431w, https://illustratordersleri.com/wp-content/uploads/2022/06/Rotate-tool-297x300.jpg 297w, https://illustratordersleri.com/wp-content/uploads/2022/06/Rotate-tool-150x150.jpg 150w, https://illustratordersleri.com/wp-content/uploads/2022/06/Rotate-tool-45x45.jpg 45w" sizes="auto, (max-width: 431px) 100vw, 431px" /></figure>



<ul class="wp-block-list">
<li>Create 1 copy by entering the angle value 360/5 in the dialog window that opens.</li>



<li>Make 3 more copies with CTRL/CMD + D.&nbsp;You should have a shape with an intersection at the ends like the one below.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="437" height="426" src="https://illustratordersleri.com/wp-content/uploads/2022/06/draw-pentagram.jpg" alt="" class="wp-image-3567" srcset="https://illustratordersleri.com/wp-content/uploads/2022/06/draw-pentagram.jpg 437w, https://illustratordersleri.com/wp-content/uploads/2022/06/draw-pentagram-300x292.jpg 300w, https://illustratordersleri.com/wp-content/uploads/2022/06/draw-pentagram-45x45.jpg 45w" sizes="auto, (max-width: 437px) 100vw, 437px" /></figure>



<h2 class="wp-block-heading"><strong>Step 3.</strong>&nbsp;Connect the star ends</h2>



<ul class="wp-block-list">
<li>Pick up the join tool from the tool menu</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="404" height="223" src="https://illustratordersleri.com/wp-content/uploads/2022/06/Join-tool.jpg" alt="" class="wp-image-3570" srcset="https://illustratordersleri.com/wp-content/uploads/2022/06/Join-tool.jpg 404w, https://illustratordersleri.com/wp-content/uploads/2022/06/Join-tool-300x166.jpg 300w" sizes="auto, (max-width: 404px) 100vw, 404px" /></figure>



<ul class="wp-block-list">
<li>Connect the star ends by holding down the left mouse click as shown below</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="456" height="436" src="https://illustratordersleri.com/wp-content/uploads/2022/06/Pentagram.gif" alt="" class="wp-image-3573"/></figure>



<p>Your Pentagram star is completed. Have fun</p>



<p>Akif Kutlu&nbsp;</p>
<p>The post <a href="https://illustratordersleri.com/how-to-draw-a-pentagram-star-in-illustrator/">How to draw a pentagram star in illustrator</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>homemade lemonade recipe</title>
		<link>https://illustratordersleri.com/homemade-lemonade-recipe/</link>
		
		<dc:creator><![CDATA[akif kutlu]]></dc:creator>
		<pubDate>Tue, 19 Apr 2022 16:12:11 +0000</pubDate>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Home made lemonade]]></category>
		<category><![CDATA[How to make lemonade]]></category>
		<guid isPermaLink="false">https://illustratordersleri.com/?p=3496</guid>

					<description><![CDATA[<p>You can easily make your own lemonade at home. Here are the steps to make a delicious lemonade. The best of the best lemonade recipe Ingredients: Step 1. The orange peels Orange peels is used to color the lemonade. Therefore</p>
<p>The post <a href="https://illustratordersleri.com/homemade-lemonade-recipe/">homemade lemonade recipe</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>You can easily make your own lemonade at home. Here are the steps to make a delicious lemonade. </p>



<h1 class="wp-block-heading">The best of the best lemonade recipe </h1>



<p><strong>Ingredients:</strong></p>



<ul class="wp-block-list">
<li>Orange peels</li>



<li>Lemon juice</li>



<li>Citric Acid</li>



<li>Sugar</li>



<li>water</li>
</ul>



<h2 class="wp-block-heading"><strong>Step 1.</strong> The orange peels</h2>



<p>Orange peels is used to color the lemonade. Therefore we only need peels not orange friut itself.  </p>



<ul class="wp-block-list">
<li>Grate the orange peel. Or peel off using peeler. </li>



<li>Only 1 orange (25 g peel ) is enough to color </li>
</ul>



<figure class="wp-block-table aligncenter"><table><tbody><tr><td><img loading="lazy" decoding="async" width="350" height="233" class="wp-image-3451" style="width: 350px;" src="https://illustratordersleri.com/wp-content/uploads/2022/04/portakal-kabuk-rende.jpg" alt="" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/portakal-kabuk-rende.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/portakal-kabuk-rende-300x200.jpg 300w" sizes="auto, (max-width: 350px) 100vw, 350px" /></td><td><img loading="lazy" decoding="async" width="350" height="233" class="wp-image-3449" style="width: 350px;" src="https://illustratordersleri.com/wp-content/uploads/2022/04/Portakal-kabugu.jpg" alt="" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/Portakal-kabugu.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/Portakal-kabugu-300x200.jpg 300w" sizes="auto, (max-width: 350px) 100vw, 350px" /></td></tr></tbody></table></figure>



<h2 class="wp-block-heading"><strong>Step 2.</strong> Lemon Juice</h2>



<ul class="wp-block-list">
<li>Put lemon juice ice cube and orange peels in a deep cup. You can use fresh lemon juice if you like. I prefer to save lemon juice in a deep freze for quick use later in the summer. You will find instructions on how to make lemon juice cubes at the end of this recipe.  </li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="750" height="500" src="https://illustratordersleri.com/wp-content/uploads/2022/04/buzlu-limon.jpg" alt="" class="wp-image-3455" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/buzlu-limon.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/buzlu-limon-300x200.jpg 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></figure>



<h2 class="wp-block-heading"><strong>Step 3.</strong> Citric Acid</h2>



<p>1 teaspoon of citric acid will be enough to make the lemonade sour.</p>



<ul class="wp-block-list">
<li>Let it dissolve by mixing in half a glass of warm water and pour it into the mixing bowl.</li>



<li></li>
</ul>



<figure class="wp-block-table aligncenter"><table><tbody><tr><td><img loading="lazy" decoding="async" width="350" height="233" class="wp-image-3459" style="width: 350px;" src="https://illustratordersleri.com/wp-content/uploads/2022/04/limon-tuzu-tatli-kasigi.jpg" alt="" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/limon-tuzu-tatli-kasigi.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/limon-tuzu-tatli-kasigi-300x200.jpg 300w" sizes="auto, (max-width: 350px) 100vw, 350px" /></td><td><img loading="lazy" decoding="async" width="350" height="233" class="wp-image-3460" style="width: 350px;" src="https://illustratordersleri.com/wp-content/uploads/2022/04/limon-tuzu-.jpg" alt="" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/limon-tuzu-.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/limon-tuzu--300x200.jpg 300w" sizes="auto, (max-width: 350px) 100vw, 350px" /></td></tr></tbody></table></figure>



<h2 class="wp-block-heading"><strong>Step 4.</strong> Sugar</h2>



<p>Put 1.5 or 2 cups of granulated sugar in the mixing bowl.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="750" height="500" src="https://illustratordersleri.com/wp-content/uploads/2022/04/limonata-yapimi.jpg" alt="" class="wp-image-3463" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/limonata-yapimi.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/limonata-yapimi-300x200.jpg 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></figure>



<h2 class="wp-block-heading"><strong>Step 5</strong>. Water and preperation </h2>



<ul class="wp-block-list">
<li>Add 2-3 glasses of water to the mixture. and blend with a stabmixer.</li>



<li>About 1 minute of mixing will suffice. It is important to use a deep mixing bowl for the use of a stabmixer so that the mixture does not splash around.</li>



<li></li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="750" height="500" src="https://illustratordersleri.com/wp-content/uploads/2022/04/Limonata-nasil-yapilir.jpg" alt="" class="wp-image-3465" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/Limonata-nasil-yapilir.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/Limonata-nasil-yapilir-300x200.jpg 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></figure>



<ul class="wp-block-list">
<li>Add water after mixing is complete. With the help of clean cheesecloth, light shawl, or scarf, strain into another container and transfer the lemonade.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="750" height="500" src="https://illustratordersleri.com/wp-content/uploads/2022/04/limonata-nasil-suzulur.jpg" alt="" class="wp-image-3467" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/limonata-nasil-suzulur.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/limonata-nasil-suzulur-300x200.jpg 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></figure>



<ul class="wp-block-list">
<li>Put your strained lemonade in a pitcher or bottle and chill in the refrigerator. Serve cold.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="750" height="500" src="https://illustratordersleri.com/wp-content/uploads/2022/04/kolay-lmonata.jpg" alt="" class="wp-image-3469" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/kolay-lmonata.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/kolay-lmonata-300x200.jpg 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></figure>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="750" height="500" src="https://illustratordersleri.com/wp-content/uploads/2022/04/ev-yapimi-bardak-limonata.jpg" alt="" class="wp-image-3468" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/ev-yapimi-bardak-limonata.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/ev-yapimi-bardak-limonata-300x200.jpg 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></figure>



<h2 class="wp-block-heading">How should lemonade ingredients be stored?</h2>



<p>You can store lemonade ingredients in your deep freezer for a long time. I recommend keeping only the lemon juice and orange peel so that the ingredients do not take up much space.</p>



<ul class="wp-block-list">
<li>Peel or grate the orange peels. Put them in a freezer bag and place them in the deep freezer.  </li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="750" height="500" src="https://illustratordersleri.com/wp-content/uploads/2022/04/orange-peels.jpg" alt="" class="wp-image-3523" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/orange-peels.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/orange-peels-300x200.jpg 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></figure>



<ul class="wp-block-list">
<li>To store lemon juice, squeeze your lemons and place them in an ice tray to freeze them in the freezer.</li>
</ul>



<figure class="wp-block-table aligncenter"><table><tbody><tr><td><img loading="lazy" decoding="async" width="350" height="233" class="wp-image-3471" style="width: 350px;" src="https://illustratordersleri.com/wp-content/uploads/2022/04/Limon-sikacagi.jpg" alt="" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/Limon-sikacagi.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/Limon-sikacagi-300x200.jpg 300w" sizes="auto, (max-width: 350px) 100vw, 350px" /></td><td><img loading="lazy" decoding="async" width="350" height="233" class="wp-image-3472" style="width: 350px;" src="https://illustratordersleri.com/wp-content/uploads/2022/04/limon-buzluk.jpg" alt="" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/limon-buzluk.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/limon-buzluk-300x200.jpg 300w" sizes="auto, (max-width: 350px) 100vw, 350px" /></td></tr></tbody></table></figure>



<ul class="wp-block-list">
<li>Take the frozen lemon ice cubes out of the ice container and place them in the freezer bag again.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="750" height="500" src="https://illustratordersleri.com/wp-content/uploads/2022/04/limon-buz-kupu.jpg" alt="" class="wp-image-3473" srcset="https://illustratordersleri.com/wp-content/uploads/2022/04/limon-buz-kupu.jpg 750w, https://illustratordersleri.com/wp-content/uploads/2022/04/limon-buz-kupu-300x200.jpg 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></figure>



<p>Thank you. </p>



<p>Akif Kutlu</p>



<p></p>
<p>The post <a href="https://illustratordersleri.com/homemade-lemonade-recipe/">homemade lemonade recipe</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to add youtube chapters using Camtasia markers</title>
		<link>https://illustratordersleri.com/how-to-add-youtube-chapters-using-camtasia-markers/</link>
		
		<dc:creator><![CDATA[akif kutlu]]></dc:creator>
		<pubDate>Sat, 12 Mar 2022 17:30:01 +0000</pubDate>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[camtasia tutorial]]></category>
		<category><![CDATA[youtube chapters]]></category>
		<guid isPermaLink="false">https://illustratordersleri.com/?p=3349</guid>

					<description><![CDATA[<p>Create youtube chapters automatically Learn how to create chapters in Camtasia step-by-step and make your videos more organized and engaging with time-based sections. You can prepare the sections that appear on the progress bar of youtube videos before uploading your</p>
<p>The post <a href="https://illustratordersleri.com/how-to-add-youtube-chapters-using-camtasia-markers/">How to add youtube chapters using Camtasia markers</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading">Create youtube chapters automatically</h1>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="640" height="296" src="https://illustratordersleri.com/wp-content/uploads/2022/03/featured-tr.jpg" alt="" class="wp-image-3351" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/featured-tr.jpg 640w, https://illustratordersleri.com/wp-content/uploads/2022/03/featured-tr-300x139.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></figure>



<p>Learn how to create chapters in Camtasia step-by-step and make your videos more organized and engaging with time-based sections. You can prepare the sections that appear on the progress bar of youtube videos before uploading your video to youtube. All you have to do is add sections to your video using the Camtasia Studio video editing program. When you upload your video to YouTube, YouTube automatically adds the times and titles of the chapters you created to your video’s description. Follow the steps below to create automatic video chapters.</p>



<h2 class="wp-block-heading"><strong>Step 1.</strong> Create sample scenes with Camtasia</h2>



<p>There are restrictions that need attention for the creation of video chapters in the scrubber bar. The video must consist of at least 3 segments. The first segment timestamp should always be 00:00 and the individual video segments must be at least 10 sec.</p>



<ul class="wp-block-list">
<li>Drag and drop sample media to the timeline in the Camtasia workspace. Below is the text box placed on track 1.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="446" height="510" src="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-timeline.jpg" alt="add text to timeline" class="wp-image-3296" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-timeline.jpg 446w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-timeline-262x300.jpg 262w" sizes="auto, (max-width: 446px) 100vw, 446px" /></figure>



<ul class="wp-block-list">
<li>Extend the length of the text box to at least 10 sec. You can expand the right part of the text box by holding down the left mouse button.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="502" height="258" src="https://illustratordersleri.com/wp-content/uploads/2022/03/youtube-chapter-lenght.gif" alt="" class="wp-image-3332"/></figure>



<ul class="wp-block-list">
<li>Make 2 more copies with copy-paste from the text box, sequentially. or extend the length of the previous text box to add at least 3 markers (min 30 sec)</li>
</ul>



<h2 class="wp-block-heading"><strong>Step 2.</strong> Define the Chapters</h2>



<p>To create chapters, you must turn on the “marker track” in the timeline. If it isn’t visible:</p>



<p>Open the marker track section with <strong>view&gt;show marker track</strong>. When opened, an additional line will appear on the timeline as follows.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="416" height="231" src="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-show-marker-track.jpg" alt="" class="wp-image-3339" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-show-marker-track.jpg 416w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-show-marker-track-300x167.jpg 300w" sizes="auto, (max-width: 416px) 100vw, 416px" /></figure>



<p>Click anywhere on the marker track on the timeline with the mouse. Camtasia automatically places a marker where you click. Make sure to create the first marker at 00:00. If you are not sure, you can move the marker by holding down the left mouse button.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="502" height="258" src="https://illustratordersleri.com/wp-content/uploads/2022/03/camtasia-create-marker.gif" alt="" class="wp-image-3337"/></figure>



<ul class="wp-block-list">
<li>You can rename marker tracks with a right click on the marker with the <strong>rename </strong>option or with a single left click. The name of the selected section marker is changed with <strong>Marker Name: </strong>in the Properties window on the right side of the Camtasia screen.</li>
</ul>



<h2 class="wp-block-heading"><strong>Step 3. </strong>Upload your video to Youtube site.</h2>



<p>You should upload your created work directly to the youtube site. locally produced files do not retain chapter markers information. So when generating the file:</p>



<ul class="wp-block-list">
<li>Make the camtasia-youtube link with <strong>Export&gt;Youtube</strong> from the Camtasia top menu.</li>
</ul>



<ul class="wp-block-list">
<li>With the <strong>Sign in button</strong>, enter the youtube username and password that your channel is connected to. Sign in will direct you to the youtube login page. If you enter your information correctly, you will be directed  back to the camtasia screen again.</li>
</ul>



<p></p>



<p>In the window where you will enter your project information, you can provide information about your project if you wish. You can also enter this information from the youtube website after the video is uploaded.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="650" height="736" src="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-upload-youtube-video.jpg" alt="" class="wp-image-3340" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-upload-youtube-video.jpg 650w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-upload-youtube-video-265x300.jpg 265w" sizes="auto, (max-width: 650px) 100vw, 650px" /></figure>



<ul class="wp-block-list">
<li>The &#8220;<strong>create table of contents from markers</strong>&#8221; checkbox must be checked for the video chapters to be created automatically. Don&#8217;t forget to mark this chekbox.</li>



<li>It&#8217;s a good idea to upload your video as Private to check out your latest edits.</li>
</ul>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>Have it in mind. If you cannot upload the video to Youtube due to an internet connection problem, you will have to do the compilation process again. This can be a bit annoying for videos that take a long time to compile.</p>
</blockquote>



<p>I hope this helps</p>



<p>Akif Kutlu</p>



<p></p>



<p></p>



<p></p>



<p></p>
<p>The post <a href="https://illustratordersleri.com/how-to-add-youtube-chapters-using-camtasia-markers/">How to add youtube chapters using Camtasia markers</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to add scrolling text effect in Camtasia</title>
		<link>https://illustratordersleri.com/how-to-add-scrolling-text-effect-in-camtasia/</link>
		
		<dc:creator><![CDATA[akif kutlu]]></dc:creator>
		<pubDate>Sun, 06 Mar 2022 07:21:19 +0000</pubDate>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[camtasia tutorial]]></category>
		<category><![CDATA[constant speed]]></category>
		<category><![CDATA[scrolling text]]></category>
		<guid isPermaLink="false">https://illustratordersleri.com/?p=3308</guid>

					<description><![CDATA[<p>Constant speed moving text effect using Camtasia Studio With Camtasia, you can add the list of people who contributed to the video production as a credit at the end of the video, scrolling up from the bottom of the screen.</p>
<p>The post <a href="https://illustratordersleri.com/how-to-add-scrolling-text-effect-in-camtasia/">How to add scrolling text effect in Camtasia</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading">Constant speed moving text effect using Camtasia Studio</h1>



<p>With Camtasia, you can add the list of people who contributed to the video production as a credit at the end of the video, scrolling up from the bottom of the screen. Please continue reading this text to create a scrolling text.&nbsp;If you already know how to make scrolling text and are wondering how you can make it move at a constant speed, jump right <a href="#adim5">here</a>.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="600" height="293" src="https://illustratordersleri.com/wp-content/uploads/2022/03/camtasia-sabit-hiz-kayan-yazi.gif" alt="camtasia kayan yazı" class="wp-image-3283"/></figure>



<p>Follow the steps below to create a scrolling text effect.</p>



<h2 class="wp-block-heading"><strong>Step 1.</strong>&nbsp;Create a Text Box</h2>



<ul class="wp-block-list">
<li><strong>To create a text box, first, select the Annotations</strong>&nbsp;tab&nbsp;from the &#8220;menu&#8221; on the left side of the Camtasia workspace <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color">( <strong>1 </strong>)</mark>. The annotations tab consists of sub-tabs. </li>
</ul>



<ul class="wp-block-list">
<li>Click&nbsp;The <strong>Callouts </strong>tab  <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color">( <strong>2 </strong>)</mark>. The text box is located at the bottom of the window <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color">( <strong>3 </strong>)</mark>.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="545" height="600" src="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-Anotations.jpg" alt="camtasia text box" class="wp-image-3291" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-Anotations.jpg 545w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-Anotations-273x300.jpg 273w" sizes="auto, (max-width: 545px) 100vw, 545px" /></figure>



<ul class="wp-block-list">
<li>Now drag the text box and drop it to timeline as show in figure below. </li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="446" height="510" src="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-timeline.jpg" alt="add text to timeline" class="wp-image-3296" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-timeline.jpg 446w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-timeline-262x300.jpg 262w" sizes="auto, (max-width: 446px) 100vw, 446px" /></figure>



<h2 class="wp-block-heading"><strong>Step 2.</strong>&nbsp;Create your “contributor” list</h2>



<ul class="wp-block-list">
<li>Set the display view to 25% to see the exact placement of the text (You can also change the view percentage after creating the text content)</li>



<li>Prepare your list by double-clicking the text box in the screen workspace.&nbsp;You can add a list of people who contributed to the video production, or you can add a test text “<a rel="noreferrer noopener" href="https://www.lipsum.com/" target="_blank">lorem ipsum</a>”.</li>



<li>Move the text box to the bottom of the screen.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="590" height="600" src="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-scrooling-text-.jpg" alt="Camtasia create creditentials" class="wp-image-3295" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-scrooling-text-.jpg 590w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-scrooling-text--295x300.jpg 295w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-scrooling-text--45x45.jpg 45w" sizes="auto, (max-width: 590px) 100vw, 590px" /></figure>



<h2 class="wp-block-heading"><strong>Step 4.</strong>&nbsp;Create the animation.</h2>



<p>A user-defined animation must be added for the scrolling text effect. in order to to do this:</p>



<ul class="wp-block-list">
<li>Click the <strong>Animations </strong>tab from the menu<mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color"> ( <strong>1 </strong>)</mark> . If it is not visible, it is under the more tab.&nbsp;In that case, click&nbsp;<strong>More</strong>&nbsp;, then the&nbsp;<strong>Animations</strong>&nbsp;tab.</li>



<li></li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="554" height="624" src="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-custom-animation.jpg" alt="custom animation" class="wp-image-3293" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-custom-animation.jpg 554w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-custom-animation-266x300.jpg 266w" sizes="auto, (max-width: 554px) 100vw, 554px" /></figure>



<ul class="wp-block-list">
<li>The Animations tab consists of two sub-tabs.&nbsp;One of these is the&nbsp;<strong>Animations</strong>&nbsp;sub-tab. Click Animations sub-tab <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color">( <strong>2</strong> )</mark>.</li>



<li>Drag <strong>Custom animation</strong>&nbsp;feature from animation&nbsp;tab<mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color"> ( <strong>3</strong> ) </mark>and drop it onto the text item you just created on the timeline.</li>
</ul>



<h2 class="wp-block-heading"><strong>Step 5.</strong>&nbsp;Create animation.</h2>



<p>An arrow-like shape the one below should appear in the text item on the timeline.&nbsp;it has two ends. The number <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color">( <strong>1</strong> )</mark>  represents the initial position of the object. The number <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color">( 2 ) </mark>on the right-hand side of the object represents<mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color"> </mark>the next location of the object.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="706" height="174" src="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-custom-animation-setup.jpg" alt="animation arrow" class="wp-image-3292" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-custom-animation-setup.jpg 706w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-custom-animation-setup-300x74.jpg 300w" sizes="auto, (max-width: 706px) 100vw, 706px" /></figure>



<p>Since the location change has not been made yet, no movement will occur when the video is played at this moment.&nbsp;</p>



<p>The second position of the text object should be the top of the screen, as the text is intended to slide from the bottom up.&nbsp;For this :</p>



<ul class="wp-block-list">
<li>First, select the circle on the right side of the arrow with left mouse click. Clicking will also place the playhead to this position. </li>



<li>Then drag the text object to the top so that it completely disappears from the Screen.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="745" height="786" src="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-add-animations.jpg" alt="camtasia add animation" class="wp-image-3289" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-add-animations.jpg 745w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-add-animations-284x300.jpg 284w" sizes="auto, (max-width: 745px) 100vw, 745px" /></figure>



<p>The most basic animation process has been completed.&nbsp;If the play button is pressed, it is seen that the animation takes place on the screen.</p>



<h2 class="wp-block-heading" id="adim5"><strong>Step 6.</strong>&nbsp;Edit the animation properties.</h2>



<p>you can change both the animation type and the scrolling speed. Extending the text box item in the track slows down the animation speed. if you extend the text length you also need to extend the animation length. </p>



<ul class="wp-block-list">
<li>To change the animation length, hold down the right circle of the animation arrow with the left mouse click and lengthen or shorten it as much as you want.</li>
</ul>



<p>The scroll effect you create progresses slowly at the beginning of the animation, then fast, and then slows down again towards the end of the animation.&nbsp;this is the default type of animation. if you want scrolling effect at constant speed you also need to change the animation type. </p>



<ul class="wp-block-list">
<li>Right-click on the&nbsp;<strong>animation arrow</strong>&nbsp;</li>
</ul>



<ul class="wp-block-list">
<li><strong>Select Enable easing &gt;Linear</strong>&nbsp;from the drop-down menu.&nbsp;Your text will now progress at a constant speed.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="844" height="287" src="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-animation-properties.jpg" alt="Animation properties" class="wp-image-3290" srcset="https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-animation-properties.jpg 844w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-animation-properties-300x102.jpg 300w, https://illustratordersleri.com/wp-content/uploads/2022/03/Camtasia-animation-properties-768x261.jpg 768w" sizes="auto, (max-width: 844px) 100vw, 844px" /></figure>



<p>Need more details? watch the video below. have fun.</p>



<figure class="wp-block-embed aligncenter is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Camtasia constant speed scrolling text" width="750" height="422" src="https://www.youtube.com/embed/tjzQ0ph24ic?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div></figure>



<p>Akif KUTLU</p>
<p>The post <a href="https://illustratordersleri.com/how-to-add-scrolling-text-effect-in-camtasia/">How to add scrolling text effect in Camtasia</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to add background color to text in illustrator</title>
		<link>https://illustratordersleri.com/how-to-add-background-color-to-text-in-adobe-illustrator-step-by-step-guide/</link>
		
		<dc:creator><![CDATA[akif kutlu]]></dc:creator>
		<pubDate>Wed, 12 May 2021 10:20:12 +0000</pubDate>
				<category><![CDATA[Advanced Notes]]></category>
		<category><![CDATA[illustrator bacground]]></category>
		<category><![CDATA[illustrator text background]]></category>
		<category><![CDATA[text]]></category>
		<guid isPermaLink="false">https://illustratordersleri.com/?p=3113</guid>

					<description><![CDATA[<p>Changing text background-color in illustrator Follow these steps to change the background color of Point Type text without losing its editability. Step 1. Type a text on the workspace with the Point Type tool. Step 2.&#160;Open the appearance panel. Change</p>
<p>The post <a href="https://illustratordersleri.com/how-to-add-background-color-to-text-in-adobe-illustrator-step-by-step-guide/">How to add background color to text in illustrator</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading">Changing text background-color in illustrator</h1>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="640" height="296" src="https://illustratordersleri.com/wp-content/uploads/2021/05/Featured-2.jpg" alt="illustrator add background color to text" class="wp-image-3118" srcset="https://illustratordersleri.com/wp-content/uploads/2021/05/Featured-2.jpg 640w, https://illustratordersleri.com/wp-content/uploads/2021/05/Featured-2-300x139.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></figure>



<p>Follow these steps to change the background color of Point Type text without losing its editability.</p>



<h2 class="wp-block-heading"><strong>Step 1</strong>. Type a text on the workspace with the Point Type tool.</h2>



<ul class="wp-block-list">
<li>Go to  <strong>Point type tool (T)</strong> on toolbar</li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="129" height="262" src="https://illustratordersleri.com/wp-content/uploads/2021/05/illustrator-Point-Type-tool.jpg" alt="illustrator point type tool" class="wp-image-3109"/></figure>



<ul class="wp-block-list">
<li>Click anywhere on the workspace</li>



<li>Edit text content if you like.</li>



<li>Change the text color. &#8220;Red&#8221; is ok. </li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="495" height="217" src="https://illustratordersleri.com/wp-content/uploads/2021/05/illustrator-Select-text.jpg" alt="illustrator text color change" class="wp-image-3110" srcset="https://illustratordersleri.com/wp-content/uploads/2021/05/illustrator-Select-text.jpg 495w, https://illustratordersleri.com/wp-content/uploads/2021/05/illustrator-Select-text-300x132.jpg 300w" sizes="auto, (max-width: 495px) 100vw, 495px" /></figure>



<h2 class="wp-block-heading"><strong>Step 2</strong>.&nbsp;Open the appearance panel.</h2>



<ul class="wp-block-list">
<li><strong>elect the text using the Selection Tool (V).</strong> A blue <strong>bounding box</strong> will appear around it. If you don’t see the box, go to <strong>View > Show Bounding Box</strong> to make it visible.</li>



<li></li>



<li>Open the<strong> Apperanace panel (1)</strong>.  Alternatively, you can open it with <strong>Window> Apperanace panel</strong>. If you&#8217;re using a newer version of illustrator, consider changing the workspace. You can change the workspace by clicking the upper right icon.</li>



<li></li>
</ul>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="407" height="438" src="https://illustratordersleri.com/wp-content/uploads/2021/05/Text-add-new-fill.jpg" alt="illustrator appearance panel" class="wp-image-3111" srcset="https://illustratordersleri.com/wp-content/uploads/2021/05/Text-add-new-fill.jpg 407w, https://illustratordersleri.com/wp-content/uploads/2021/05/Text-add-new-fill-279x300.jpg 279w" sizes="auto, (max-width: 407px) 100vw, 407px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="367" height="342" src="https://illustratordersleri.com/wp-content/uploads/2022/09/change-workspace-in-illustrator.jpg" alt="" class="wp-image-3906" srcset="https://illustratordersleri.com/wp-content/uploads/2022/09/change-workspace-in-illustrator.jpg 367w, https://illustratordersleri.com/wp-content/uploads/2022/09/change-workspace-in-illustrator-300x280.jpg 300w" sizes="auto, (max-width: 367px) 100vw, 367px" /></figure>



<p>Change workspace </p>
</div>
</div>



<h2 class="wp-block-heading"><strong>Step 3</strong>.&nbsp;Add new fill color</h2>



<ul class="wp-block-list">
<li><strong>Click the box (2) at the bottom-left of the Appearance panel to add a new fill color.</strong> The new fill appears on top, hiding the original text color — so <strong>drag it below</strong> to fix the order.</li>



<li>Drag the new fill color below the Characters line using the left mouse button.</li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="456" height="512" src="https://illustratordersleri.com/wp-content/uploads/2021/05/illustrator-add-new-fill.gif" alt="Add new fill using appearance panel" class="wp-image-3108"/></figure>



<p class="has-black-color has-text-color has-background" style="background-color:#ffebaa"><strong>Note: </strong>The<strong> Characters</strong>&nbsp;line provides a second option where you can change the text color.&nbsp;By double-clicking, you can enter the section where you can change the text color while in the appearance panel.&nbsp;After changing the text color,&nbsp;just double-click&nbsp;the&nbsp;Type&nbsp;line&nbsp;at the top to go back.</p>



<h2 class="wp-block-heading"><strong>Step 4</strong>.&nbsp;Convert the Fill color to Rectangle</h2>



<ul class="wp-block-list">
<li>Add Rectangle effect with Fx at the bottom of the Appearance panel as follows.&nbsp;This effect changes the background color to a rectangle to cover the text.</li>



<li></li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="610" height="660" src="https://illustratordersleri.com/wp-content/uploads/2021/05/change-text-background-illustrator.jpg" alt="Add new effect to text in illustrator" class="wp-image-3106" srcset="https://illustratordersleri.com/wp-content/uploads/2021/05/change-text-background-illustrator.jpg 610w, https://illustratordersleri.com/wp-content/uploads/2021/05/change-text-background-illustrator-277x300.jpg 277w" sizes="auto, (max-width: 610px) 100vw, 610px" /></figure>



<ul class="wp-block-list">
<li>You can change the values ​​related to the size of the rectangle in the dialog box.</li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="451" height="523" src="https://illustratordersleri.com/wp-content/uploads/2021/05/illustrator-add-new-effect.jpg" alt="Convert to shape in illustrator" class="wp-image-3107" srcset="https://illustratordersleri.com/wp-content/uploads/2021/05/illustrator-add-new-effect.jpg 451w, https://illustratordersleri.com/wp-content/uploads/2021/05/illustrator-add-new-effect-259x300.jpg 259w" sizes="auto, (max-width: 451px) 100vw, 451px" /></figure>



<ul class="wp-block-list">
<li>The&nbsp;<strong>Rectangle</strong>&nbsp;effect you&nbsp;created&nbsp;may not have occurred where it should be in the appearance panel.&nbsp;In this case, move the effect under the fill color you just created, as shown below.</li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="480" height="517" src="https://illustratordersleri.com/wp-content/uploads/2021/05/Appearance-panel-order.gif" alt="change order in appearance panel" class="wp-image-3105"/></figure>



<p>Now your background color is ready.&nbsp;The text is editable.</p>



<p>have fun.</p>



<p>Akif Kutlu</p>
<p>The post <a href="https://illustratordersleri.com/how-to-add-background-color-to-text-in-adobe-illustrator-step-by-step-guide/">How to add background color to text in illustrator</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to combine mp3 audio files into one in windows 10</title>
		<link>https://illustratordersleri.com/how-to-combine-mp3-audio-files-into-one-in-windows-10/</link>
		
		<dc:creator><![CDATA[akif kutlu]]></dc:creator>
		<pubDate>Sun, 07 Feb 2021 09:16:22 +0000</pubDate>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[combine audio files]]></category>
		<category><![CDATA[how to merge audio files]]></category>
		<category><![CDATA[merge mp3 files]]></category>
		<guid isPermaLink="false">https://illustratordersleri.com/?p=3030</guid>

					<description><![CDATA[<p>Merge multiple audio files into one offline One way of combining and, if desired, converting audio files to other formats is to use pc software. To me, &#8220;Audio recorder titanium&#8221; is the best audio editing software with its simplicity and</p>
<p>The post <a href="https://illustratordersleri.com/how-to-combine-mp3-audio-files-into-one-in-windows-10/">How to combine mp3 audio files into one in windows 10</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading">Merge multiple audio files into one offline </h1>



<p>One way of combining and, if desired, converting audio files to other formats is to use pc software. To me, &#8220;Audio recorder titanium&#8221; is the best audio editing software with its simplicity and affordable price. you can combine multiple mp3 files into one large file for your youtube stream.</p>



<p> Are you ready. Let&#8217;s get started. </p>



<p>Windows users should download and install the &#8220;Audio recorder titanium &#8220;software from <a rel="noreferrer noopener" href="https://audiorecorders.us/" target="_blank">here </a></p>



<h2 class="wp-block-heading"><strong>Step 1.</strong> Run built-in Editor Software</h2>



<p>After installation complete,</p>



<ul class="wp-block-list">
<li>Go to window search bar </li>



<li>Type &#8220;Build-in Audio Editor&#8221;</li>



<li>Run the program</li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="576" height="377" src="https://illustratordersleri.com/wp-content/uploads/2021/02/windows10-search-bar.jpg" alt="Windows 10 search bar" class="wp-image-3040" srcset="https://illustratordersleri.com/wp-content/uploads/2021/02/windows10-search-bar.jpg 576w, https://illustratordersleri.com/wp-content/uploads/2021/02/windows10-search-bar-300x196.jpg 300w" sizes="auto, (max-width: 576px) 100vw, 576px" /></figure>



<h2 class="wp-block-heading"><strong>Step 2.</strong> Go to &#8220;File Merger&#8221;</h2>



<p>Wen software user interface is open </p>



<ul class="wp-block-list">
<li>Go to &#8220;File&#8221; Tab</li>



<li>Click &#8220;File merger&#8221; icon</li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="517" src="https://illustratordersleri.com/wp-content/uploads/2021/02/Audio-Recorder-titanium-1024x517.jpg" alt="audio editor software" class="wp-image-3037" srcset="https://illustratordersleri.com/wp-content/uploads/2021/02/Audio-Recorder-titanium-1024x517.jpg 1024w, https://illustratordersleri.com/wp-content/uploads/2021/02/Audio-Recorder-titanium-300x152.jpg 300w, https://illustratordersleri.com/wp-content/uploads/2021/02/Audio-Recorder-titanium-768x388.jpg 768w, https://illustratordersleri.com/wp-content/uploads/2021/02/Audio-Recorder-titanium.jpg 1059w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading"><strong>Step 3. </strong>Add Files</h2>



<p>&#8220;File Merger&#8221; dialog box allows you to add multiple files and convert them to any available audio file format. </p>



<ul class="wp-block-list">
<li>Click &#8220;Add files&#8221; icon </li>



<li>When file explorer opens select the files you need to combine. You can either select one by one or multiple files at once. </li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="762" height="453" src="https://illustratordersleri.com/wp-content/uploads/2021/02/Mp3-Merge.jpg" alt="adio file merge" class="wp-image-3039" srcset="https://illustratordersleri.com/wp-content/uploads/2021/02/Mp3-Merge.jpg 762w, https://illustratordersleri.com/wp-content/uploads/2021/02/Mp3-Merge-300x178.jpg 300w" sizes="auto, (max-width: 762px) 100vw, 762px" /></figure>



<h2 class="wp-block-heading"><strong>Step 4. </strong>combine mp3 files </h2>



<ul class="wp-block-list">
<li>Select desired output format from the &#8220;export format&#8221; section</li>



<li>and click Merge. Give a name for the new file and save it to your local drive. It may take some time to merge files depending on the number of files to be added. </li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="728" height="427" src="https://illustratordersleri.com/wp-content/uploads/2021/02/Auido-convert-file-format.jpg" alt="convert mp3 to other file format" class="wp-image-3038" srcset="https://illustratordersleri.com/wp-content/uploads/2021/02/Auido-convert-file-format.jpg 728w, https://illustratordersleri.com/wp-content/uploads/2021/02/Auido-convert-file-format-300x176.jpg 300w" sizes="auto, (max-width: 728px) 100vw, 728px" /></figure>



<p>Thanks for reading. </p>
<p>The post <a href="https://illustratordersleri.com/how-to-combine-mp3-audio-files-into-one-in-windows-10/">How to combine mp3 audio files into one in windows 10</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to create a youtube notification bell icon in illustrator ( free download )</title>
		<link>https://illustratordersleri.com/create-a-youtube-notification-bell-icon/</link>
		
		<dc:creator><![CDATA[akif kutlu]]></dc:creator>
		<pubDate>Tue, 29 Dec 2020 22:36:18 +0000</pubDate>
				<category><![CDATA[What to Draw]]></category>
		<category><![CDATA[Bell icon]]></category>
		<category><![CDATA[Rectangle tool]]></category>
		<category><![CDATA[Round corners]]></category>
		<guid isPermaLink="false">https://illustratordersleri.com/?p=2956</guid>

					<description><![CDATA[<p>It is not very difficult to draw a bell icon in Illustrator. Here you can find the steps to draw a bell icon. Also, you can watch the youtube video below if you wish. you also find the free bell</p>
<p>The post <a href="https://illustratordersleri.com/create-a-youtube-notification-bell-icon/">How to create a youtube notification bell icon in illustrator ( free download )</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-large is-resized"><img loading="lazy" decoding="async" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Bell-icon.png" alt="Free bell icon png" class="wp-image-2973" width="134" height="131" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Bell-icon.png 536w, https://illustratordersleri.com/wp-content/uploads/2020/12/Bell-icon-300x293.png 300w, https://illustratordersleri.com/wp-content/uploads/2020/12/Bell-icon-45x45.png 45w" sizes="auto, (max-width: 134px) 100vw, 134px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<p>It is not very difficult to draw a bell icon in Illustrator. Here you can find the steps to draw a bell icon. Also, you can watch the youtube video below if you wish. you also find the free bell icon download link below. </p>



<p>Let&#8217;s get started.</p>
</div>
</div>



<h2 class="wp-block-heading"><strong>Step 1.</strong> Create a new document</h2>



<p>As in many projects, let&#8217;s create a new document with &#8220;<strong>File&gt; new</strong>&#8220;. Artboard dimensions should be larger than 200 x 200. I also recommend that you turn off the &#8220;<strong>View&gt; Snap to pixel</strong>&#8221; feature. Sometimes it can cause problems in catching points or combining objects.</p>



<h2 class="wp-block-heading"><strong>Step 2. </strong>Draw a rectangle </h2>



<ul class="wp-block-list"><li>Go to the tools panel.</li><li> Pick up the rectangle tool. </li></ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="204" height="210" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Rectangle-tool-icon.jpg" alt="" class="wp-image-2963" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Rectangle-tool-icon.jpg 204w, https://illustratordersleri.com/wp-content/uploads/2020/12/Rectangle-tool-icon-45x45.jpg 45w" sizes="auto, (max-width: 204px) 100vw, 204px" /></figure>



<ul class="wp-block-list"><li>Go back to the artboard and one-click somewhere. Do not draw on the fly. One-click on the artboard will open the rectangle tool dialog box. </li><li>Type 100 px for the widht and 120 for the heigh</li><li>Hit Ok</li></ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="328" height="266" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Rectangle-dialog-box.jpg" alt="" class="wp-image-2964" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Rectangle-dialog-box.jpg 328w, https://illustratordersleri.com/wp-content/uploads/2020/12/Rectangle-dialog-box-300x243.jpg 300w" sizes="auto, (max-width: 328px) 100vw, 328px" /></figure>



<ul class="wp-block-list"><li>Fill rectangle with black color and remove stroke if any. </li></ul>



<h2 class="wp-block-heading"><strong>Step 3.</strong> Form Rectangle for the bell icon</h2>



<ul class="wp-block-list"><li>Pick up the  <strong>Direct Selection Tool (A)</strong> from the tools panel. </li><li>Select the Upper two anchor points of the rectangle</li><li>To round the corners of a shape, while the anchor points are still selected, click and drag one of the corner handles (the blue dots inside the corners of the shape).</li></ul>



<figure class="wp-block-image aligncenter size-large is-resized"><img loading="lazy" decoding="async" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Bell-round-upper-corners.gif" alt="" class="wp-image-2965" width="258" height="311"/></figure>



<ul class="wp-block-list"><li>If not Turn on rulers with <strong>CTRL + R</strong> </li><li>Go inside of the top ruler. Drag a guide from the ruler and drop it to the bottom corner of the rectangle.</li></ul>



<figure class="wp-block-image aligncenter size-large is-resized"><img loading="lazy" decoding="async" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Place-guide.jpg" alt="" class="wp-image-2966" width="348" height="346" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Place-guide.jpg 464w, https://illustratordersleri.com/wp-content/uploads/2020/12/Place-guide-300x298.jpg 300w, https://illustratordersleri.com/wp-content/uploads/2020/12/Place-guide-150x150.jpg 150w, https://illustratordersleri.com/wp-content/uploads/2020/12/Place-guide-230x230.jpg 230w, https://illustratordersleri.com/wp-content/uploads/2020/12/Place-guide-45x45.jpg 45w" sizes="auto, (max-width: 348px) 100vw, 348px" /></figure>



<ul class="wp-block-list"><li>Pick up <strong>Direct Selection tool (A)</strong> </li><li>Select the Guide and </li><li>Reposition it by typing &#8211; 30 in the Y value at the Anchor point control panel </li><li>Hit Ok. This will place the guide 30 px up from the bottom of the rectangle</li></ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="464" height="120" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Reposition-the-quide.jpg" alt="" class="wp-image-2967" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Reposition-the-quide.jpg 464w, https://illustratordersleri.com/wp-content/uploads/2020/12/Reposition-the-quide-300x78.jpg 300w" sizes="auto, (max-width: 464px) 100vw, 464px" /></figure>



<ul class="wp-block-list"><li>Now pick up the <strong>selection tool (v) </strong>and select only the black shape</li><li>Goto to Tools panel and long click the pen icon to pick up <strong>add anchor point tool</strong> </li><li>Add two extra anchor points to the path of the shape at the intersections of the guide.</li></ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="510" height="582" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Add-anchor-points.jpg" alt="" class="wp-image-2968" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Add-anchor-points.jpg 510w, https://illustratordersleri.com/wp-content/uploads/2020/12/Add-anchor-points-263x300.jpg 263w" sizes="auto, (max-width: 510px) 100vw, 510px" /></figure>



<ul class="wp-block-list"><li>You can delete the guide at this point. you do not need it anymore. </li><li>Pick up two anchor points at the bottom of the shape using <strong>Direct selection tool (A)</strong></li><li>Go to the Tools panel and double-click <strong>Scale Tool</strong> (1)</li><li>Select non-uniform (2) in the dialog box and</li><li>Type 200% for the horizontal value (3)</li></ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="600" height="633" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Scale-tool.jpg" alt="" class="wp-image-2969" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Scale-tool.jpg 600w, https://illustratordersleri.com/wp-content/uploads/2020/12/Scale-tool-284x300.jpg 284w" sizes="auto, (max-width: 600px) 100vw, 600px" /></figure>



<ul class="wp-block-list"><li>While bottom anchor points selected give the 8 px for corners value </li></ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="543" height="578" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Round-botom-anchor-points.jpg" alt="" class="wp-image-2970" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Round-botom-anchor-points.jpg 543w, https://illustratordersleri.com/wp-content/uploads/2020/12/Round-botom-anchor-points-282x300.jpg 282w" sizes="auto, (max-width: 543px) 100vw, 543px" /></figure>



<ul class="wp-block-list"><li>It is time to select two extra anchor points  that we have just created, using <strong>Direct Selection Tool (A)</strong></li><li>Goto control panel and Give the corner round value as 30 px </li></ul>



<p>We have creted the outer shape of the bell now. </p>



<h2 class="wp-block-heading"><strong>Step 4:</strong> Create handle and Clapper</h2>



<p>You can use different shapes for the handle and Clapper. I will keep it simple and draw two circles for handle and clapper. The final shape would look like this:</p>


<div class="sdm_fancy_template_wrapper"><div class="sdm_fancy2_item "><div class="sdm_fancy2_wrapper"><div class="sdm_fancy2_download_item_top"><div class="sdm_fancy2_download_thumbnail"><img decoding="async" class="sdm_fancy2_thumb_image" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Bell-icon.png" alt = "" /></div></div><div class="sdm_fancy2_download_title"></div><div class="sdm_fancy2_download_link"><a href="https://illustratordersleri.com/?sdm_process_download=1&download_id=2972" class="sdm_fancy2_download_dl_link" target="_self">Download Now!</a></div></div></div></div><div class="sdm_clear_float"></div>



<p>The bell icon here is in PNG file format. you can download it for free and use it in your projects if you like. </p>



<p>If you still want more information about how to draw the bell icon, you can watch my youtube video below. Please do not forget to subscribe to my youtube channel. Thanks for being here,</p>



<figure class="wp-block-embed aligncenter is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
https://youtu.be/XbQ41qi3cDw
</div></figure>



<p>Akif Kutlu</p>



<p></p>
<p>The post <a href="https://illustratordersleri.com/create-a-youtube-notification-bell-icon/">How to create a youtube notification bell icon in illustrator ( free download )</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to sample colors using  eyedropper tool outside of illustrator</title>
		<link>https://illustratordersleri.com/how-to-sample-colors-using-eyedropper-tool-outside-of-illustrator/</link>
		
		<dc:creator><![CDATA[akif kutlu]]></dc:creator>
		<pubDate>Tue, 22 Dec 2020 21:18:02 +0000</pubDate>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[illustrator sample color outside]]></category>
		<category><![CDATA[sample color from image]]></category>
		<category><![CDATA[Sampling colors from Google Chrome]]></category>
		<guid isPermaLink="false">https://illustratordersleri.com/?p=2866</guid>

					<description><![CDATA[<p>illustrator sample color from outside illustrator Sometimes people argue that the illustrator eyedropper tool not working especially while sampling colors outside of illustrator. I hope informations here help you to use eyedropper tool properly. if you want to know about</p>
<p>The post <a href="https://illustratordersleri.com/how-to-sample-colors-using-eyedropper-tool-outside-of-illustrator/">How to sample colors using  eyedropper tool outside of illustrator</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>illustrator sample color from outside illustrator</p>



<p>Sometimes people argue that the illustrator eyedropper tool not working especially while sampling colors outside of illustrator.  I hope informations here help you to use eyedropper tool properly. if you want to know about eyedropper  in detail please continue reading  or jump <a href="#sample-color-outside" data-type="URL">here </a>to find out how to sample color from outside of illustrator window. </p>



<h2 class="wp-block-heading">How to use eyedropper tool in illustrator?</h2>



<p>Eyedropper tool is used to copy appearance  from an object to another.  It is one of the most significant tool in illustrator. You can find it on the toolbar as shown here:</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="366" height="200" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Eyedropper-tool-icon.jpg" alt="" class="wp-image-2884" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Eyedropper-tool-icon.jpg 366w, https://illustratordersleri.com/wp-content/uploads/2020/12/Eyedropper-tool-icon-300x164.jpg 300w" sizes="auto, (max-width: 366px) 100vw, 366px" /></figure>



<p> The <strong>simple use</strong> of the eyedropper tool is as follows:</p>



<ul class="wp-block-list">
<li>First you need to select the object you want to copy the appearance to, </li>



<li>Then go to <strong>eyedropper tool</strong> on the toolbar (shortcut key is <strong>i</strong> on your keyboard). </li>



<li>Now click with the eyedropper tool on the object you want to copy the appearance from. </li>
</ul>



<p>This action copies not only the colors, but also other properties of the object based on the eyedropper tool options. That is why I use the term &#8220;appearance of the object&#8221; instead of the object&#8217;s color. If you duble-click on the eyedropper tool icon, the options window opens and shows which atributes of object will be picked up and applied.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="707" height="760" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Eyedropper-tool-options.jpg" alt="" class="wp-image-2885" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Eyedropper-tool-options.jpg 707w, https://illustratordersleri.com/wp-content/uploads/2020/12/Eyedropper-tool-options-279x300.jpg 279w" sizes="auto, (max-width: 707px) 100vw, 707px" /></figure>



<p>If you need to copy all properties of an  object you need to check the appearance checkbox on the options pannel. In CC 2017 checking all sub-properties of the &#8220;appearence&#8221; does not mean to copy whole poroperties. You still need to check appearance checkbox (1).  Let&#8217;s see an example here:</p>



<p>The figure below shows the square with some effects such as feather and drop shadow applied. If the Appearance checkbox is unchecked, the eyedropper tool copies only colors not effects.</p>



<figure class="wp-block-image aligncenter size-large is-resized"><img loading="lazy" decoding="async" width="462" height="246" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Eyedropper-appearance-unchecked.jpg" alt="" class="wp-image-2883" style="width:347px;height:185px" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Eyedropper-appearance-unchecked.jpg 462w, https://illustratordersleri.com/wp-content/uploads/2020/12/Eyedropper-appearance-unchecked-300x160.jpg 300w" sizes="auto, (max-width: 462px) 100vw, 462px" /></figure>



<p>In some case, you may not be able to copy all derivative of effect such as angular gradient. You need to manulally change destination object&#8217;s gradient angle.</p>



<h2 class="wp-block-heading">Other ways to copy appearance of an object using Eyedropper tool </h2>



<p>We have already seen the first method of using eyedropper tool as <strong>simple use</strong>. In short, select the destination object, pick up eyedropper tool and click on to source object as shown in the animation below. </p>



<figure class="wp-block-image aligncenter size-large is-resized"><img loading="lazy" decoding="async" width="488" height="212" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Eyedroppergif.gif" alt="" class="wp-image-2887" style="width:366px;height:159px"/></figure>



<p>In the previous method, the target object must be selected first. On the other hand, If you use hotkey you don&#8217;t need to select any  target object to copy colors.</p>



<ul class="wp-block-list">
<li>So make sure none of the objects are selected. </li>



<li>Pickup the Eyedropper tool </li>



<li>Left mouse click to source object </li>



<li>Go to target object. </li>



<li>hold down ALT/OPT key and click left mouse button.</li>
</ul>



<p>Please note that if you have multiple target objects, you can continuosly copy colors to any of the object with ALT/OPT + Left mouse click. There is no need to resample colors from source object once you sample it.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="413" height="212" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Multidest.gif" alt="" class="wp-image-2889"/></figure>



<p>As you can see Eyedropper tool samples the whole colors of the gradient. if you hold down the <strong>SHIFT </strong>key and hover over the source gradient color, the specific color can be sampled. If you need to pickup more precise color, turn on <strong>caps lock</strong>  </p>



<p>Eyedropper tool can also be used for the text objects. The detailed description is not given here. </p>



<h2 class="wp-block-heading" id="sample-color-outside">Sampling colors from outside of illustrator software</h2>



<p>Eyedropper tool is not only used to sample colors form vector graphics but also sample from raster images. In order to do so, either you need to place raster image to Art board using<strong> File&gt;Place </strong>command or sample color from outside of illustrator window.</p>



<p>Sampling color outside of illustrator software is easy. First you need to exit full screen mode. and resize your illustrator software window in order to be able to see your outside source image. The external image can be your desktop, or any software that contains your source image.</p>



<h3 class="wp-block-heading">Steps to sample color outside</h3>



<h4 class="wp-block-heading">1sth Method</h4>



<ul class="wp-block-list">
<li>Select your target vector object</li>



<li>Go to Eyedropper tool and left click </li>



<li>Get back to art board  and hold down your left mouse button </li>



<li>While your left mouse button is pressed move your cursor outside of illustrator window</li>



<li>You will see sampled color on fill/stroke color window on the bottom of toolbar. </li>



<li>Release your mouse button to copy your color to either your fill or stroke color.  you can swap colors by<strong> SHIFT +X</strong> betwen stroke and fill Since your target object is selected the color is directly applied to your object.</li>
</ul>



<h4 class="wp-block-heading">2nd Method</h4>



<ul class="wp-block-list">
<li>deselect target objects if selected</li>



<li>Go to Eyedropper tool and left click</li>



<li>Get back to artboard and hold down your left mouse button</li>



<li>While your left mouse button is pressed move your cursor outside of illustrator window</li>



<li>You will see sampled color on fill/stroke color window on the bottom of toolbar.</li>



<li>When you release your mouse button sampled color will be selected. </li>



<li>Get back to artboard, hold down ALT key  and left mouse click on each of your target objects one by one</li>
</ul>



<p class="has-black-color has-text-color has-background" style="background-color:#ffffad">The steps above is applied to either fill or stroke depending on which one is active. you can make any of them active by clicking on it on the bottom of toolbar. <strong>X</strong> key on the keyboard also brings it front when you press. Sometimes people think that the eyedropper does not work because of this. They think that they sampled colors for the fill while stroke is active. Be careful. </p>



<h2 class="wp-block-heading">Sampling colors from Google Chrome</h2>



<p><script async="" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle" style="display:block; text-align:center;" data-ad-layout="in-article" data-ad-format="fluid" data-ad-client="ca-pub-7979870217105595" data-ad-slot="3851895469"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>If you try to sample color from a web page using the Google Chrome browser, you will find that you may not be able to copy any color using the eyedropper tool. This not because of the illustrator software you are using but because of your browser&#8217;s regular settings. Although there are some chrome extensions to sample colors from a web page, here I will explain how to change your browser setting to be able to sample colors. </p>



<p>Go to your browser&#8217;s top right corner and click three dot. This will open customization pull-down menu. Go down to &#8220;settings&#8221; and click </p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="338" height="578" src="https://illustratordersleri.com/wp-content/uploads/2020/12/google-chrome-settings.jpg" alt="" class="wp-image-2906" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/google-chrome-settings.jpg 338w, https://illustratordersleri.com/wp-content/uploads/2020/12/google-chrome-settings-175x300.jpg 175w" sizes="auto, (max-width: 338px) 100vw, 338px" /></figure>



<p>Type &#8220;hardw&#8221; in the search box (1) to find  hardware acceleration toggle button. </p>



<p>Turn off &#8220;use hardware acceleration when available&#8221; (2) This requires your browser to restart. </p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="882" height="540" src="https://illustratordersleri.com/wp-content/uploads/2020/12/Google-chrome-hardware-acceleration.jpg" alt="" class="wp-image-2905" srcset="https://illustratordersleri.com/wp-content/uploads/2020/12/Google-chrome-hardware-acceleration.jpg 882w, https://illustratordersleri.com/wp-content/uploads/2020/12/Google-chrome-hardware-acceleration-300x184.jpg 300w, https://illustratordersleri.com/wp-content/uploads/2020/12/Google-chrome-hardware-acceleration-768x470.jpg 768w" sizes="auto, (max-width: 882px) 100vw, 882px" /></figure>



<p>Now you should be able to sample colors from a web page like this :</p>



<p></p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="866" height="591" src="https://illustratordersleri.com/wp-content/uploads/2020/12/sample-color-from-google.gif" alt="" class="wp-image-2904"/></figure>



<p>Please subscribe to my youtube channel <a rel="noreferrer noopener" href="http://https//youtube.com/Zeducation" target="_blank">https//youtube.com/Zeducation </a></p>



<p>Akif Kutlu</p>
<p>The post <a href="https://illustratordersleri.com/how-to-sample-colors-using-eyedropper-tool-outside-of-illustrator/">How to sample colors using  eyedropper tool outside of illustrator</a> appeared first on <a href="https://illustratordersleri.com">Illustrator Tutorials</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
