24 Şubat 2015 Salı

How to insert Flash into PowerPoint 2013










You can tune your Flash movie playback by setting it to play automatically and/or looped.

  • To start playing the Flash movie automatically when the PowerPoint slide is displayed, set the Playing property to True. Or, you can add custom controls for the Flash movie and set this property to False. 
  • To loop Flash movie playback while the slide is displayed, set the Loop property to True.

23 Şubat 2015 Pazartesi

Force Login to View WordPress Blog Pages

themefolder/header.php
after <?php

// Require login for site
get_currentuserinfo();
global $user_ID;
if ($user_ID == '') {
 header('Location: /wp-login.php'); exit();
}