Jump to content

k07n

Members
  • Posts

    111
  • Joined

  • Last visited

Posts posted by k07n

  1. I don't see a good option for this. How it is now is realy clean & I don't know if there's a site right now that reaches that limit.

    Maybe we have not such sites because of the limit?
    What about e-shops with 100k+ goods or blogs with open registration ("Oh, I'm in shop with 70% sale, look what I have bought"... photo-photo-photo.. "oh, I'm so tired of this, take a look on my dinner".. click-click-click... =)))?
  2. That's essentially what Antti suggested on the linked thread, and as you can see from Ryan's reply it'll probably be added at some point. Like @DaveP pointed out above, I wouldn't worry too much about this.. though I do know of some sites that are steadily approaching that ext4 limit and wouldn't mind if this got tweaked soon(ish) :)

    Dunno how i've missed 1st link from kongondo. I'm very glad to know, what this problem on queue.

  3. kongondo, you rock! =)

    ps: Андрюха, пиши в следующий раз хотя бы через переводчик яндекса/гугла. Это, все-таки, англоязычное сообщество и корявки наши разбирать не каждому под силу, а люди реально помогают. Добро пожаловать на форум.

    • Like 2
  4. back to the topic:

    According to this http://video.about.com/animation/How-to-Embed-Your-SWF-in-a-Web-Page.htm

    you need to insert to your template file this code:

    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="300" height="225" id="FlashID" title="I'm Title">
      <param name="movie" value="myflash.swf">
      <param name="quality" value="high">
      <param name="wmode" value="opaque">
      <param name="swfversion" value="7.0.70.0">
      <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
      <param name="expressinstall" value="Scripts/expressInstall.swf">
      <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="kawaii3_.swf" width="300" height="225">
        <!--<![endif]-->
        <param name="quality" value="high">
        <param name="wmode" value="opaque">
        <param name="swfversion" value="7.0.70.0">
        <param name="expressinstall" value="Scripts/expressInstall.swf">
        <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
        <div>
          <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
          <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
        </div>
        <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>
    

    You need to change param values of course.

    You can look here for more info: https://www.google.ru/search?q=embedding+flash+in+html&oq=embedding+flash+in+html&aqs=chrome.0.69i57j0l3.1279j0&sourceid=chrome&ie=UTF-8

    • Like 1
  5. Thanks for the suggestion k07n. But the code you removed is there for a reason. I see how this might affect performance (haven't spent too much time with it) but it's needed to rearrange the boxes when you click on the red titles to toggle the descriptions or you will end up with overlaying stacked boxes. Maybe there's another way to archive it but haven't looked into it.

    I move $container.isotope('reLayout'); under IF, so isotope will rearrange hidden boxes.

  6. Hi! It's me again.

    $('.section:not("#index") h3').bind('click', function(){
            var parent = $(this).parent('.cat');
            if( parent.find('.descr:visible').length > 0 ) {
                parent.find('.descr').slideUp( animated ? speed : 0, function(){ $container.isotope('reLayout'); });
            }
            else {
                parent.find('.descr').slideDown( animated ? speed : 0, function(){ $container.isotope('reLayout'); });
            }
        });
     

    There is no need to callback reLayout on slide.

    $('.section:not("#index") h3').bind('click', function(){
            var parent = $(this).parent('.cat');
            if( parent.find('.descr:visible').length > 0 ) {
                parent.find('.descr').slideUp( animated ? speed : 0 );
            }
            else {
                parent.find('.descr').slideDown( animated ? speed : 0 );
            }
            $container.isotope('reLayout');
        });
     

    This little change insanely increase speed.

    • Like 1
  7. Ctrl+S saves the page but also opens the browser's "save dialog".

    Is it normal, just as ctrl+f4 and other standard shortcuts, or am I doing something wrong?

    There are long pages in my project, and I'm tired to scroll up/down to save the page.
    So I've installed this module again and added this little fellow - "return false" "e.preventDefault()" to the function savePage in AdminHotKeys.js and browser doesn't fire "save dialog box" any more on Ctrl+S.
    if($('button[id*="submit"]').length > 0){
    	function savePage(e){ $('button[id*="submit"]').trigger('click'); e.preventDefault();};
    	$(document).bind('keydown', hkconf.hk_save, savePage);
    }
    

    Soma, thx again 4 the module.

    upd: fellow changed %)

    • Like 2
  8. I would still like to resurrect it in PW2, but just haven't yet had the need for it in one of my projects. There are also some alternatives now we may want to look at too. But I would like to see a MarkItUp option in PW. 

    Thanks for the answer. There are alternatives, but whey are white and dark, figuratively speaking (WYSIWYG editors suitable only for text and Ace requires some html knowledge). But MarkItUp is the grey thing =) I can explain to content manager how to "bold" words in it and I can build more complicated output by myself.

    So I'm very glad what you don't forget about MarkItUp, will waiting for the suitable project for it %)

    Cheers!

  9. Diogo, ProcessWire 1.x actually used MarkItUp and it's a great editor. I definitely want to get it going again in 2.x, hopefully soon unless someone beats me to it. :)

    Hi, Ryan!

    How it's going with MarkItUp? Do you still want to resurrect it in pw2 or maybe it's already released, but I cant find it? 

  10. Hi!

    I'm stuck again %)

    I have structure something like that:

    -Red

    --Circle

    --Square

    -Blue

    --Circle

    --Triangle

    ...

    I need to output "#parent-children" anchors (#red-circle, #red-square).

    Is it possible to output parent name? I've tried {parent},but this is url to parent.

    Or I need the Captain Hook to help?

×
×
  • Create New...