Autor Tópico: Menu flash butao  (Lida 10169 vezes)

0 Membros e 1 Visitante estão a ver este tópico.

Offline candidosa2

  • Suporte Tecnico
  • Fundador
  • *
  • Mensagens: 5072
  • Rank: 1658
  • Sexo: Masculino
  • Suporte
    • Hosting Moçambique
Menu flash butao
« em: 05 de Março de 2009, 08:52 »
index.template.php

Pesquisar
Código: [Seleccione]
// Show the start of the tab section.
echo '
<table cellpadding="0" cellspacing="0" border="0" style="margin-left: 10px;">
<tr>
<td class="maintab_' , $first , '">&nbsp;</td>';

// Show the [home] button.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'home' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '">' , $txt[103] , '</a>
</td>' , $current_action == 'home' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// Show the [help] button.
echo ($current_action == 'help' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'help' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=help">' , $txt[119] , '</a>
</td>' , $current_action == 'help' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// How about the [search] button?
if ($context['allow_search'])
echo ($current_action == 'search' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'search' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=search">' , $txt[182] , '</a>
</td>' , $current_action == 'search' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// Is the user allowed to administrate at all? ([admin])
if ($context['allow_admin'])
echo ($current_action == 'admin' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'admin' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=admin">' , $txt[2] , '</a>
</td>' , $current_action == 'admin' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// Edit Profile... [profile]
if ($context['allow_edit_profile'])
echo ($current_action == 'profile' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'profile' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=profile">' , $txt[79] , '</a>
</td>' , $current_action == 'profile' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// Go to PM center... [pm]
if ($context['user']['is_logged'] && $context['allow_pm'])
echo ($current_action == 'pm' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'pm' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=pm">' , $txt['pm_short'] , ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</a>
</td>' , $current_action == 'pm' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// The [calendar]!
if ($context['allow_calendar'])
echo ($current_action == 'calendar' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'calendar' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=calendar">' , $txt['calendar24'] , '</a>
</td>' , $current_action == 'calendar' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// the [member] list button
if ($context['allow_memberlist'])
echo ($current_action == 'mlist' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'mlist' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=mlist">' , $txt[331] , '</a>
</td>' , $current_action == 'mlist' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


// If the user is a guest, show [login] button.
if ($context['user']['is_guest'])
echo ($current_action == 'login' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'login' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=login">' , $txt[34] , '</a>
</td>' , $current_action == 'login' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


// If the user is a guest, also show [register] button.
if ($context['user']['is_guest'])
echo ($current_action == 'register' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'register' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=register">' , $txt[97] , '</a>
</td>' , $current_action == 'register' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


// Otherwise, they might want to [logout]...
if ($context['user']['is_logged'])
echo ($current_action == 'logout' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'logout' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '">' , $txt[108] , '</a>
</td>' , $current_action == 'logout' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// The end of tab section.
echo '
<td class="maintab_' , $last , '">&nbsp;</td>
</tr>
</table>';

}

trocar por este aqui a baixo
Código: [Seleccione]
// Show the start of the tab section.
echo '
<center><br><div class="0" ', $context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? 'style="width: 100%;"' : '', '><tr>';

// Show the [home] button.
echo '<a href="', $scripturl, '?action=home"><iframe name="22" src="', $settings['images_url'], '/flash/anasayfa.swf"width="115" height="28" frameborder="0"></iframe></a>';

// How about the [search] button?
if ($context['allow_search'])
echo '<a href="', $scripturl, '?action=search"><iframe name="22" src="', $settings['images_url'], '/flash/ara.swf"width="100" height="28" frameborder="0"></iframe></a>';

// Is the user allowed to administrate at all? ([admin])
if ($context['allow_admin'])
echo '<a href="', $scripturl, '?action=admin"><iframe name="22" src="', $settings['images_url'], '/flash/admin.swf"width="100" height="28" frameborder="0"></iframe></a>';

// Edit Profile... [profile]
if ($context['allow_edit_profile'])
echo '<a href="', $scripturl, '?action=profile"><iframe name="22" src="', $settings['images_url'], '/flash/profil.swf"width="100" height="28" frameborder="0"></iframe></a>';

// Go to PM center... [pm]
if ($context['user']['is_logged'] && $context['allow_pm'])
{
echo '<a href="', $scripturl, '?action=pm">';

if($context['user']['unread_messages'] <= 0)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj.swf"width="130" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] <= 1)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj1.swf"width="130" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] <= 2)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj2.swf"width="130" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] <= 3)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj3.swf"width="130" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] <= 4)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj4.swf"width="130" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] <= 5)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj5.swf"width="130" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] <= 6)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj6.swf"width="130" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] <= 7)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj7.swf"width="130" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] <= 8)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj8.swf"width="130" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] <= 9)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj9.swf"width="130" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] <= 10)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesaj10.swf"width="140" height="28" frameborder="0"></iframe></a>';
}
elseif($context['user']['unread_messages'] >= 10)
{
echo '<iframe name="22" src="', $settings['images_url'], '/flash/mesajlar.swf"width="150" height="28" frameborder="0"></iframe></a>';
}
}

// The [calendar]!
if ($context['allow_calendar'])
echo '<a href="', $scripturl, '?action=calendar"><iframe name="22" src="', $settings['images_url'], '/flash/takvim.swf"width="100" height="28" frameborder="0"></iframe></a>';

// the [member] list button
if ($context['allow_memberlist'])
echo '<a href="', $scripturl, '?action=mlist" target="_blank"><iframe name="22" src="', $settings['images_url'], '/flash/uyeler.swf"width="100" height="28" frameborder="0"></iframe></a>';


// If the user is a guest, show [login] button.
if ($context['user']['is_guest'])
echo '<a href="', $scripturl, '?action=login"><iframe name="22" src="', $settings['images_url'], '/flash/giris.swf"width="100" height="28" frameborder="0"></iframe></a>';


// If the user is a guest, also show [register] button.
if ($context['user']['is_guest'])
echo '<a href="', $scripturl, '?action=register"><iframe name="22" src="', $settings['images_url'], '/flash/kayit.swf"width="100" height="28" frameborder="0"></iframe></a>';


// Otherwise, they might want to [logout]...
if ($context['user']['is_logged'])
echo '<a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '"><iframe name="22" src="', $settings['images_url'], '/flash/cikis.swf"width="100" height="28" frameborder="0"></iframe></a>';


echo '
<td colspan="2" width="32%" align="center" class="catbg"><span class="middletext">';

// The end of tab section.
echo '
<td class="maintab_' , $last , '">&nbsp;</td>
</tr>
</table></center>';

}

Offline K@Kus Lda.™

  • Amigo
  • *
  • Mensagens: 16
  • Rank: 0
  • Sexo: Masculino
    • NuM3RuS pRiMuS
Re:Menu flash butao
« Responder #1 em: 25 de Julho de 2009, 10:28 »
Viva!...

E os ficheiros:

 - anasayfa.swf
 - ara.swf
 - ara.swf
 - profil.swf
 - mesaj.swf
 - mesaj2.swf
 - mesaj3.swf
 - mesaj4.swf
 - mesaj5.swf
 - mesaj6.swf
 - mesaj7.swf
 - mesaj8.swf
 - mesaj9.swf
 - mesaj10.swf
 - mesajlar.swf
 - takvim.swf
 - uyeler.swf
 - giris.swf
 - kayit.swf
 - cikis.swf

Onde andam estes files?!...
 jimlad

Offline candidosa2

  • Suporte Tecnico
  • Fundador
  • *
  • Mensagens: 5072
  • Rank: 1658
  • Sexo: Masculino
  • Suporte
    • Hosting Moçambique
Re:Menu flash butao
« Responder #2 em: 25 de Julho de 2009, 10:48 »
Vai estar Update ja
« Última modificação: 25 de Julho de 2009, 11:20 por candidosa2 »

Offline K@Kus Lda.™

  • Amigo
  • *
  • Mensagens: 16
  • Rank: 0
  • Sexo: Masculino
    • NuM3RuS pRiMuS
Re:Menu flash butao
« Responder #3 em: 26 de Julho de 2009, 11:09 »
Vai estar Update ja

Viva!...

Obrigado!...
Mas, ainda faltam files...
 cool
« Última modificação: 26 de Julho de 2009, 11:32 por K@Kus Lda.™ »

Offline Darkness

  • VectorSeries.Net
  • Administrador
  • *
  • Mensagens: 337
  • Rank: 3
  • Sexo: Masculino
  • Vector Series
    • Vector Series
Re:Menu flash butao
« Responder #4 em: 28 de Julho de 2009, 08:04 »
Interessante vo testar.

Translator SMF - Brazilian
Não respondo MP de ajuda, Poste sua duvida no forum para ajuda

Offline K@Kus Lda.™

  • Amigo
  • *
  • Mensagens: 16
  • Rank: 0
  • Sexo: Masculino
    • NuM3RuS pRiMuS
Re:Menu flash butao
« Responder #5 em: 30 de Novembro de 2009, 02:57 »
Viva!...

Como os files não aparecem, gostaria de ajuda com este tema...

Quero colocar um menú flash que coloco em anexo...

Obrigado

Offline K@Kus Lda.™

  • Amigo
  • *
  • Mensagens: 16
  • Rank: 0
  • Sexo: Masculino
    • NuM3RuS pRiMuS
Re:Menu flash butao
« Responder #6 em: 01 de Dezembro de 2009, 20:48 »
viva!...

Uma ajudinha, please!...

Offline candidosa2

  • Suporte Tecnico
  • Fundador
  • *
  • Mensagens: 5072
  • Rank: 1658
  • Sexo: Masculino
  • Suporte
    • Hosting Moçambique
Re:Menu flash butao
« Responder #7 em: 02 de Dezembro de 2009, 08:00 »
Desculpa
vou ja analisar a tua questão

Offline K@Kus Lda.™

  • Amigo
  • *
  • Mensagens: 16
  • Rank: 0
  • Sexo: Masculino
    • NuM3RuS pRiMuS
Re:Menu flash butao
« Responder #8 em: 06 de Dezembro de 2009, 03:16 »
Viva!...

Que tal?!...
Alguma novidade?!...
 notworthy

Offline candidosa2

  • Suporte Tecnico
  • Fundador
  • *
  • Mensagens: 5072
  • Rank: 1658
  • Sexo: Masculino
  • Suporte
    • Hosting Moçambique
Re:Menu flash butao
« Responder #9 em: 06 de Dezembro de 2009, 08:27 »
Vai estar aqui disponível

Offline K@Kus Lda.™

  • Amigo
  • *
  • Mensagens: 16
  • Rank: 0
  • Sexo: Masculino
    • NuM3RuS pRiMuS
Re:Menu flash butao
« Responder #10 em: 06 de Dezembro de 2009, 11:25 »
Viva!...

 wink

Obrigado...

Offline Friend

  • Iniciar SmfPt
  • *
  • Mensagens: 6
  • Rank: 0
Re: Menu flash butao
« Responder #11 em: 23 de Maio de 2010, 20:12 »
ainda nada dessa novidade ???
as imagens ???? nao aparecem  ????
Obrigado

Offline candidosa2

  • Suporte Tecnico
  • Fundador
  • *
  • Mensagens: 5072
  • Rank: 1658
  • Sexo: Masculino
  • Suporte
    • Hosting Moçambique
Re: Menu flash butao
« Responder #12 em: 23 de Maio de 2010, 20:47 »
tive problemas com HDD
Mais estou a ver aonde tenho a copia do tema depois faco Upload