Simple way to insert  custom Jquery Slideshows and Plugins in Muse

Hi guys, I know the Adobe Muse team is working hard to make this revolutionary tool better by the day. They have done a lot of foundation work to get this tool up to this state. I say congrates guys keep the good work on.
But before we get to the promised land. I know a lot of 'creative non-coders' still want to take up the challenge of doing some cool stuff spread around the internet nowadays such as jquery fullscreen image slideshow, fullscreen image jquery sliders, etc. But Muse is not there yet. I believe the next release will enable designers to take advantage of the height feature missing right now(I just believe so, no insider hint, please don't quote me.).
Okay let me not bore you.
Now I have noticed you can bring any slideshow into Muse if you have the bravery to do it. It's so simple. See this: www.dynamicarchitecturaldesign.com.
The slideshow was a backstretch jquery plugin with some custom javascript to load the page before displaying the page.
The trick is,  follow the instruction provided by the author of any of this script, especially the ones relating to the jquery-1.4min.js... jquery-1.7.min.js... upto the latest version that could possibly be available. Note: Adobe Muse also have almost the latest version of the jquery plugin. So after authoring your stuff in Adobe Muse, export as HTML then move and replace any of the code provided by the author of the code you intent to use with the one that Muse generates always:
<script src="http://musecdn.businesscatalyst.com/scripts/1.1/jquery-1.7.min.js" type="text/javascript"></script>
This is often placed toward thge bottom section before the closing </body> and </html> tags. Move it up to the head section using notepad or DW. Though this is not the intended workflow by the Muse team, but it gives you the edge to do stuff you want to do.

Okay Maurya, am suggesting the Muse dev team can take a cue from the edge team. In the publishing setting of Edge their is an option for Framework via CDN! Introducing this feature into Muse will go along way to enhance the workflow of psuedo-developers using Muse  to cut down on web design time.  if I have some jquery codes for slideshows and so on that I have lifted from some places or purchased on the internet, I can conveniently place the codes as usual where they need to be and on export  indicate to Muse whether I want it to include its own code:
"http://musecdn.businesscatalyst.com/scripts/1.1/jquery-1.7.min.jswhich has been further modified in the new beta 2 release as:
<script type="text/javascript">
   if (document.location.protocol != 'https:') document.write('\x3Cscript src="http://musecdn.businesscatalyst.com/scripts/1.1/jquery-1.7.min.js" type="text/javascript">\x3C/script>');
</script>
in the export and during publish (a publish setting kinda of could be added to the preference area) or use my own framwork that I have included in the head section. So Muse will not include the above jquery musecdn...  in the publish version. That way you are giving us more control and winning more developers over to Muse and of course more money for Adobe . See screnshot in Adobe Edge:

Similar Messages

  • I've customized a slideshow and no longer see the "add" button to add slides. Can I still add new slides? How?

    I've customized a slideshow and no longer see the "add" button to add slides. Can I still add new slides? How?

    Hi
    By customization what exactly you mean ? if you have applied states, effects etc to slideshow still add button should work. Or if you are using the slide show in some container.
    Please provide more details.
    Thanks,
    Sanjit

  • How to insert a Jquery slideshow to a template based html page?

    I would like to insert a simple jquery slideshow into an existing div in an html page which is linked to a template page. Do I add the js files and code to the template html or the child html where I want the slideshow? Do I need to divorce the page from the template? It seems that the js has to be put into the head from what I've read so far and this is not editable in a template child...
    lunairecollective.com/news.html is the page I wish to alter, currently there are very simple links with swap text of container. I would like to have a cyclic slideshow in the div to replace the current swap images and links.
    The website is in html4 transitional, and I'm using Dreamweaver cc
    Thanks for any help!

    Yes, there are editable areas in the child page as you saw from the website address. And I can see there are some editable elements in the head, though not all of it. Could you show me where I should insert the javascript code for a jQuery slideshow please? The relevant code follows:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html><!-- InstanceBegin template="/Templates/lunaire4_temp.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <!-- InstanceBeginEditable name="doctitle" -->
    <meta name="description" content="The most recent review of Lunaire Collective printed in The Australian newspaper.">
    <meta name="keywords" content="review, The Australian, Whistler, Tom Green, Birtwistle secret theatre">
    <title>LUNAIRE COLLECTIVE: Reviews and photos of Lunaire Collective - News and Reviews</title>
    <!-- InstanceEndEditable -->
    <link href="desktop.css" rel="stylesheet" type="text/css">
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <!-- InstanceBeginEditable name="head" -->
    <script type="text/javascript">
    function MM_setTextOfLayer(objId,x,newText) { //v9.0
      with (document) if (getElementById && ((obj=getElementById(objId))!=null))
        with (obj) innerHTML = unescape(newText);
    </script>
    <!-- InstanceEndEditable -->

  • Simple way to insert data from one table

    Hi,
    I need to know a simple way on how to transfer the data from one table to another....
    First table xx_inv_tab1 has three columns col1, col2, col3 and where as second table xx_inv_tab2 has five columns col1, col2, col3, col4, col5.
    Here col2, col3, col4 are the same columns as in table1 xx_inv_tab1...
    Now I want to transfer first table data in to second table .... first column of second table holds a sequence, followed by the first table three columns data and followed with col4 and col5 which will hold NULL values....
    In my scenario, I have 70 - 75 columns in my first table which I want to move to second table which three new columns (one is sequence and other two has null values)...
    Any ideas if we make it in a simplest way rather saying insert into xx_inv_tab2 (col1, col2, col3 ............................................. col75) values (seq, col1, col2..........................col75, null, null)
    Help Appreciated..
    Thanks

    Easy
    untested
    insert into xx_inv_tab2 t2 (col1,col2,col3,col4)
    select yourSequence.nextval, t1.col1, t1.col2, t1.col3
    from xx_inv_tab1 t1
    ;Note that col5 does not need to be used, since you want to fill it with NULL.
    USe excel or sql developer to write you a list of column names, if you are to lazy to write all 75 columns by yourself.
    What might also work:
    untested
    insert into xx_inv_tab2 t2
    select yourSequence.nextval, t1.*, null
    from xx_inv_tab1 t1
    ;Edited by: Sven W. on Aug 31, 2012 4:41 PM

  • Want a Simple Way to Insert a Simple Picture

    I'm having trouble inserting a simple picture into a pages document. I don't care about anything fancy, the document is an academic paper and I just want a simple diagram with a few boxes and arrows. No colors, animation, bitmaps, etc. I created the diagram in Keynote first. Then I grouped all the boxes and arrows into one object and copied the object. Then I pasted the object into the Pages document. What I expected is the text would wrap around it and i might have to tweak that a bit. My preference is just to have text above and below the picture, no fancy text wrapping, the picture is wide enough it takes up the width of most of the page anyway. But the text and image seem to blur together.
    Just to be clear, what I want should have the following layout shown in quotes below:
    "Blah, blah, blah...as we can see in the diagram 1 below:
    BOXES AND ARROW PICTURE GOES HERE
    As we can see in diagram 1 above..."
    I've tried anchoring the text with "below:" or "As we can see" but I can't figure out how to change the anchor. I position the cursor where I want the image to be (in the blank space that says BOXES above) but it seems to want to place it higher up (the little blue anchor thing isn't where I expect but further up in the paragraph) and I can't figure out how to change it and I've even -- and this just shows how desperate I am -- looked at the documentation and still can't figure it out.
    I also tried various hacks like inserting a bunch of line breaks or even a new page all on it's own and the picture still ends up getting displayed strange. The picture takes up about .75 the width and .25 the height of a single page.
    I know I must be doing something stupid and am probably missing something very basic. Any help would be greatly appreciated.

    Yes, Pages 5.2.
    Thanks I'll try that.
    Regarding where I draw the picture, are you saying it would be easier with Pages or should the behavior be pretty much equivalent either way?
    I've always preferred using some simple graphics tool like Powerpoint or now Keynote for diagrams because I usually have lots of diagrams and I like to have them in a separate tool, sort of a repository for the pictures. Also, as in this case, the picture started out as part of a presentation and I think will migrate back to a presentation. For consistency and because at least with previous tools you could do more with graphics in a presentation tool I always have done it that way. But if the drawing tool in Pages works better I could use that.

  • Simple way of transferring files beween iBook and iMac?

    So far, I have burned CDs to transfer files back and forth between the two machines. I also am considering using a portable back up drive.
    I'd prefer a simple transfer of files between the machines via fire wire cable!
    However, I have been discouraged so far to explore the "networking" solutions further, because of the (for me) complicated protocol and addressing issues in the networking preference panel....
    A simple solution would make me happy!
    Thanks,
    PP

    If you boot the iBook into FireWire target disk mode it will act as an external FireWire drive.
    Then all you need to do is connect the iBook and iMac with a 6 pin to 6 pin FireWire cable. The iBook will appear on the iMac's desktop as a hard drive. You can then easily drag and drop files between the 2 machines.

  • Inserting custom JQUERY inside in-built AJAX code of ADF

    Hello,
    I am using a JQUERY plugin for fancy select boxes in ADF. Once we perform any AJAX calls in the page, the JQUERY plugin does not work. So we need to add our JQUERY methods inside the AJAX codes to make it work. Can someone tell us where can we locate the AJAX files used in ADF.
    Any help on this would be highly appreciated.
    Thanks!
    Ank

    Hello,
    Thanks for the help but it did not help me. Let me explain you what I am trying to do:
    I am using a JQUERY plugin for <select> boxes which we call as "selectOneChoice" components. The JQUERY plugin converts normal selectOneChoice to an image based stylized selectOneChoice one.
    So I am using the JQUERY method as:
    $(document).ready(function() {
    $('select').selectbox();
    Problems that I am facing:
    This does not work on the first load of the page.
    If I click any Search button or reset link or any other buttons, the plugin goes off from the selectOneChoice boxes.
    The plugin also does not work for modal pop up which we call as af:popup.
    Please help me with the resolution.
    Thanks,
    Ank

  • How to insert custom HTML before /body ?

    I love that I can insert custom HTML in the <head> of a page in Muse.
    However, I need to add custom HTML just before the end of <body>.
    Namely, I want to insert custom Jquery calls just before </body>. I can't do this in the <head>.
    However, other uses for other people might include inserting Analytics tracking code before </body>, as this is more optimum than in the <head>.
    I've tried using a Custom HTML widget, but even if I put it in the footer of my page, it still ends up appearing in the rendered HTML before Muse's Javascript. I need it to come after Muse's Javascript.
    Thanks in advance.

    Hi Harry,
    Please check this discussion, you might find it helpful in making the jQuery calls.
    How to (make best) use external js library from html object (need help from dev)
    http://forums.adobe.com/thread/1213057
    - Abhishek Maurya

  • Lining some divs up, one with a fireworks html and another with a jQuery slideshow

    I am having an issue lining two divs up within a div.  One div has a fireworks html in it (by the way, I can't figure out why that the button states arent' working.  I inserted the code via the insert menu > image objects > fireworks html, but for some reason the button states work.  When I open the navbar.htm in the file browser, it opens it up in dreamweaver and it works perfectly in live preview).  The other div has a simple jQuery slideshow.  I have these two divs in a greater overall div named "div id=wrapper".  How can I line these up so that the nav div and body div are flush against each other within the wrapper div?
    I plan on putting additional divs above and below the wrapper div for more content.  If anyone has insight on why the fireworks html isnt working when inserted, that would be great!!
    Here is the code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Richard J. Craddock Designs</title>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-3119473-8']);
      _gaq.push(['_setDomainName', 'none']);
      _gaq.push(['_setAllowLinker', true]);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    <link href="stylesMain.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
    background-color: #2f2f2f;
    width: 50 em;
    .fadein { position:relative; height:332px; width:500px; }
    .fadein img {
    position:absolute;
    left:0px;
    top:0px;
    width: 784px;
    }td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}
    </style>
    <script src="scripts/jquery.min.js"></script>
    <script>
    $(function(){
    $('.fadein img:gt(0)').hide();
    setInterval(function(){$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');}, 3000);
    </script>
    </head>
    <body>
    <div id="wrapper">
        <div id="navdiv">
          <table style="display: inline-table;" border="0" cellpadding="0" cellspacing="0" width="148">
            <!-- fwtable fwsrc="craddocknavbar.png" fwpage="Page 1" fwbase="craddocknavbar.jpg" fwstyle="Dreamweaver" fwdocid = "1729580248" fwnested="0" -->
            <tr>
              <td><img src="images/spacer.gif" alt="" name="undefined_2" width="148" height="1" border="0" id="undefined_2" /></td>
              <td><img src="images/spacer.gif" alt="" name="undefined_2" width="1" height="1" border="0" id="undefined_2" /></td>
            </tr>
            <tr>
              <td><a href="http://www.rjcraddockdesigns.com/company profile.php" target="_self" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','craddocknavbar_r1_c1_s1','images/craddocknavbar_r1_c1_s2. jpg','craddocknavbar_r1_c1_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','craddocknavbar_r1_c1_s1','images/craddocknavbar_r1_ c1_s3.jpg',1);"><img name="craddocknavbar_r1_c1_s1" src="images/craddocknavbar_r1_c1_s1.jpg" width="148" height="65" border="0" id="craddocknavbar_r1_c1_s1" alt="Richard J. Craddock Landscape Design in Nantucket: Company Profile" /></a></td>
              <td><img src="images/spacer.gif" alt="" name="undefined_2" width="1" height="65" border="0" id="undefined_2" /></td>
            </tr>
            <tr>
              <td><a href="http://www.rjcraddockdesigns.com/services.php" target="_self" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','craddocknavbar_r2_c1_s1','images/craddocknavbar_r2_c1_s2. jpg','images/craddocknavbar_r2_c1_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','craddocknavbar_r2_c1_s1','images/craddocknavbar_r2_ c1_s3.jpg',1);"><img name="craddocknavbar_r2_c1_s1" src="images/craddocknavbar_r2_c1_s1.jpg" width="148" height="65" border="0" id="craddocknavbar_r2_c1_s1" alt="Richard J. Craddock Landscape Design in Nantucket: Services" /></a></td>
              <td><img src="images/spacer.gif" alt="" name="undefined_2" width="1" height="65" border="0" id="undefined_2" /></td>
            </tr>
            <tr>
              <td><img name="craddocknavbar_r3_c1_s1" src="images/craddocknavbar_r3_c1_s1.jpg" width="148" height="395" border="0" id="craddocknavbar_r3_c1_s1" alt="" /></td>
              <td><img src="images/spacer.gif" alt="" name="undefined_2" width="1" height="395" border="0" id="undefined_2" /></td>
            </tr>
          </table>
        </div>
         <div id="bodydiv">
        <div class="fadein">
      <img src="images/slideshow/1jquery.jpg">
    <img src="images/slideshow/2jquery.jpg">
    <img src="images/slideshow/3jquery.jpg">
    <img src="images/slideshow/4jquery.jpg">
    <img src="images/slideshow/5jquery.jpg">
    <img src="images/slideshow/6jquery.jpg">
    <img src="images/slideshow/7jquery.jpg">
    <img src="images/slideshow/8jquery.jpg">
    </div>
    </div>
        </div>
    <div id="navigationlower">
        <p><a href="http://www.rjcraddockdesigns.com/index.php" title="Richard J. Craddock Designs Home Page">Home</a> - <a href="http://www.rjcraddockdesigns.com/company profile.php" title="Richard J. Craddock Designs">Profile</a>- <a href="http://www.rjcraddockdesigns.com/services.php" title="Richard J. Craddock Designs">Services</a></p>
      <strong>Richard J. Craddock Designs, 2011</strong></p>
      <p><strong><a href="http://cwws.org" title="Common Wealth Web Solutions" target="_new">Designed by CWWS</a></strong></p>
      <p><a href="https://www.facebook.com/RJCLandscapeDesigns"><img src="facebook icon.png" width="60" height="60" /></a></p>
    </div>
    </body>
    </html>

    Now that I got rid of the fireworks html and replaced with swf, the code is a bit shorter:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Richard J. Craddock Designs</title>
    <script src="scripts/swfobject_modified.js" type="text/javascript"></script>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-3119473-8']);
      _gaq.push(['_setDomainName', 'none']);
      _gaq.push(['_setAllowLinker', true]);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    <link href="stylesMain.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
    background-color: #2f2f2f;
    width: 50 em;
    .fadein { position:relative; height:332px; width:500px; }
    .fadein img {
    position:absolute;
    left:0px;
    top:0px;
    width: 784px;
    }td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}
    </style>
    <script src="scripts/jquery.min.js"></script>
    <script>
    $(function(){
    $('.fadein img:gt(0)').hide();
    setInterval(function(){$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');}, 3000);
    </script>
    </head>
    <body>
    <div id="wrapper">
        <div id="navdiv">
          <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="148" height="525">
            <param name="movie" value="images/craddocknavbar.swf" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="6.0.65.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="images/craddocknavbar.swf" width="148" height="525">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="6.0.65.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>
        </div>
         <div id="bodydiv">
        <div class="fadein">
      <img src="images/slideshow/1jquery.jpg">
    <img src="images/slideshow/2jquery.jpg">
    <img src="images/slideshow/3jquery.jpg">
    <img src="images/slideshow/4jquery.jpg">
    <img src="images/slideshow/5jquery.jpg">
    <img src="images/slideshow/6jquery.jpg">
    <img src="images/slideshow/7jquery.jpg">
    <img src="images/slideshow/8jquery.jpg">
    </div>
    </div>
        </div>
    <div id="navigationlower">
        <p><a href="http://www.rjcraddockdesigns.com/index.php" title="Richard J. Craddock Designs Home Page">Home</a> - <a href="http://www.rjcraddockdesigns.com/company profile.php" title="Richard J. Craddock Designs">Profile</a>- <a href="http://www.rjcraddockdesigns.com/services.php" title="Richard J. Craddock Designs">Services</a></p>
      <strong>Richard J. Craddock Designs, 2011</strong></p>
      <p><strong><a href="http://cwws.org" title="Common Wealth Web Solutions" target="_new">Designed by CWWS</a></strong></p>
      <p><a href="https://www.facebook.com/RJCLandscapeDesigns"><img src="facebook icon.png" width="60" height="60" /></a></p>
    </div>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    </script>
    </body>
    </html>

  • Is it possible to create a custom control class and insert its instance in a form?

    I have several controls that will work togheter and in a similar way in several forms.
    For example, a GroupOption with two ButtonOptions. Clicking on one button option the frame willl  became higher and a TextBox will appear; clicking on the other the TextBox will disappear and the frame will shrink again.
    I need them in different size or few other propieties but the basic funcionality are the same.
    I was thinking to create a Class with all the built in Controls and the relevant methods and propieties to keep my code clearer, simpler and reusable.
    But I don't know if my idea viable.
    After creating a simpler version of the class; I was trying to put it at work in a test form but I could not find the way to insert it.
    I've only find a Application.CreateControl with a required parameter
    ControlType which ranges only over built in controls not custom one.
    I'm working in VBA with Access 2007 and later.
    Thanks for your advice.

    That is not really practical with Access. For example CreateControl does not work with compiled applications, which is how you should deploy them. Also the level of modularization you desire just is not available. Maybe a subform would come close to this,
    but I would HATE to work on one of your apps if you build each form with a collection of subforms.
    While you can and should re-use code using modules or class modules, not so much for UI elements. More advanced development environments like WPF can do this.
    -Tom. Microsoft Access MVP

  • How to take pix out of a slideshow and back into a simple folder in iPhoto?

    I was only experimenting with slideshows and now have 61 photos in a slideshow which I want to revert back to a simple folder of pictures. I do not want those pictures in a slideshow.
    How can I get all of the 62 pictures in that slideshow to revert back to 61 photos in a regular folder in iPhoto '08?
    I guess I should have duplicated the folder of 61 photos before I made it into a slideshow. Then I could have just deleted the slideshow. Yes or no?
    Lorna from Southern California
    web.mac.com/lorna6

    Lorna:
    You can reduce the number of Events by creating Smart Albums with criteria that you would like to have the photos grouped by. If you'd like the events to be by year and month, set the smart album's criteria to be Date is in the Range 01/month/year to 30/month/year. Then select the contents of that SA and use the Events->Create Event menu item to create an event with those photos. Then change the date to the next month and do the same. You can use any criteria you want for the SA but Events are time based and work better that way.
    P.S. are you in So Cal. permanently or just visiting. Wanna trade houses?
    OT

  • Is there a simple way to create a custom item list for a List Picker field?

    I have created a List picker field and added it to my customized version of the Incident Management form. I need to populate this List Picker with custom items (Departments) and everything I am reading about how to do that is that I have to write a
    bunch on XML code. Is there a relatively simple way to populate a List Picker field with custom entries that does not require me to know scripting or XML?
    Thanks in advance for any help
    Mark

    Assuming that you have created a Enumeration picker (i.e.
    you used the authoring tool and dragged what it calls a list picker in, and then selected a list that you created in the authoring tool), then you can edit the contents of those Enum Lists using
    the Lists view in the Library pane, or by editing the XML as in the last reference. 
    You might also be interested in the
    Bulk Enum creation tool, which automates the process of creating that XML

  • I am going to buy a macbook pro for grade 12, and I need to know wheather I should get a macbook pro or a macbook pro retina. If someone could tell me (in a very simple way) which one is,better for me and why, I would be ever so apprreciative.

    I am going to buy a macbook pro for grade 12, and I need to know wheather I should get a macbook pro or a macbook pro retina. If someone could tell me (in a very simple way) which one is,better for me and why, I would be ever so apprreciative.

    Why do you need a expensive MacBook Pro?
    Your attending high school and unless everyone else is rich also your likely going to be a target by the more poorer students for theft or damage to the machine.
    You could keep it home, but if you need it for class then your exposed again.
    Also at that age your not very careful yet, a MacBook Pro is a expensive and easily damaged machine.
    Unless your made of money and so are others at your school, I would recommned a low profile, just does the job cheap Windows PC.
    If it dies, gets lost, stolen or damaged because of your inexperince handling senstivie electronics then it's no big deal.
    You can buy a Mac later on when your sure you have a need for it, currently there isn't much advantage of owning a Mac compared to a PC, they do just about the same things now, one just looks prettier than the other.
    Since 95% of the world uses Windows PC's your going to have to install Windows on the Mac in order to keep your skills up there or be unemployed, so it's a extra headache and expense.
    good luck

  • Is there a way we can edit and improve existing youtube videos by using premiere pro? Just simple changes like having professional looking opening and closing credits?

    Is there a way we can edit and improve existing youtube videos by using premiere pro? Just simple changes like having professional looking opening and closing credits?

    Assuming you do not have access to the "original" video/project and the YouTube video is the only copy, there is a method. Try "YouTube Downloader" which is a free software that allows you to download clips from YouTube as .mp4 files. You can then edit with Premiere, and re-encode again for upload to YouTube. Just keep in mind that you are re-compressing the video so there will be some quality loss. The better the quality of the original, the better the copy will hold up.
    Thanks
    Jeff Pulera
    Safe Harbor Computeres

  • SQL: System locks up and runs slow after performing simple DML record insert

    SQL Version:  2008 R2
    I am having a serious problem.  I ran the following code to perform a simple table record insert which ran successfully.  However, after running this code I could no longer access the related table.  I couldn't run a query against it. 
    I tried to delete all the records and that wouldn't work either.  When attempting to run any DML statements (i.e. Select * From vPCCertificateTypes) against this table SQL gets locked up and never returns anything and no error messages.  I have
    to manually stop the query.  Now the entire SQL system is running slow.
    Any help would be greatly appreciated.  The code I ran to originally insert the records is below.
    Regards,
    Bob Sutor
    CODE: 
    Begin TRAN
     INSERT INTO vPCCertificateTypes (VendorGroup, CertificateType, Description, Active, Category)
     SELECT HQCo, 'MBE', 'Minority-owned Business Enterprise', 'Y', 'Affirmative Action' 
     FROM HQCO
     Where HQCo IS NOT NULL
      AND HQCo <> 100
      AND HQCo <> 99
     IF @@ROWCOUNT <> 44 ROLLBACK ELSE COMMIT
    Bob Sutor

    The problem was an open uncommitted transaction against the table as you suspected.  I ran your code and it cleared the transaction.  In the past I would intentionally leave our the Commit statement and then if the transaction ran fine, I would
    simply highlight and run 'COMMIT' and it would close the transaction.  Apparently that is not the correct approach.  I'll use your suggested code from now on.
    Thanks for the help.
    Bob Sutor

Maybe you are looking for

  • How do i get the screen on my ipod 5th generation fixed

    My daughter dropped her iPod 5th generation and now the screen is shattered. How and where can I get this fixed?  I don't know if I have any kind of warranty. Please help

  • Cannot View Saved Models

    Has anyone experienced a problem with trying to open and view a model created and saved in ODM ver 3.0.0 Build 653 When attempting to reopen it in ODM, the file opens, but none of the model objects exist. The model appears to be empty....HELP!! Edite

  • Problem summing $-style digits

    When I open XLS file with russian finance style numbers (X XX,XX р.) it becomes in style X XX,XX Rbl It's not a problem, but some of cell become numbers like 10 000,00 Rbl but some cells becomes text "10 000,00 Rbl" and of course don't sum with numbe

  • For Android fans this article sums up VZW's shortcomings

    I think those of us that are really into our Android devices will agree that having an Android on VZW is not all that it used to be. http://blogs.computerworld.com/android/22283/verizon-android-enthusiasts

  • Green shaded monitor with an R9 280x

    I am ising a 3gb R9 280x with two monitors i was playing a game and had youtube on on another monitor. suddenly one screen went green but i could still see the features. Then on the other monitor pixelated random lines started to come up. i immediatl