Synchronise symbol animation using Edge Commons

Hi All,
I've been trying to animate a PNG sequence that I created with After Effects and Fireworks using the Edge Commons parallax snippet. I'm also trying to make this responsive. I have a vague understanding of the code used so I put together a few other bits and pieces of code I found on these forums.
The effect I'd like to obtain is to scroll down and synch the animation of the symbols with the scrollbar. Ideally I'd also like to reverse the animation when scrolling down and pull in other symbols but I'm not even sure that this can be done using inline code or actually creating the reversed animation within the symbol.
I've been trying hard in the past few days but this is where I got so far ;(
https://www.dropbox.com/s/fr6ygqs16jq11fu/wedding_invite.zip
Sorry the file is pretty heavy but the png sequences aren't optimised yet.
Thanks

Hi Eric ,
There might be many ways to do the play and play reverse using click operation as described by you but this is what I think could be done .
We can set a variable in our compositionReady function   sym.setVariable("count", 0);
Then in the click handler of the symbol we can write the following code
var x = sym.getVariable("count");
var mySymbolObject = sym.getSymbol("Symbol_1");
//Now check if you have clicked once then play otherwise play reverse .
if(x%2 == 0)
          mySymbolObject.play();
else
          mySymbolObject.playReverse();
x++;
// Set the value of a Symbol variable
sym.setVariable("count",x);
Please refer the attached composition . Hope it helps
Thanks
Saurav

Similar Messages

  • Is There A Way To Loop Audio Using Edge Commons?

    Hi,
    I've been getting on really well using Edge Commons to add audio to my animations (fantastic bit of kit, by the way - thank you simonwidjaja !).
    However, while playing a sound via the trigger EC.Sound.play("mySound"); works brilliantly for individual instances of sound I've wholly failed to find a way to get sound files to loop.
    I've been struggling with this for an age, now, and really haven't got anywhere at all. I know that Edge Commons integrates SoundJS and I know that SoundJS provides a facility to loop audio but I can't see a way to make it happen via the Edge Commons script.
    SoundJS' method seems to be couched as: 
    static SoundInstance play ( value , interrupt , delay , offset , loop , volume , pan )
    And in Edge Commons I can find:
    var instance = SoundJS.play(soundId, SoundJS.INTERRUPT_NONE, 0, 0, false, 1);
    which I assume (perhaps incorrectly?) relates to the aforementioned SoundJS.
    I'm guessing (as has been mooted by resdesign in another post) that I need to edit the following, which appears in creation complete, in order to make looping happen but I just can't seem to get anything I try to work.
    {src: assetsPath + "mySound.mp3|" + assetsPath + "mySound.ogg", id: 'mySound'},
    Of course, I may simply be on the wrong track altogether; so as ever, any thoughts and ideas will be very gratefully received x

    Hi Emmy,
    1. can I use buzz to create sound in edge compositions destined for the ipad?
    Yep. Although there still exists the MASSIVELY annoying issue whereby iOS insists on a user-push to activate the play of any audio. Apple's assertion is that users shouldn't have to worry about being forced to download unsolicited audio which may end up costing them dear if they are on a chargeable 3G connection; so they've effectively disabled anything that is, or could be described as, an autoplay function. This means that instead of being able to include autoplay of audio  - to, say, have a sound track automatically start playing when an animation begins - the playback of said track needs to be initiated by the user.
    For example, the code: sym.getComposition().getStage().YourSoundName.play(); would need to be placed on a clickable button as opposed to a trigger on the main timeline or the timeline of any of your symbols.
    In essence you have to provide the user with an opportunity to confirm that 'yes I want to hear this'.
    While the sentiment behind not wishing users to incur unwarranted expense is understandable (and laudable) the whole concept is a huge pain for animators and a total joke-killer and best. Think of it in terms of Man Slips On Bananaskin... instead of users automatically/seamlessly being able to hear a comedic associated 'whoooooop' sound they have to click a button in order to do so. 'Do you want to hear an amusing noise associated with this bit of stage action? Click for yes'. Obviously one doesn't actually have to couch such a question in actuality, but you get the drift (The Death Of Fun!). As a 'semi' workaround you may want to try experimenting with mouseOver triggers on invisible buttons.
    2. will users need internet access to hear the sounds each time?  In other words do the sounds have to be called from an exteral source each time they are played, or are they part of the exported file and therefore only downloaded once.  (I understand that Ihave to manually include the audio file in the exported Edge file).
    Not quite sure about this one as I ended up working on some entirely different stuff; so didn't persue the Apple annoyances long enough to find out more.
    3. can I use my own mp3 sounds, and if so, how?
    If you mean, can you use mp3s that are not originated by you (i.e. iTunes tracks etc.) then essentially no. Not unless they're copyright/royalty free or you've obtained a license to use them.
    If by your own mp3 sounds you mean audio that you've originated yourself, then yes, of course
    It makes sense to produce both an mp3 and an ogg version of each sound, to ensure maximum compatibility with regard to user playback. Other than that, simply name your files, place them in a folder called 'audio' (for example) and then, in Edge's 'compositionReady', include the following code for each sound (changing the names accordingly):
    sym.YourSoundName = new buzz.sound("audio/YourSoundName", {formats: [ "ogg", "mp3" ]});
    sym.YourSoundName.bind('loadeddata', function(e){
         var stage = Edge.getComposition(compId).getStage();
    Then whenever you want to play a certain sound just use: sym.getComposition().getStage().YourSoundName.play(); on a trigger.
    Hope this helps

  • How can I get a sound to play more than once using edge commons?

    Hi, I'm very new to all this; so apols if asking dumb stuff...
    I've successfully used Edge Commons to get an audio effect to play in a timeline but it will only play once. Does anyone know how I can get it to play again at various trigger points?
    The code I'm using in creationComplete is:
    yepnope({
              load: "http://simonwidjaja.github.com/EdgeCommons/live/EdgeCommons-0.7.1.js",
              callback: function() {
                        // Load sound manifest (e.g. in creationComplete)
                        var assetsPath = "media/";
                        EC.Sound.setup(
                                  {src: assetsPath + "bubbles.mp3|" + assetsPath + "bubbles.ogg", id: "bubbles"},
                            function(){ EC.info("Sound setup finished", "DEMO"); }
    Then in a trigger on the timeline I have:
    EC.Sound.play("bubbles");
    As said, the above plays fine, one time... but if I place another, 'EC.Sound.play("bubbles");' trigger further along on the timeline nothing happens. Similarly, if the audio has played already and the timeline loops, the audio won't play a second time. I'm thinking I need to write in some sort of 'unload' type of thing so it knows to play again when it hits the new trigger? Or I might just be talking cobblers? Who knows? I certainly don't which is why I so desperately need help... please x

    That's brilliant, Resdesign, and works perfectly in endlessly adapatable ways! Huge thanks! Great demo/sample file, by the way!
    Also I 'accidentally' discovered (which may be of some help to anyone else who's new to all this) that the code which I'd used (see first post, above) ony runs the audio once when in preview mode. However, when the Edge Animate file is published the code works pefectly and when the second trigger is reached the audio plays a second time.
    I'm guessing that when the 'publish' facility is utilsed the code is properly compiled (or something like that???) which is why it runs okay.
    Anyway, whatever... the problem's solved! Hurrah! (Thanks Resdesign!) x x

  • How to add a link to an interactive svg using edge commons library

    Hi,
    I've been playing around with this wonderful Edge Commons interactive SVG tutorial
    My question is : How to add an external link "url" to an interactive svg using edge commons library ?
    Edge commons example file :
    http://edgedocks.com/market/interactive-svg-example-project-edge-commons
    Edge commons  video tutorial :
    http://www.youtube.com/watch?v=4UEB6gaLKuw
    I have adapted this tutorial to an interactive map, http://madudesign.com/works/france/ every thing is going fine until I couldn't figure out to link a particular url on each part of the region of the map.
    I managed to figure out how to change colors on the different parts of the map on mouse over and mouse out but I'm not quite comfortable with JavaScript since I don't use it every day...
    I have tryed to link to an url by passing it on the illustrator layer and via the onclick event (event.target.id) to a simple url
    http://redpen.io/6svh5u
    then working in Edge and publishing on the browser the link returns me a weird url line by replacing the original url slashes "//" by "_x2F_" and I must have misunderstood the proper JavaScript line to open that link from there...
    for example on my actual exemple "http://madudesign.com/works/france/"
    the first top region of France is normally a link to "http://www.google.com" and it returns "http:_x2F__x2F_www.google.com" plus the complete path to the file too...
    I don't know how to get around this trick and have back for each region a particular clean link from the event target id of the svg...
    thank-you for any help
    matt
    link to my edge animate file if needed :
    http://madudesign.com/works/france/carte_de_france.zip

    I got an answer from the Edge Commons dream team and I am very grateful to them :
    "The problem that you bumped into was that you hadn't included a valid URL so far. We weren't sure if you wanted to include them within the SVG file or if you wanted to implement the functionality within Edge Animate. We came up with a solution for the latter one, with a simple switch in the js code:
    You have to type in the appropriate URL of course for all the cases."
    I have to share the final result:
    http://www.madudesign.com/works/france/france_map/
    And the zipped project file:
    http://www.madudesign.com/works/france/france_map.zip
    Thanks to Daniel & Simon
    Matt

  • I am a new using Adobe products, and I am creating an Animation using Edge Animation.....

    Hi guys.
    As I said, I am new working with Adobe products, like Dw, and now I am creating an animation using Edge Animation.
    Actually, I am creating a carrousel with different pictures representing three different apps being displayed from different devices, moving them and creating a simulated
    movement for each one, based  on the functionality, that action should be activated by a button (i.e.) titled "Inventory", the action to execute is to move
    the three related screens ( Desktop, Ipad and Iphone ) from the original position  to the middle screen, but at the same time, and this is what I need to know,
    If there is another set of screens for a different application, how to move those back to the original position, before moving
    the selected one, "Inventory". I tried to use a duplicated transition and inverting, it works, but it doesn't stop waiting for a new action, and how to combine
    that movement back with the selected app-transition?
    I put  two screenshots with the stage and the original position for all of them. I have not created the buttons yet. I imagine I should use some kind
    of conditional statements to execute the action sending back  those elements  located in the middle  of screen, because were selected before,
    and then execute to animation to move the selected app.
    I would appreciate your help on this matter.
    Thanks.
    Gustavo Hevia
    original Position.
    After the First animation for Inventory App.

    No answers, Ok.
    I will try to give you more information about I want to do.
    I am a Filemaker Developer, and I started creating my webpage, and one of thing I would like to do is this
    animation and put it on my website.
    What I want is to simulate a carrousel of options to show the selected application using the three buttons,
    Now, I put the three buttons and each one of them is moving the three corresponding applications, that's fine.
    But the issue I have :
    I am using Mouseover and Mouseout to show a different color and size of the buttons, and to execute the
    corresponding animation.
    For each event I created different labels : Inventory_hover ; Inventory_mouseover ; Inventory_Animation and
    Inventory_Animation_Reverse and so on.
    Testing that
    After I selected one of them, and it ended moving the three pictures to the center of the screen, and then I
    leave, the three screens moved to the original position, which is not a bad idea, but I want to control that
    moving.
    So, what I want as a summary is :
    1) to control that back movement. I was trying to figure out how to add some code inside the Animation code, and
    just before execute that animation, check if there is another application selected before, and then move that
    set of pictures back to the original position, since I have only three applications pictures, and only one can move
    at the time, the checking "If Statements" would be for two others conditions.
    2) That should be done only when one of the buttons is clicked, and not when the mouse leaves the buttons like it
    is happening now.
    I attached a zip file with my EA files.
    Thank you in advance, Any help would be really appreciated.

  • How do I use edge commons composition loader to load multiple compositions with a next and back button?

    I am working on an interactive book and have set up each page as a separate composition in edge.
    I am using  the edge commons JS library to load multiple compositions into a main composition.
    You can see how this works here: Edge Commons - Extension Library for Edge Animate and Edge Reflow | EdgeDocks.com
    The way the edge commons tutorial is set up requires a button for each composition i want to load. I am interested in loading multiple compositions with a "next" and "back" button, and a "swipe left, "swipe right" gesture on the content symbol that each composition is loaded into. I also need the swipe features on the content symbol not to interfere with the interactive elements on the loaded composition.
    Please suggest a solution that will work without adding additional scripts beyond edge commons and jquery.

    Sort of. I'm using this code inside an action for a button symbol. But it doesn't work perfectly. Trying to debug it.
    Let me know if you have any luck.
    //Check to see if pageCounter already exists
    if (typeof EC.pageCounter === 'undefined') {
      // it doesn't exist so initialize it to first page
        EC.pageCounter = 2;
    //check if the page is only 1 digit -- patch for single digit
    if (EC.pageCounter < 9) {
       // it is, so we need to pad a 0 on the front.
      EC.pageCounterString = "0" + EC.pageCounter;
      //e.g.  01 ...09,11,12,13....115,222352,,....
    else {
      EC.pageCounterString = EC.pageCounter;
    EC.loadComposition(EC.pageCounterString + "/publish/web/" + EC.pageCounterString + ".html", sym.$("container"));
    EC.pageCounter = EC.pageCounter + 1;
    //TODO for back  -1

  • Is it possible (or feasible) to create an entire website full of animations using Edge Animate?

    Back when Adobe Edge preview first came out I tried making this site:
    http://www.bluekanji.net based on a friends request to have everything animate, with sound effects, music, etc.  It didn't turn out too well and the coding is a mess because of my lack of coding knowledge and trying to jam stuff in there when Edge didn't allow it at the time.
    I'm currently recreating the site from scratch, but hoping to make it all one cohesive page, instead of every animation having to be on a new page.
    My main issue now is that when I have any animation play the next one will overlap and block one another and it becomes a pretty big mess.  So my question is is it possible to do a full site full of animations with Edge Animate (and/or with Edge Reflow)? Or is it better to try something else?
    Thanks.

    There has been many new features added post the preview releases. You can check the below links for information on what added in 2.0,3.0 and CC 2014 releases.
    Latest Version: https://helpx.adobe.com/edge-animate/using/whats-new.html
    EA 3.0: https://helpx.adobe.com/edge-animate/using/whats-new-edge-animate-30.html
    EA 2.0:  Edge Animate Help | New features summary
    I would recommend you to try Edge Animate/Reflow/Muse for creating websites and let us know if you encounter any issues.
    -Sujai

  • Click to scroll to a point of the stage on a parallax website using edge commons

    Hi Edge community,
    I need help to finish a parallax website that I created using the edgecommons library.
    this is what I've done up till now:
    Le Papillon - Singapore
    I'd like to add the possibility to smoothly scroll to a certain point/percentage of the scrollbar by clicking on a link in a (future) fixed navbar instead of using the mouse wheel.
    Which is the best way to achive this?
    Thank you,
    Ettore

    lol, I went and tried the getPixel() method for it, but using Stage.getPixel(100,100) or _root.getPixel(100,100) returned undefined.
    So I did more research, and I found bitmap.draw(), too bad I could have just checked the forum again. :3
    its exactly what I wanted, thanks for your help, kglad.

  • Advice on using Edge Animate & Interactive SVG to create an interactive map

    Hello folks, I'm hoping for some guidance on a complicated graphic. My org. has an existing interactive map which was created by a freelancer for us using Ruby and js. It's very nice but I wanted to see if it's possible to recreate using Edge Animate (both as a challenge to myself and as a way of being able to move ownership of it in-house). Here's the map:
    http://csai-online.org/sos
    I have done a fair amount of work in Edge Animate but have mostly stuck with simple interactivity (play, repeat, navigation links, etc.) so this would be a stretch. But I'm thinking that the map itself (with various shadings) could be recreated using Edge Commons' Interactive SVG function. I would create the map in Illustrator as an svg with different layers for each group of states, which would then be activated by the buttons in Edge Animate. (The floating box could be done entirely in Animate.)
    So my questions are,
    - Does this seem doable, and has anyone done something similar?
    - How do I trigger the layer visibility toggle from Edge? There's a tutorial from Edge Commons which changes the color of an object by CSS, but it seems like it would be simpler to use layer visibility.
    - Some of the combinations of checkboxes result in States that are in multiple groups (resulting in a striped fill). I'm guessing I'd need to add some code to indicate that if buttons X and Y were both checked, a third combined layer would be shown. (A further complication is that each of the groups of buttons shuts off the other groups.)
    Alternately, it seems like I could also create each state as a series of differently-colored graphics which are then shown or hidden based on which buttons are checked (using arrays, maybe?), but that seems a messier due to the million separate images.
    Anyway, how would you approach this problem, I guess is my main question.
    Thanks very much.

    This looks pretty simple to me and I don't see why you wouldn't be able to do it in edge animate.
    Create each state as a button and animate the hover effects inside a symbol and then on the main timeline animate the content boxes opacity to on and off and set labels for each "on" state and then in your button link to that label in the mouse over actions preset.u
    As far as calling the bottom content into the div i would just do that by hand by grabbing a simple script off the internet. *theres loads*

  • Edge Commons...Help

    I have been working very hard over the last few months to build in interactive book app with Edge Animate. I have all the pages done and all the interactivity and sound work...in a browser.
    However, when I package the mobile app (using PhoneGap Build), I get no sound (using Animate's native audio control) unless the app is running on Android 4.2 or higher.
    So I tried a different method I found here: Edge Animate & PhoneGap Build | Prototype A
    This did get sound working on older Android devices, but only on the first page (once I moved to page 2, using straightforward html page linking, no more sound), and still no sound on iOS.
    I then tried the bootstrapping method from the API. But I couldn't get control of my pages, it just ran instantly to the end of the last page. However, the sound on that last page was working (in Android only).
    At a loss I tried using Edge Commons Composition Loader and Sound. I can get the first page to load in the container, but I cannot get the navigation buttons (held within the loaded comp) to load the next page. I can get the sound to work in a browser, but not on a device. And, on Android my loaded composition seems to be cropped, only showing the top left quarter, and runs extremely slowly.
    Here is the code I have in the main wrapper page (the one which has the container for loading the external comps into.
    //In creationComplete:
    EC.loadComposition.setup(sym);
    EC.Sound.setup(sym);
    EC.centerStage(sym);
    //In compositionReady:
    EC.loadComposition("Pages/RUP_Cover.html", sym.getSymbol("content"))
    .done(function(comp) {
      i=0;
      var stage = comp.getStage();
      stage.$("FWD").click(function() {
      i++;
      stage.$("PREV").click(function() {
      i--;
      if(i<1){
      i=1;
      if (i==1){EC.loadComposition("Pages/RUP_Pg01.html", sym.getSymbol("content"))}
      if (i==2){EC.loadComposition("Pages/RUP_Pg02.html", sym.getSymbol("content"))}
    I am slowly going insane with this project so any help would be enormously appreciated.
    I think the iOS audio issue may be to do with the config.xml I am using for PhoneGap Build, but if anyone has any ideas...
    Thanks
    Justin

    I know this a really late response but this may help someone later...I think you're looking for:
    EC.debug( "layout: "+layout, "ADAPTIVE" );
    The output of layout will be: 300. So:
    if(layout == "300"){
         do someting
    brian

  • Is anyone else trying to use Edge Animation to create software simulations?

    We're in the process of evaluating Edge Animate to create software simulations. We want to use it because it has many great HTML5 functions. We're also evaluating Captivate7 - which also has an HTML5 option - but it lacks some of the functionality we're looking for. Like the ability to show users a 'hint' when they hover their cursor over an object. Why that functionality isn't there already - I still can't figure out. It would be create if Adobe could take some of the functionality in Edge Animate and incorporate it into Captivate! It would make an awesome product!
    If you're attempted or were successful creating a software simulation using Edge Animate - I would be interested in hearing how you accomplished it. Also looking for some best practices around this idea.
    I think Edge Animate would be an amazing product for software simulation if it incorporates a few enhancements.
    In the timeline - allow the user to nest things. The timeline can get unwieldy quickly. Would be nice to be able to nest items and then twirl the nested items to hid them - like in AE.
    Enable AE functionality with the ability to play one Edge Animate piece inside another.
    Provide the ability to add video with transparent backgrounds. We wanted to have someone walk on screen and appear as if they were walking on the software. Can't do it in Edge Animate!
    If you have any other ideas or suggestions for creating software simulations in Edge Animate - would be great to hear from the community

    Hi there,
    Thanks for your suggestions! We're looking at ways to make the timeline more flexible as far as nesting and/or hiding elements, so hopefully these types of improvements will come as Animate continues to grow. Just wanted to quickly pop in to address a few of your bullet points - hopefully, other Animate users can answer regarding whether they use Animate for software simulation.
    Your first two points (I think) can be at least somewhat addressed by using symbols. Each symbol has its own timeline which can contain many elements, but it will appear as a single element in the main (Stage) timeline.
    Regarding video, there's currently only one HTML5 browser that natively supports video with alpha transparency: Chrome, using video encoded to the webm format. See here for more info: Alpha transparency in Chrome video - HTML5Rocks Updates
    Once other browsers start incorporating native support for video with transparency, this could be pretty cool. But as of now, native browser support is still quite limited.
    Thanks,
    Joe

  • Embedding audio and animation into DPS using Edge Animate CC

    Hello all,
    I'm using all CC programs.
    I've created an animation in Edge Animate that I would like to place into my InDesign doc for DPS.
    The animations match up with sound file that I've imported into my EA file. I've tried using the buzz.js script (step-by-step as per the video tutorials I saw), but to no avail.
    Is there a way to place/embed the animation along with the sound for DPS?
    The animation will need to be simultaneously activated by the user to play.
    Thank you very much in advanced for your help—hopefully there is a solution or some sort of work-around!
    lv

    Would you be able to supply a link to your past messages? I'm not sure what messages you're talking about.
    Also, I do not need an audio over an audio—just one that plays while an animation plays.
    Would that be the same concept?
    Thank you.

  • Using CSS animations in Edge Animate without .js

    Is it possible to use edge animate with only css transitions and effects.  I do not want to have these .js files for animation and only want to draw and animate in css.  Is this possible?

    Ask in the Edge forum, but I would simply assume no. CSS3 animation support is different and inconsistent across browsers, so the only way to get predictable results is actually jQuery animation.
    Mylenium

  • Edge Commons to trigger CSS animation in SVG?

    Hi there,
    I have an SVG file that has a sequence of 2 CSS animations within it:
    <defs>
    <style type="text/css">
         .t1a {
    stroke-dasharray:537;
    stroke-dashoffset:537;
    -webkit-animation: t1a 2s linear forwards;
    <!-- Animation lines-->
    @-webkit-keyframes t1a {
    from {
    stroke-dashoffset: -537;
    to {
    stroke-dashoffset: 0;
         .t2a {
    stroke-dasharray:544;
    stroke-dashoffset:544;
    -webkit-animation: t2a 2s linear forwards;
    -webkit-animation-delay: 2s;
    <!-- Animation lines-->
    @-webkit-keyframes t2a {
    from {
    stroke-dashoffset: -544;
    to {
    stroke-dashoffset: 0;
    </style>
    </defs>
    The items touched by these CSS are 2 lines:
    <line id="t1a" fill="none" stroke="#000000" stroke-width="0.391" stroke-miterlimit="3.864" x1="282.5" y1="999" x2="423.2" y2="480.3"/>
    <line id="t2a" fill="none" stroke="#000000" stroke-width="0.391" stroke-miterlimit="3.864" x1="949.1" y1="622.2" x2="423.2" y2="480.3"/>
    I'd like to have 2 buttons on Animate to start the 2 animations. I mean that I was thinking to apply and remove the classes to the ids in some way. I think that maybe with Edge Commons this is possible. So, summarizing, I need to manipulate some ids in the SVG and apply those classes to them. Is it possible?

    Have you tried the Adobe forums also?  E.g. I saw
    http://forums.adobe.com/message/4718924

  • Episode 2: Flexible Layouts Using Adobe Edge Animate and the Edge Commons Library | Create Like Crazy with Adobe Edge | Adobe TV

    With Adobe Edge Animate you can create flexible layouts easily. In this lesson you will learn how to use percentage values, alignment and several other layout presets to build flexible layouts that look great across all screens. You will also learn how to create different adaptive layouts for specific screen sizes using the Edge Commons library.
    http://adobe.ly/QnCdXY

    No ADOBE TV videos play. Not in the latest Firefox nor IE. The play icon appears - I click it  - and the frame remains black -- no error message, nothing. I even tried accepting 3rd party cookies- nothing.  I can play videos fine from othe sites, youtube .... etc ....

Maybe you are looking for

  • Can no longer open existing pdf files

    My adobe free reader program has recently become very slow and fairly non-responsive lately.  I use PDFCreator Plus for printing.  When I attempted to print a PDF to the PDFCreator Plus today (as I've done for years) when the reader was opening files

  • Back Button: Screens

    Im in the middle of a flash website and im using screens to design it.. Im trying to create a simple back button on the main screen so that It acts as a simple back button.. pretty much I want it to go back in history 1 screen.. I dont want to its pa

  • Photosmart all in one - not scanning to PDF

    Our photosmart premium all in one fax, scanner printer no longer scans to PDF files.  It prints ok and we can scan to photo directly from the scanner to USB and from / to the PC. It worked perfectly well before, then started to stop several pages int

  • How i can Insert selected records in database table using check box.

    Hi Friends, I have non database block, which displayed multiple records, now I add a Check Box to this block and now I want to insert the records in a database table which I checked. So when I press a button, all the checked records are inserted in t

  • Once you pre order, how do I get the apple care plan

    Hi, I got my pre order done, but didn't see where, I can buy the Apple care plan? Any help would be appreciated? Thanks, Jerry