Need help moving text

Using CS4 on Win7 Pro. My client bought a template that has a flash piece and I am a total novice in Flash but I do know that you edit the FLA file and export it as a movie. So I opened the FLA file and I'm able to edit the text (all that I want to do right now) but some of the text I'm replacing is longer than the original so it gets hidden under a replay button and some is shorter and is spaced too far away from the replay button (I also want to change the color of that and I think I can figure that one out). There is plenty of room to the left for the text to move to as the original file does have varying lengths of text and it does adjust for that but I can't figure out how to change it for what I've done (I haven't received the final text yet so this is a practice run)... I changed the text by going to the timeline and selecting text from the icon (Edit Symbols) in the upper right of the screen. But where do I tell it where the text should start or how wide it needs to be? I tried moving them individually in the timeline but that didn't change it.
Here's the file: http://do-rightweb.com/fertility/flash/header_vJT.fla (I only want to leave this up temporarily because it is huge. The test location of the file in action is here: http://do-rightweb.com/fertility/
In the future I may have to swap out some of the images leaving the transitions which I think I can do by adding them as a layer deleting the ones I'm replacing...
So if anyone can lend a hand in helping me figure out how to adjust the text width I would be totally jacked! Any help and advice about swapping images or changing colors would be greatly appreciated too. Or even a link to a video to help me understand how to reverse engineer this would be cool.
Thanks in advance for your help and assistance!

Hi,
Since the text animation is done using the timeline in this file you have to manually edit the positioning of the each symbol element in every keyframe i.e
You have to go in to the editing mode for txt_c instance of txt_2 > Layer 8 where the required elements are placed
1. You have to position the Layer 1(under Layer 8) items at every key frame for the display text
you may have problem while positioning second text onwards as you will not be seeing them on stage. For this you may want to duplicate the symbol(txt_5) at key frame 37 and edit it to have only the second text and remove everything else. And you can swap the existing symbols at key frame 44 and key frame 54. You can repeat this for the rest of the text.
2. Next you have to position the numbers which spread across three layers (txt_3, txt_4 and Layer 6) under Layer 8. They are for prefix number, suffix number and the dot respectively
Thanks!

Similar Messages

  • I need help moving my Photoshop 7 from my old laptop to my new laptop which is running Windows 7 Enterprise.  I've tried two routes unsuccessfully.  I install the CD, it does not autoplay.  I execute Autoplay.exe at the root directory, I am welcomed, I ch

    I need help moving my Photoshop 7 from my old laptop to my new laptop which is running Windows 7 Enterprise. I’ve tried two routes unsuccessfully. I install the CD, it does not autoplay. I execute Autoplay.exe at the root directory, I am welcomed, I choose English, I accept the EULA, I get the Install/Explore choices window, with the Install button already selected, I click the Photoshop button, the CD spins, and nothing happens.  In the 2nd attempt I execute Setup.exe in the Photoshop directory, and nothing happens at all.  I’m never even offered the opportunity to enter my product code. What should I do?

    There could is likely a compatibility problem between the old software and the newer operating system.

  • I am working on a program book in Pages...need help moving pages around...

    I am working on a program book in Pages...need help moving pages around...

    I think word procession mode but I used a magazine template to get started and then just kept adding blank pages to finish...I have done these before without any trouble moving the pages around...so very confused.  Thanks for any assistance. 

  • Need help moving videos/photos from Galaxy S4 to iMac

    need help moving videos/photos from Galaxy S4 to iMac
    Samsung's utility Kies is awful
    Hlpe please

    did this
    import photos from android to mac
    got this, try it
    http://www.phototransferapp.com/help/android/transfer_photos_from_your_android_t o_your_mac/
    or use the first link to try some of the google hits for ways to get photos from android devices into osx

  • Need Help regarding text Output

    Dear gurus.
    I need help regarding formatting of a text.
    I want to format a employee sub group text.
    im getting a text workers (7) from a table t503t having field ptext.
    i want to show only (7) in the output not the whole text how can i do this ?
    Please help
    regards
    Saad.Nisar

    DATA: BEGIN OF itab_odoe OCCURS 0,
      department_text LIKE t527x-orgtx,"Holds the short text for department
      department_no LIKE pernr-orgeh,
      pernr LIKE pernr-pernr,
      ename LIKE pernr-ename,
      grade like t503t-ptext,   "THIS AREA GET ME TEXT OF EMPLOYEE SUBGROUP"
    *  department_text LIKE t527x-orgtx,"Holds the short text for department
      current_year LIKE sy-datum,
      wt0001 LIKE q0008-betrg,"Basic Pay
      wt1101 LIKE q0008-betrg," COLA
      wt3002 LIKE p0015-betrg,"Overtime
      per_basic type p DECIMALS 2,"Overtime percentage on basic
      per_basic_sum type p decimals 2,"Overtime Sum Division
      overtime_sum LIKE p0015-betrg,"holds sum of overtime
      basic_sum like q0008-betrg,"holds sum of basic
    END OF itab_odoe.
    Im using the select statement to get the employee subgroup from the table
    select single ptext
        from t503t
        into itab_odoe-grade
        where persk eq pernr-persk
        AND SPRSL eq 'EN'.
    now in itab_odoe-grade the values comes is Workers (7) , Snr Mgt (M3)
    i want to show only the text in Brackets.

  • Need help in text field with 2D array

    text field with 2D array
    Hi
    I need help to represent (i) in from field and (j) in to field
    I and j are 2D an array indices.
    This code are not complated
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    //declaring class
    public class test3 extends Applet implements ActionListener
    { //declaring the TextField
    private TextField fromField ,toField;
    //declaring an array
    int weight[][];
    int m = 99; // m is infinity
    int N; // Set of Nodes
    int d; // distance
    int i; // source Node
    int j; // destition Node
    //declaring values of text field
    private int from = i; // start Node
    private int to = j; // end node
    public void init()
    setBackground(Color.white);
    setForeground(Color.red);
    //giving labels
    Label TITLE2,TITLE1;
    TITLE1 = new Label("from:");
    add(TITLE1);
    fromField = new TextField(5);
    add(fromField);
    // register listener using void add actionListener
    fromField.addActionListener(this);
    TITLE2 = new Label("to");
    add(TITLE2);
    toField = new TextField(5);
    add(toField);
    // register listener using void add actionListener
    toField.addActionListener(this);
    // event handler methods
    public void actionPerformed(ActionEvent event) {
    //declaring textfield
    from=Integer.parseInt(fromField.getText());
    to=Integer.parseInt(toField.getText());
    weight =new int[7][7];
    weight[1][1] = 0; weight[2][1]= 2;
    weight[1][2]= 2; weight[2][2]= 0;
    weight[1][3]= 5; weight[2][3]= 3;
    weight[1][4]= 1; weight[2][4]= 2;
    weight[1][5]= 99; weight[2][5]= 99;
    weight[1][6]= 99; weight[2][6]= 99;
    weight[3][1]= 5;
    weight[3][2]= 3;
    weight[3][3]= 0;
    weight[3][4]= 3;
    weight[3][5]= 1;
    weight[3][6]= 5;
    for (int i=1; i<7; ++i) {
    for (int j=1; j<7; ++j)

    all your base are belong to us

  • HELP! Need help generating TEXT-ONLY portal page...

    Text Only Portal Question:
    PLATFORM:
    =================================================================
    Sun Solaris (5.2 if memory serves) for db and mid-tier, running
    8.1.7 DB and 3.0.9 (1.0.2.2) portal.
    THE NEED:
    =================================================================
    I need to display text only portal pages. Some of the more
    detailed concerns at this point are below. Also, I've had an open
    tar on Metalink for about two weeks, and after research from
    their end has resulted in no help.
    THE ISSUES (so far):
    =================================================================
    IMAGES:
    If an anchor [A HREF=...] tag uses an image as it's "text", I
    need to strip out the ALT= text to show inside the anchor. If no
    ALT text is available, then I would like to show the image name
    as a default.
    For example:
    <img src=home.gif
    alt=Home>
    should display as:
    Home
    FORMS:
    How do I get the resulting page from a form (which include the
    login inputs and submit button, search box, advanced search page,
    etc.) to be displayed by the text only page?
    For example:
    When a form is called, the <FORM> elements are as follows:
    METHOD=GET or POST
    ACTION=url (relative or absolute) to the script.
    In this case, the action value is:
    ACTION=/servlet/page?
    pageid=6&dad=portal30&_schema=PORTAL30.
    This calls the advanced search API.
    I would expect that to redirect the browser back to some
    text-only version, the ACTION= element would have to be changed
    to be something like:
    ACTION=[pathscraper]?/servlet/page?
    pageid=6&dad=portal30&_schema=PORTAL30
    REDIRECTION:
    What happens when portal pages redirect internally? How do you
    get back to the text-only page?
    For example:
    The login link on the standard Oracle Portal home page flips
    from url to url to get to the actual login page. Our
    implementation of Oracle portal goes from
    [DOMAIN]/pls/portal30_sso/portal30_sso.wwsso_app_admin.ls_login
    to [domain]/pls/portal30_sso/portal30_sso.login_page.
    Since this is standard Oracle redirection, how can it be
    intercepted so the portal30_sso.login_page can be presented as
    text only?
    TRIED SO FAR:
    =================================================================
    I've written a socket/text scraper in Perl, running it from a web
    server. The problems mentioned above are really causing problems,
    plus the whole cookie thing. Since Oracle Portal tries to push a
    cookie to the client, when the client is another UNIX server,
    the cookie thing doesn't work.
    POSSIBLE OTHER SOLUTIONS:
    =================================================================
    Something...anything. I've tried to think of some method to
    create some sort of PL/SQL procedure to catch the content then
    strip out the HTML calls.
    An Applet to do the same thing, but on the client side, but
    since time is an issue, coding a complete Java applet isn't
    really an option.
    THE CONCLUSION:
    =================================================================
    HELP! I need some help. This is for a client that is government
    funded, and to meet Section 508 (part of the Americans with
    Disabilities Act that states web sites and applications must be
    made accessible. A text-only page is one of the requirements for
    an accessible page.
    Thanks,
    Ryan Stefani
    ps: feel free to contact me via [email protected] or
    [email protected]

    Use Find/Change and the GREP tab.
    Search for .+ and set the Find formatting to find the charcteristics you want.
    What will you do with this text once found? You'll need something to "change" to, either new text or Change Formatting options...

  • Newbie Needs Help - Moving to CD

    I'm running winXP and have downloaded the latest CS 5.5 version of Dreamweaver - I've created a small series of interlinking web pages with the 'main site' being a folder on my Desktop called Testsite.  As far as I'm aware all the relevant pages/documets/images are contaned within my Desktop folder and everything runs from index.html which sits within my testsite folder.   Ultimately, I would like to be able put a CD in a drive and automatically launch a browser that would open my home page (i.e. index.html).  I need help on all this but I will googe for the auto launch bit - at the moment I would appreciate any advice on burnng my site to a CD.  Because I have created the site on my PC I'm assuming all my dreamweaver internals/links are in the form C:\Documents and Settings\username\Desktop\Testsite - so I'm guessing if I just copy my Desktop Testsite folder to a CD and run index.html on another PC my little web site is not going to work.  I have googled but keep getting pages about running the actual Dreamweaver applicaton from a CD and installing it on a PC - not the way I want to do it.  I'm not interested in moving Dreamweaver to a CD - just the site/pages I have created.  Any advice apprecited.

    All long as all of your files are linked with relative links (eg: /path/to/file.jpg and not http://www.domain.com/path/to/file.jpg) you should be fine.  Auto-starting can be an issue because there are some operating systems that don't auto start discs.  So you should maybe include instructions with your disc in case the autorun does not work.

  • Need help moving my cs5 illustrator and photoshop to my new computer

    I need help installing my cs5 illustrator and photoshop on my new computer

    I have a macbook air...not sure what operating system....
    Kelsey West
    Kelsey West Designs
    [email protected]
    818.631.0172
    [image:
    http://www.hmcatering.com/wp-content/uploads/2013/03/AsSeenOnSMP_Blue.png][image:
    http://tobinphotography.com/wp-content/uploads/2013/02/Style_me_pretty_blog_badge.png]

  • HELP! need help moving "main" text box in landscape form

    Hello. I am working with a table that is now in landscape. I imported it from another FrameMaker 7.2 file which was in portrait form. The table is ongoing (spills into the next page) and I need to be able to move the "main" text box that the table imported into. I am unable/unsure how to go about doing this?! I have to adjust this box because I still have headers/footers/colored border to add later on. Is it also possible to change the size of that "main" text box that automatically appears when you would first open up a blank document??
    -kt

    Hi kt,
    it's quite easy, if I understand what you want to do...
    Go to the Master Pages in the target document and either create a new masterpage - (called land2port) or alter the existing master page that is being used... You can change the size and position of the TextFlow frame... Then the save the document as a template - import your landscape table and apply the appropriate master page - voilla!
    now you will have room for your headers and footers...
    enjoy!
    David
    [signature link removed]

  • Need help with text() processing in XSL

    Hello,
    I have an xml that contains such text in my xml:
    before<a>inside</a>after
    and an xsl that transforms it to HTML (a cut for xsl):
    <xsl:template match="a">
    <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="text()">
    <xsl:value-of disable-output-escaping="yes" select="."/>
    </xsl:template>
    The result is: inside before after
    but I need: before inside after
    It seems it happens 'cause of this: http://www.w3.org/TR/xslt#conflict
    but I cannot find a way to solve this problem :(
    I had tried to use priority in xsl:template, but it didn't help :(
    Thanks a lot.

    DrClap
    here are xml and xsl.
    That's not a real xml and xsl, but they might describe the idea and problem. I hope I miss nothing.
    P.S. I cannot control xml, that's why I cannot use: <xsl:text> in xml.
    Thank you!
    xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <root>
    <title>Page title</title>
    <page>
    Location: <red>http://host</red>
    </page>
    </root>
    xsl:
    <?xml version='1.0' encoding='ISO-8859-1'?>
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    xmlns:fox="http://xml.apache.org/fop/extensions"
    exclude-result-prefixes="fo">
    <xsl:template match="root">
    <html>
    <head>
    <title>
    <xsl:apply-templates select="title"/>
    </title>
    </head>
    <body>
    <xsl:apply-templates select="page"/>
    </body>
    </html>
    </xsl:template>
    <xsl:template match="page">
    <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="title">
    [Test]: <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="red">
    <xsl:element name="span"><xsl:attribute name="style">color:red</xsl:attribute><xsl:apply-templates/></xsl:element>
    </xsl:template>
    <xsl:template match="text()">
    <xsl:value-of disable-output-escaping="yes" select="."/>
    </xsl:template>
    </xsl:stylesheet>

  • Need help - Moving my Itunes to an external hard drive

    Help! Help! Help! Am tearing my hair out here!
    I recently got my first Ipod so please excuse if I'm being thick here! Basically, I'm about two thirds of the way downloading my not insignificant CD collection onto my Ipod, which I'm doing via Itunes. The C drive on my laptop is now full to bursting and I don't even have enough space left for my anti virus (big problem!). Therefore, I am wanting to transfer my itunes to an external hard drive. First, I followed the instructions on this site for Backing up itunes library by copying to a external hard drive.........
    http://support.apple.com/kb/HT1751?viewlocale=en_US
    All that succeeding in doing was mirroring whatever I did on the C:/ drive on the E:/ drive i.e. if I deleted itunes from the C:/ drive it disappeared from the E:/ drive.
    Next, I followed these instructions for Moving the itunes media folder to the external drive.
    http://support.apple.com/kb/HT1364
    This too didn't help as the media folder is not the problem, its the library as its 735kb! Am I right in thinking there's no way of moving the library to the external drive whilst wiping it from the C;/ drive? I need to get these darn files off my laptop and to use my external drive for my itunes. Alternatively, if I were to wipe the files to free up the space (as they are backed up on the hard drive) is there a way of syncing so that it simply adds new stuff to the existing music on my ipod not replacing it..
    Hope I'm making sense and that someone can help.

    First, I followed the instructions on this site for Backing up itunes library by copying to a external hard drive.........
    That's what it does. It makes a backup copy of the iTunes folder. iTunes will not use that folder or do anything to that folder.
    All that succeeding in doing was mirroring whatever I did on the C:/ drive on the E:/ drive i.e. if I deleted itunes from the C:/ drive it disappeared from the E:/ drive.
    Do you mean after you followed the instructions and copied \Music\iTunes folder to the external drive and then deleted something from iTunes, it deleted it from the external drive also?
    As above, iTunes will not use or do anything to that folder.
    Next, I followed these instructions for Moving the itunes media folder to the external drive.
    Why? You already copied the entire iTunes folder (including th emedia folder) to the external drive.
    Hold Shift and launch iTunes.
    Select *Choose library* and select the _iTunes library.itl_ file in the iTunes folder on the external.
    This too didn't help as the media folder is not the problem, its the library as its 735kb!
    What do you mean "the library"?
    735kB is small for the iTunes library.itl file and a single file in iTunes is larger than that.
    Am I right in thinking there's no way of moving the library to the external drive whilst wiping it from the C;/ drive?
    Yes. Follow my intruction above (Choose library) and iTunes will use the iTunes folder on the external.
    You can then delete \Music\iTunes on the C: drive.

  • Need help moving masters to external drive

    Drag images from internal drive to external...
    Relocate Masters...
    Locate Referenced Files......
    I realize these options are available, but I'm wondering which way to do this. Out of 160 GB of images about 1/2 of them are imported into Aperture while the remaining 1/2 are on the Mac but not in Aperture. All images are on my internal drive and I use Aperture as referenced masters, not managed. I need to make space on my internal drive and need to move all images (those already imported and those not yet imported) to an external. Given my current set up (1/2 imported 1/2 not), which option is best for a clean move to the external w/o messing up Aperture?
    Thank you,
    Jerry

    Jerry -- sorry, this thread slipped by.  I haven't had the time recently to be attentive.
    jbshanks wrote:
    So, I still need a little help with this. If I have this folder structure on my internal drive and 1/2 of those images are imported into Aperture (but referenced), and I use the "Relocate" feature, how will they be moved? Will it take the folders to the external or just the images, leaving the folders on the internal drive?
    I'm afraid to experiment in case it messes things up. Any help is greatly appreciated.
    1.  Don't be afraid to experiment -- set up a practice Library and use it to experiment.  That's how all of us learned what we know.
    2.  Your situation is a little peculiar, and I'm going to recommend something I wouldn't otherwise.  First, backup your system and confirm your backup.  Then go ahead and use Finder to copy all the Finder folders and files in question, intact, to a new drive.  Then delete the ones on your system drive.  Then open Aperture and run "File➞Locate Referenced Files" to re-attach your Aperture Images to your moved files.  You may have to run "File➞Locate Referenced Files" more than once (but most likely not) in order to end up with no Images that have missing Originals.  (If you need to, search for posts on the board about using this command.)
    At that point, you have done what you set out to do: move all of your photo files to an external drive while retaining the connection between those that are Aperture Originals and their corresponding Images in Aperture.
    But you haven't addressed the very good point brought up by bjurasz, which is that you are going out of your way to maintain competing databases.  Aperture is a database of your Images.  It has _outstanding_ storage and retrieval capabilities.  Finder is a database of your files.  It doesn't do a tenth the job Aperture does.  Finder is a file manager.  Aperture is an image manager (that does good file management).  Aperture has _terrific_ tools for helping you instantly retrieve _any_ subset of your Images (e.g.: family, spouse, dog, students from 2010, science students from 2010, vacation photos, vacation photos w. spouse, etc.).  The key to this is simply tagging your Images (e.g.: grayscale 2010 vacation photos w. spouse and dog) so that you can retrieve them as needed.  Importantly, you are not confined to a flat folder structure and whatever information you can stuff into the file name, as you are with Finder.  (Yes, more or less -- Finder is actually much more sophisticated than many realize or use.)
    I suggest moving more fully into Aperture, learning what tags are available and deciding how to use them, designing an Aperture Library structure that meets your needs, and transitioning your Finder collection of photo files to an Aperture database of Images.
    Ask more questions -- might be best to start new threads as they come up.

  • Need help moving photos to external drive

    Hi, all--here's hoping one or more of you Aperture veterans can help.
    Here's my situation: I'm not new to photography, but I'm new to Aperture. Just bought 3.3 and still getting to know what it can do. I'm an emigre from iPhoto, and one of the reasons I upgraded within Apple is that I was tired of the non-intuitive nature of PS Elements. I like to take pictures, not spend endless time in the dim glow of a screen digging through sub-menus for stuff, and from what I read, Aperture seemed more intuitive.
    But now I've got a seemingly very basic problem that hours of poring over discussion threads and searching through the hundreds of pages of the manual has done little to address with any clarity:
    How do I move (not just copy) older photos in projects to external drives, but in such a way that Aperture still keeps track of them, even when the drives are not connected? (The Aperture marketing I read/viewed clearly said Aperture could do this, and I'm running out of space on my MacBook Pro (15" from about 2008, running Lion) with lots of CF cards piling up.)
    Info that may help:
    -I need to move not just original (imported into iPhoto directly from the camera) photos, but also those I've adjusted in Elements, then re-exported into iPhoto (I would say "and now into Aperture," but as you know, there's no longer an import process b/w iPhoto and Aperture).
    -I shoot mostly RAW.
    -I have no idea whether the pictures are "Referenced" or "Managed" (for space reasons, I have yet to import any files directly into Aperture; all existing photos are from iPhoto, and if I was given an option when I set up Aperture, I don't now recall it).
    -I have external drives with plenty of space to move older pix to (I also have multiple backups, including Time Machine, additional external hard drives, and DVDs)
    Can somebody who knows how to do this safely please explain in clear language how to move photos as projects onto external hard drives so that Aperture keeps track of them via viewable thumbnails, even when the photo files themselves live on a hard drive that is not connected at the time?
    Thanks in advance!

    First things first:
    You can easily check if an image is managed or referenced by ctrl-clicking on an image version and selecting "Locate referenced files...". If Aperture says "No Referenced Files", your originals are managed by Aperture and stored within the library itself, otherwise it should show you the location of the original, and give you some options to verify the references and so on. I don't know which method is used when importing from iPhoto.
    Now, here's something you need to ask yourself:
    Does it make more sense for you to keep the library on your laptop and the originals on an external drive, or does it make more sense to move both the library and the originals to the external drives?
    In the first case, you can open and look at the thumbnails, but there's not a whole lot else you can do with your images when the external drive is off line.
    If you have vast amounts of originals, spread across multiple drives, it might make sense to keep the library on your laptop and connect whichever external drive you need at the time. However, it might also make more sense to split such a huge library into mutiple libraries, stored with their respective originals (which could be either managed or referenced).
    In my case, it makes sense to keep multiple libraries, with managed originals, but your mileage may vary.
    Here's a tip that might help you decide: A small library is quicker to navigate and work with than a huge one, although performance has improved vastly with later versions of Aperture.
    Once you have decided on the appropriate organization, you can start moving things around (after you've created the appropriate backups):
    If your library contains all managed originals already, and you want to move the entire library off to the external drive:Simply drag and drop the library itself (using Finder) to the new location.
    If your library use referenced originals, and you want to keep it that way, or your library manages your originals, and you want to start using referenced originals:
    Select all your images
    Click on the File menu and select Relocate Originals...
    Locate the destination for your originals, and pay special attention to the "Subfolder Format" and "Name Format". I'd suggest choosing "Project Name" and "Original File Name" for the two.
    Click on Relocate Originals, and twiddle your thumbs while Aperure moves all your originals to the new location.
    If your library uses referenced originals, and you wish to let your library manage the originals:
    Select all your images
    Click on the File menu and select Consolidate Originals...
    Decide if you want to Copy or Move the originals into the library. If you're running out of space, it might be best to Move.
    Click Ok, and wait for the operation to complete.
    (Optional) If you wish to move your entire library to the external drive, drag and drop the library to the new location.
    I hope that answers your question.
    Message was edited by: KluZz (oops, premature submission)

  • I need help adding text!

    I need some help with PE 12 and adding text...

    this forum is for photoshop elements and photoshop elements doesn't support editing GIF.
    You might want to post to photoshop community Photoshop General Discussion

Maybe you are looking for

  • Some doubts in alv report

    how can i page breakin alv report ? what are the types of variants and events in alv report? how to hide field in alv? how to change standard pf status in alv reports? plz give me sample program for how to use variants in alv? <THREAD LOCKED. Please

  • Posting Periods SAP Business One

    To whom may concern... Hello everyone, I have a concern with the posting periods, I have this client that all the time the posting periods has been created by month (12 different periods), today by mistake they create the new period by year of 2009-

  • How to create/Map a User as Adminstrator in BPM Worklist to view all the ta

    Hi all, How to create/Map a User as Adminstrator in BPM Worklist to view all the tasks. Version :Jdev 11.1.1.1.0 Regards C.Karukkuvel

  • When I am on a page, i get overlapping letters

    Looks like the page is not setting up right. Some words or sentence overlapping. Only seems to happen with Firefox.Doesn't seem to happen with internet expl.

  • HP All-in-One 7400 Will not Power On

    Hello - We have an Officejet 7410 that, when plugged in, will not power on.  The "HP invent" screen and a scrolling white bar that one sees before the power button is pushedstays on, but the printer will not turn on when the power button is pushed.