Image gallery: Open browser w/ 'Next/Back' button?

Howdy people. I am planning on making a photo gallery. I want
to have the user click on the first image - have a browser window
open then have a 'NEXT' 'BACK' and "CLOSE WINDOW" button in that
browser window. I know how to do all except the arrow part. Can
anyone help? Thank you so much!

Create your second page so it's layed out the same way as the
first. The
next link simply points from one page to another as per
normal hyperlink.
You'll need to change the next link (and previous link) on
each page
manually.
So, page2.htm will have a previous link to page1.htm and a
next link to
page3.htm, and
page3.htm will have a previous link to page2.htm and a next
link to
page4.htm.
Or are you looking for more automated way using a server-side
language?
HTH,
Piers

Similar Messages

  • Using next/back button along with thumbnails

    Please Help! I cannot figure out how to get the back/next buttons to work with the thumbnails. For instance if I click on the 4th thumbnail then hit next/back it skips and goes to the 2nd or 12th image. I know my scripting is wrong but I just can't figure it out. I also want the next/back buttons to loop.
    Can anyone please help me.
    Thank you for your time,
    stop();
    next_btn.addEventListener(MouseEvent.CLICK, nextimage);
    var imageNumber:Number = 1;
    function checkNumber():void{
    next_btn.visible = true;
    back_btn.visible = true;
    //If the imageNumber is = 12, then do something...
    if(imageNumber==12){
      trace(imageNumber);
    //if the imageNumber is = 1, then don't show the back button
    if(imageNumber==1){
      trace(imageNumber);
    checkNumber();
    function nextimage(evtObj:MouseEvent):void {
    //Adding number to the current value +1
    imageNumber++;
    UILoader_courand.source="portfolio/large/Courand/Courand_"+imageNumber+".jpg";
    checkNumber();
    back_btn.addEventListener(MouseEvent.CLICK, backimage);
    function backimage(evtObj:MouseEvent):void {
    //Subract 1 from the current value
    imageNumber--;
    UILoader_courand.source="portfolio/large/Courand/Courand_"+imageNumber+".jpg";
    checkNumber();
    aboutProject_btn.addEventListener(MouseEvent.CLICK, aboutclick);
    function aboutclick(evtObj:MouseEvent) {
    trace("Courand Desc was clicked");
    gotoAndStop("Courand Desc");
    var thumbLoader:Loader = new Loader();
    thumbLoader.load(new URLRequest("portfolio/thumbs/Courand/courandThumb1.jpg"));
    thumbLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
    function thumbLoaded(event:Event):void {
    allThumbnails.addChild(thumbLoader);
    thumbLoader.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_1.jpg";
    var thumbLoader2:Loader = new Loader();
    thumbLoader2.load(new URLRequest("portfolio/thumbs/Courand/courandThumb2.jpg"));
    thumbLoader2.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded2);
    function thumbLoaded2(event:Event):void {
    allThumbnails.addChild(thumbLoader2);
    thumbLoader2.x=70;
    allThumbnails.buttonMode=true;
    thumbLoader2.addEventListener(MouseEvent.CLICK, loadMainImage2);
    function loadMainImage2(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_2.jpg";
    var thumbLoader3:Loader = new Loader();
    thumbLoader3.load(new URLRequest("portfolio/thumbs/Courand/courandThumb3.jpg"));
    thumbLoader3.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded3);
    function thumbLoaded3(event:Event):void {
    allThumbnails.addChild(thumbLoader3);
    thumbLoader3.x=140;
    allThumbnails.buttonMode=true;
    thumbLoader3.addEventListener(MouseEvent.CLICK, loadMainImage3);
    function loadMainImage3(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_3.jpg";
    var thumbLoader4:Loader = new Loader();
    thumbLoader4.load(new URLRequest("portfolio/thumbs/Courand/courandThumb4.jpg"));
    thumbLoader4.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded4);
    function thumbLoaded4(event:Event):void {
    allThumbnails.addChild(thumbLoader4);
    thumbLoader4.x=210;
    allThumbnails.buttonMode=true;
    thumbLoader4.addEventListener(MouseEvent.CLICK, loadMainImage4);
    function loadMainImage4(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_4.jpg";
    var thumbLoader5:Loader = new Loader();
    thumbLoader5.load(new URLRequest("portfolio/thumbs/Courand/courandThumb5.jpg"));
    thumbLoader5.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded5);
    function thumbLoaded5(event:Event):void {
    allThumbnails.addChild(thumbLoader5);
    thumbLoader5.x=280;
    allThumbnails.buttonMode=true;
    thumbLoader5.addEventListener(MouseEvent.CLICK, loadMainImage5);
    function loadMainImage5(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_5.jpg";
    var thumbLoader6:Loader = new Loader();
    thumbLoader6.load(new URLRequest("portfolio/thumbs/Courand/courandThumb6.jpg"));
    thumbLoader6.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded6);
    function thumbLoaded6(event:Event):void {
    allThumbnails.addChild(thumbLoader6);
    thumbLoader6.x=350;
    allThumbnails.buttonMode=true;
    thumbLoader6.addEventListener(MouseEvent.CLICK, loadMainImage6);
    function loadMainImage6(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_6.jpg";
    var thumbLoader7:Loader = new Loader();
    thumbLoader7.load(new URLRequest("portfolio/thumbs/Courand/courandThumb7.jpg"));
    thumbLoader7.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded7);
    function thumbLoaded7(event:Event):void {
    allThumbnails.addChild(thumbLoader7);
    thumbLoader7.x=420;
    allThumbnails.buttonMode=true;
    thumbLoader7.addEventListener(MouseEvent.CLICK, loadMainImage7);
    function loadMainImage7(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_7.jpg";
    var thumbLoader8:Loader = new Loader();
    thumbLoader8.load(new URLRequest("portfolio/thumbs/Courand/courandThumb8.jpg"));
    thumbLoader8.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded8);
    function thumbLoaded8(event:Event):void {
    allThumbnails.addChild(thumbLoader8);
    thumbLoader8.x=490;
    allThumbnails.buttonMode=true;
    thumbLoader8.addEventListener(MouseEvent.CLICK, loadMainImage8);
    function loadMainImage8(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_8.jpg";
    var thumbLoader9:Loader = new Loader();
    thumbLoader9.load(new URLRequest("portfolio/thumbs/Courand/courandThumb9.jpg"));
    thumbLoader9.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded9);
    function thumbLoaded9(event:Event):void {
    allThumbnails.addChild(thumbLoader9);
    thumbLoader9.x=560;
    allThumbnails.buttonMode=true;
    thumbLoader9.addEventListener(MouseEvent.CLICK, loadMainImage9);
    function loadMainImage9(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_9.jpg";
    var thumbLoader10:Loader = new Loader();
    thumbLoader10.load(new URLRequest("portfolio/thumbs/Courand/courandThumb10.jpg"));
    thumbLoader10.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded10);
    function thumbLoaded10(event:Event):void {
    allThumbnails.addChild(thumbLoader10);
    thumbLoader10.y=70;
    allThumbnails.buttonMode=true;
    thumbLoader10.addEventListener(MouseEvent.CLICK, loadMainImage10);
    function loadMainImage10(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_10.jpg";
    var thumbLoader11:Loader = new Loader();
    thumbLoader11.load(new URLRequest("portfolio/thumbs/Courand/courandThumb11.jpg"));
    thumbLoader11.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded11);
    function thumbLoaded11(event:Event):void {
    allThumbnails.addChild(thumbLoader11);
    thumbLoader11.x=70;
    thumbLoader11.y=70;
    allThumbnails.buttonMode=true;
    thumbLoader11.addEventListener(MouseEvent.CLICK, loadMainImage11);
    function loadMainImage11(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_11.jpg";
    var thumbLoader12:Loader = new Loader();
    thumbLoader12.load(new URLRequest("portfolio/thumbs/Courand/courandThumb12.jpg"));
    thumbLoader12.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded12);
    function thumbLoaded12(event:Event):void {
    allThumbnails.addChild(thumbLoader12);
    thumbLoader12.x=140;
    thumbLoader12.y=70;
    allThumbnails.buttonMode=true;
    thumbLoader12.addEventListener(MouseEvent.CLICK, loadMainImage12);
    function loadMainImage12(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_12.jpg";

    Hi Tapash,
    You are probably right. However - I have been reading the User Guide back button chapter twice now - and still not sure what the problem is.
    I think, that for this purpose, you can consider my page as a very simple application - a search page with a search result table. Admit that I am not an OAF back button expert yet, but I wonder - this must be a very common problem to all OAF pages with a search / result table, not a problem specific to my application.
    My page is almost built out-of-the-box, except that I have a SingleSelection added to the result table. I have very little custom code in my processRequest, it looks like this:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OATableBean table = (OATableBean)webBean.findIndexedChildRecursive("ResultsRN");
    table.setTableSelectionText("Set Item number, then Select Equipment and...");
    table.setSelectionDisabledBindingAttr("DisableApproval");
    The page works fine after navigating back from the home page - except for the standard Next/Previous links in the results table. If I click the search button - for instance - a new search is being done ok.
    Appreciate if you can share an example what is needed to support back button in such a simple page.
    Thanks,
    Søren Moss

  • Since I've updated to iOS 6 I am unable to use the next/back buttons from Headphone for audio book chapters.

    Since I've updated from iOS 5 to iOS 6 I am unable to use the next/back buttons from Headphone for audio book chapters.
    This is working fine for albums but are broken for audio books.
    The back button refers always to the first chapter of the audio book (very annoying if you are in the middle of an audio book) and the nex button goes one level higher back to the selection of the audio book itself.
    In iOS 5.0 it was still possible to navigate throught the audio book chapters using these buttons.
    This still happens in iOS 6.1.
    Is this a known bug?
    Does any solution exist?
    Thx,
    Oliver

    To gdgmacguy your a f****** idiot for one I'm having the same problem as pennymar. And you tell me to quit whinning. You got more problems then the iOS 6 you did not answer my question nor the other 13 or whatever you replied to within a 30 min time frame. You must got nothing better to do then to harass people and to pretend you know something about apple products. Which you don't from what I've read the other advices you should have gave to other people. But you didn't you replied a question back to the people asking a question. So if your not gonna use these community forums the right way don't use them at all.

  • I need to have both Next & Back buttons displayed for viewing 20 records at

    Hi Everybody,
    I have a JSP page which has 2 part: The header (Selection for search with the SEARCH button) and a search result table.
    Is it possible to remember the last record printed & start from the next record when I click on "Next" button? When I click on the "Next" button will it create new page? I need to have both Next & Back buttons displayed for viewing 20 records at a time.
    The current JSP is using "session.removeAttribute("XXXWorkItemVector") to print out records.
    I'm very new to JAVA and JSP, so please help me with my assignment and send me e-mail to [email protected]

    Check this:
    http://forum.java.sun.com/thread.jsp?forum=45&thread=188239
    This should be of help to you.

  • How can i figure out in a browser whether the back button or a forward button is used??

    I have checked in the history of a mozilla database to find whether the usage of a back button or a forward button can be found .where can i find them?? They are not getting stored in the sqlite database..Please help!!

    i have one more question:
    I have seen the sessionstore.js file. It has the tabs and windows information in it.the information is very unclear.Is that data in js is similar to places.sqlite.When i see the id number in js file it is not matching with any of the table in the moz_historyvisits or moz_places..am confused ..can you help me?/

  • Image gallery. How to click on image to advance to next image?

    Flex 4, flash builder 4.6.
    This gallery has a row of numbers. When you click on a number, a photo displays above. Each number represents a photo from data.xml. Works good. Now I want to click on a photo that is already displayed and cause the next photo in the series to display. How do I go about doing this? Thanks.
    <s:Application creationComplete="service.send()">
    <fx:Declarations>
            <s:HTTPService id="service" url="data.xml" result="serviceHandler(event)"></s:HTTPService>
    </fx:Declarations>
    <fx:Script>
            <![CDATA[
                   import mx.collections.ArrayCollection;
                   import mx.rpc.events.ResultEvent;
                   [Bindable]
                   private var images:ArrayCollection;
                   private function serviceHandler(event:ResultEvent):void{
                        images = event.result.gallery.image;
            ]]>
    </fx:Script>
    <s:Image source="assets/poster/{imagesList.selectedItem.pic}" />
    <s:List id="imagesList" dataProvider="{images}">
         <s:itemRenderer>
                <fx:Component>
                    <s:ItemRenderer>
                        <s:Label text="{data.number}"  fontSize="12" />
                    </s:ItemRenderer>
                </fx:Component>
          </s:itemRenderer>
    </s:List>
    </Application>
    data.xml
    <gallery>
        <image>
            <number>01</number>
            <pic>photo01.jpg</pic>
        </image>
        <image>
            <number>02</number>
            <pic>photo02.jpg</pic>
        </image>
    </gallery>

    Hi..
    i have a simaliar problem, can anyone help..
    Ive made a gallery using xml and the sparks list component. that displays images in a horz list which ofcourse can be clicked to see the larger image, but then ofcourse to view the to other images or the next image you have to hit the back button and then select another.
    How can i swipe on the large image for move to the next item  without having to go back to list.    Thanks.
    here is what ive got so far..
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            title="Page {id1}"
            destructionPolicy="never"
            actionBarVisible="true"
            viewActivate="init()">
        <fx:Script>
            <![CDATA[
                import valueObjects.Bookpage;
                [Bindable]private var id1:String;
                [Bindable]private var thumbimage:String;
                [Bindable]private var largeimage:String;
                private function init():void
                    pgImage.addEventListener(TransformGestureEvent.GESTURE_ZOOM, onZoom);
                    this.addEventListener( TransformGestureEvent.GESTURE_SWIPE, handleSwipe );
                    var thisbpage:Bookpage = data as Bookpage;
                    id1 = thisbpage.id;
                    largeimage = thisbpage.largeimage;
                private function onZoom(event:TransformGestureEvent):void
                    var mySprite:Sprite = pgImage as Sprite;
                    if(mySprite.scaleY.valueOf() >= 1)
                        mySprite.scaleX *= event.scaleX;
                        mySprite.scaleY *= event.scaleY;
                    else
                        mySprite.scaleX = 1;
                        mySprite.scaleY = 1;
                private function handleSwipe(event:TransformGestureEvent):void
                    // Swipe was to the right
                    if (event.offsetX == 1 ) {
                        // push the PreviousView without any data using default
                      some help here. pls ..swipe to prev image if any
                        // Swipe was to the left
                    else if (event.offsetX == -1 ) {
                        // push the NextView withour any data using
                        some help here. pls ..swipe to next in list
                    // Swipe was to the down
                    if (event.offsetY == 1 ) {
                        // push the PreviousView without any data using default
                        // ViewTransition
                        this.actionBarVisible = true;
                        // Swipe was to the up
                    else if (event.offsetY == -1 ) {
                        // push the NextView withour any data using
                        this.actionBarVisible = false;
            ]]>
        </fx:Script>   
        <fx:Declarations>
            <s:SlideViewTransition id="slideUp" duration="300" direction="up" transitionControlsWithContent="false"/>
        </fx:Declarations>
        <s:states>
            <s:State name="portraitPhone" stateGroups="phone,portrait"/>
            <s:State name="landscapePhone" stateGroups="landscape,phone"/>    
        </s:states>   
        <s:actionContent>
            <s:HGroup>
            <s:Button icon="assets/qsearch.png" click="navigator.popView(slideUp)"/>
            <s:Button icon="assets/prev.png"/>
            <s:Button icon="assets/next.png"/>
            </s:HGroup>
        </s:actionContent>
        <s:Scroller x="0" y="0" width="100%" height="100%" >
            <s:HGroup>
                <s:Image id="pgImage" left="0" top="11" source="assets/gallery/{largeimage}"  />
            </s:HGroup>
        </s:Scroller>
    </s:View>

  • I get no browser home page; no favorites/bookmarks; no back buttons; no tools, etc. just a generic Firefox bar with preset sites which go nowhere when clicked. I have windows vista home premium. Firefox works fine on my desktop

    Upgraded to latest Firefox version on my laptop w/ Vista Home Premium and get no browser page; no back buttons; no bookmarks/favorites; no address bar...nothing like a typical browser page...all I have is a cumbersome Firefox bar that has preset sites that do nothing when clicked.
    FF worked fine before I "upgraded". Want 3.5 back
    == This happened ==
    Every time Firefox opened
    == about 5 days ago

    I followed your instructions and installed Developer Suite 10G on Windows Vista Home Premium edition. I have Oracle 11G DB running on the same machine.
    Two points, Steve:
    1. When I tried to set the maximum virtual memory to 6110 an error message displayed from Windows and told me that I can't set the maximum virtual memory to more than 4096. I set it to 4090 and it worked and I got nothing wrong during the installation process.
    2. After installing JInitiator and disabling Java on Firefox I called the http://127.0.0.1:8889/forms/frmservlet page and everything seemed to be OK because the Oracle Forms Services logo appeared and then a successful installation message appeared , but as I clicked (ok) to continue a gray screen appeared inside the browser (like the one displayed when you try to run a Java applet inside a browser) and then I wait to death till something appears but sadly nothing. I just get a blank gray screen inside my Firefox browser.
    Do you have any idea what to do to solve the problem?
    Regards

  • Disabling browser forward & back buttons

    Does anyone know how to disable those 'windows/browser' forward and back buttons next to the arrows on the T510 with win 7 x64?
    I know older thinkpads had software to modify the keyboard, i'm not seeing any options here.
    I find those keys to be somewhat annoying -- i've already lost work by accidentally tapping them.
    thanks!
    Solved!
    Go to Solution.

    Have a look here:  http://forum.notebookreview.com/showthread.php?t=4​69665  I think that utility might do the trick!
    ThinkPad T510 : i5-540M : 8GB PC-10600 : 500GB 7200rpm : 15.6" HD+ : Intel 6300 : Win7 Pro 64 : 9Cell
    Ordered 2/Feb/2010 : Shipped 22/Feb/2010 : Received 3/Mar/2010

  • I want Next/Back links between topics. Are there good examples how to do this?

    I also have multiple books in which I want to have Next/Back buttons. The Help PDF offered by Adobe does not adequately describe how to do this. Does anyone have a good example/description of how I do this?
    Walt Mahan

    Hi again
    To access the link I listed, you just click it in your web browser.
    There are a few different ways you can do this. You can insert the text as you wish to see it, then manually create the links. Ick! That's not very much fun.
    If you are using RoboHelp 8  you could create a Master Page and insert a Breadcrumb Trails placeholder, then apply the Master Page across the topics.
    For any version of RoboHelp you could achieve this by creating a Browse Sequence (Tools > Browse Sequence Editor) and generate WebHelp twice. The first pass to folder A and the second pass to folder B. During the first pass, you use the "Traditional - No skin" output. This would produce topics with code in them that contains the Previous and Next links. Then the second pass would be generated with a skin. You would then copy the topics from folder A and overwrite the topics in folder B to obtain the best of both worlds.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Problem with history when ther is page redirection after 'go back' button is clicked.

    Recently I was developing some application which requires request redirection from server when the browser's 'go back' button is clicked. At that time while I was testing implemented behaviour i noticed that when i go one page back forward button is disabled and when I want to go back again I am returned one the same page over and over again. It seems that there is a problem with history and how firefox handles a page redirection.
    In other browsers everything goes as it should and there isn't any such problem with history.
    I hope that this problem will be solved in the next version.

    Hi,
    I found this Terminal command here on the discussion board posted bu Sinzu.
    defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2BackspaceKeyNavigationEnable d -bool YES
    Dimaxum
    Sorry, everyting is BOLD tekst.

  • Use a Back Button of internet explorer in WD application

    Hi Everyone
    I tried to find if is possible to go back (to previous page) by using browser(IE) Go Back Button. Do you thing that is possible? How ?
    Thanks a lot for your replies

    Hi Michal,
    Though I am also not a very old user of SDN but one thing which I feel we the new user can opt and contribute in some form to SDN is by properly closing the questions if they are answered. I felt that your question is answered thats why I replied to this thread. Just a suggestion.
    Thanks & Regards
    Sid

  • I do not have a back button or a favourites button

    after the download I was asked to import everything from internet explorer then when my home page opened there is no back button and no favourites button how do I sort this

    See https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • How do i have status bar and a back button  for applets?

    I have an applet which displays a set of panels in order. Is there any way that i can have a status bar like in an browser and a back button so that it can go back and go forward. What do i need to do? Is there any sample code to do so. I am new to java and learning.
    Thanks
    Ram

    Status-Bar -- a long thin panel with a long TextField. Perhaps use something from the BorderFactory class to seperate it from other parts of the screen...
    Back Button -- Keep track of your panels in a CardLayout, for example, then use a Button with an action listener that uses the CardLayout's previous() method to move back to the last panel.

  • My daughter downloaded BearShare and I think it corrupted Firefox. I have no bookmarks or Back Button.

    I can not get rid of Bearshare. Now my Firefox browser has no Back Button or Bookmarks and Firefox is no longer my default search engine.

    See:
    * http://www.ehow.com/how_6609141_remove-bearshare-spyware.html
    See also these forum threads about BearShare:
    * [/questions/762144]
    * [/questions/700250]

  • The back button is inoperable on some websites

    When I visit a website and then open a link, the back button is greyed out and will not let me back into the previous page.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Note that you can hold down the left mouse button on the Back or Forward button to open the tab history and select an entry.

Maybe you are looking for

  • Reg: Download alv grid data with top of page into excel sheet

    Hi All, I have a selection screen with radio button for download . If that radio button was selected then the data will download into excel sheet (like if we execute normal ALV grid display from there we can download top-of-page and body as it is). A

  • How do I reset apple mail to its factory settings?

    If anyone can tell me how to reset the apple mail app to its factory settings I would really appreciate it!

  • Can I set privileges for publishing a site?

    Is it possible to set up Muse such that one of my team is able to make various changes to a site, but only I am able to publish to Business Catalyst, once the changes have been approved? Thanks in advance

  • Java.lang.reflect.InvocationTargetException while executing xjc.bat.

    Hi , After installing the latest Webservice pack , i'am trying to run the Sample application in examples directory . ( JAXB ).while running the XJC command i am getting follwing exception . I tried to run the same command by pointing the Classpath to

  • Truncating Leading Zeroes

    Hi, What is the best method to truncate the leading zeroes of an alphanumeric data item? Is there an expression editor function that could do this? I have come up with a logic involving 3 - 4 actions that could do this for a specific data item. The p