Read every font topic, but I still need help

I have been at this for about 4 hours, and I need help.
I read Flash Help and every font forum topic, which say
Static Text need not use embedded fonts.
Links to .fla and .swf files below.
Everything shows up fine in 'Control/Test Movie'
Using Arial font, I cannot see static text in my test .swf
file.
I then embedded Arial (24 pt, bold, italic - 'ArialEmbedded'
in the library).
Using that font on Static text, can see the text, but not in
Arial. It is in TimesNewRoman, regular, non-italic.
I then used the embedded font in text I described as dynamic,
but could not see any text.
Everything shows up fine in Control/Test Movie.
I get around this by building .gifs using graphics packages
and importing them,
but the results are less than desirable. (see layer ".gif
from outside appl."
Links:
http://www.ph4d.com/FlashFonts/TestingText3.fla,
and
http://www.ph4d.com/FlashFonts/TestingText3.swf
I hope it's something I overlooked, and I appreciate any help
provided.
Thanks,
vinceg

Update.....
I still cannot see text in .swf on my local machine, but I
can see it on the web, after posting it, but the text looks awful.
(The same text in Word lookas fine -
http://ph4d.com/FlashFonts/TestingText3.doc)

Similar Messages

  • IPhone c question!!! PLEASE HELP! I guess it's not a life or death situation but I still need help :P

    So I'm getting an iPhone c for Christmas and I wanted to know buy like a cover for it. You know how it has the rubber cover can I take it off and put on it a plastic one or whatever. Please answer me!!

    I read your question as if you can remove the coloured back of iphone5c and put on another one
    if so then no I believe the rubber ones with colours and holes I linked to can be switchted between but I don't believe the back coloured part of iphone5c comes off

  • Have I done this correct, but I still need help on #7

    1. Provide a SQL statement that displays the FIRSTNAME and LASTNAME of each customer separated by a comma. The FIRSTNAME and LASTNAME should be capitalized and concatenated together with a column alias of “Full Name”. The output should be sorted in ascending order by LASTNAME.
    SELECT FIRSTNAME||','||LASTNAME "FULL NAME"
    FROM CUSTOMERS;
    FULL NAME
    BONITA,MORALES
    RYAN,THOMPSON
    LEILA,SMITH
    THOMAS,PIERSON
    CINDY,GIRARD
    MESHIA,CRUZ
    TAMMY,GIANA
    KENNETH,JONES
    JORGE,PEREZ
    JAKE,LUCAS
    REESE,MCGOVERN
    WILLIAM,MCKENZIE
    NICHOLAS,NGUYEN
    JASMINE,LEE
    FULL NAME
    STEVE,SCHELL
    MICHELL,DAUM
    BECCA,NELSON
    GREG,MONTIASA
    JENNIFER,SMITH
    KENNETH,FALAH
    20 rows selected.
    2. Provide a SQL statement that displays the current date in the format MM/DD/YY.
    SELECT TO_CHAR( '10/25/06')
    FROM DUAL
    TO_CHAR(
    10/25/06
    3. Provide a SQL statement that displays the TITLE and publisher NAME of each book in the “COMPUTER” CATEGORY.
    SELECT TITLE, CATEGORY
    FROM BOOKS, PUBLISHER
    WHERE CATEGORY = 'COMPUTER'
    TITLE      CATEGORY
    DATABASE IMPLEMENTATION      COMPUTER
    HOLY GRAIL OF ORACLE      COMPUTER
    HANDCRANKED COMPUTERS      COMPUTER
    E-BUSINESS THE EASY WAY      COMPUTER
    DATABASE IMPLEMENTATION      COMPUTER
    HOLY GRAIL OF ORACLE      COMPUTER
    HANDCRANKED COMPUTERS      COMPUTER
    E-BUSINESS THE EASY WAY      COMPUTER
    DATABASE IMPLEMENTATION      COMPUTER
    HOLY GRAIL OF ORACLE      COMPUTER
    HANDCRANKED COMPUTERS      COMPUTER
    E-BUSINESS THE EASY WAY      COMPUTER
    DATABASE IMPLEMENTATION      COMPUTER
    HOLY GRAIL OF ORACLE      COMPUTER
    TITLE      CATEGORY
    HANDCRANKED COMPUTERS      COMPUTER
    E-BUSINESS THE EASY WAY      COMPUTER
    DATABASE IMPLEMENTATION      COMPUTER
    HOLY GRAIL OF ORACLE      COMPUTER
    HANDCRANKED COMPUTERS      COMPUTER
    E-BUSINESS THE EASY WAY      COMPUTER
    20 rows selected.
    4. Provide a SQL statement that displays the CUSTOMER# and LASTNAME for each customer along with the ORDER# of any order that the customer placed. The statement should include all customers including those that have not placed any orders.
    SELECT LASTNAME,ORDER#
    FROM CUSTOMERS C, ORDERS O
    WHERE C.CUSTOMER#=O.CUSTOMER#
    ORDER BY O.ORDER#
    LASTNAME      ORDER#
    GIRARD      1000
    LUCAS      1001
    MCGOVERN      1002
    MORALES      1003
    FALAH      1004
    MONTIASA      1005
    SMITH      1006
    GIANA      1007
    PIERSON      1008
    GIRARD      1009
    SMITH      1010
    LUCAS      1011
    NELSON      1012
    LEE      1013
    LASTNAME      ORDER#
    GIANA      1014
    FALAH      1015
    SMITH      1016
    SCHELL      1017
    MORALES      1018
    MONTIASA      1019
    JONES      1020
    21 rows selected.
    5. Provide a SQL statement that displays the total QUANTITY of books ordered.
    SELECT CUSTOMER#, FIRSTNAME, LASTNAME
    FROM ORDERS NATURAL JOIN ORDERITEMS NATURAL JOIN CUSTOMERS
    HAVING SUM(QUANTITY)=ALL
    (SELECT MAX(SUM(QUANTITY))
    FROM ORDERS NATURAL JOIN ORDERITEMS GROUP BY CUSTOMER#)
    GROUP BY CUSTOMER#, FIRSTNAME, LASTNAME;
    CUSTOMER#      FIRSTNAME      LASTNAME
    1007      TAMMY      GIANA
    6. Provide a SQL statement that displays the TITLE of all books that COST more than the average cost of all books.
    SELECT TITLE,AVG(COST)
    FROM BOOKS
    GROUP BY TITLE
    TITLE      AVG(COST)
    BIG BEAR AND LITTLE DOVE      5.32
    BODYBUILD IN 10 MINUTES A DAY      18.75
    BUILDING A CAR WITH TOOTHPICKS      37.8
    COOKING WITH MUSHROOMS      12.5
    DATABASE IMPLEMENTATION      31.4
    E-BUSINESS THE EASY WAY      37.9
    HANDCRANKED COMPUTERS      21.8
    HOLY GRAIL OF ORACLE      47.25
    HOW TO GET FASTER PIZZA      17.85
    HOW TO MANAGE THE MANAGER      15.4
    PAINLESS CHILD-REARING      48
    REVENGE OF MICKEY      14.2
    SHORTEST POEMS      21.85
    THE WOK WAY TO COOK      19
    14 rows selected.
    7. Provide a SQL statement that displays each SHIPSTATE along with the number of orders shipped to each state. Include only those states that more than 3 orders were shipped to.
    8. Provide a SQL statement that displays each book CATEGORY in the database. The category should only appear once in the output.
    SELECT TITLE, CATEGORY
    FROM BOOKS
    TITLE      CATEGORY
    BODYBUILD IN 10 MINUTES A DAY      FITNESS
    REVENGE OF MICKEY      FAMILY LIFE
    BUILDING A CAR WITH TOOTHPICKS      CHILDREN
    DATABASE IMPLEMENTATION      COMPUTER
    COOKING WITH MUSHROOMS      COOKING
    HOLY GRAIL OF ORACLE      COMPUTER
    HANDCRANKED COMPUTERS      COMPUTER
    E-BUSINESS THE EASY WAY      COMPUTER
    PAINLESS CHILD-REARING      FAMILY LIFE
    THE WOK WAY TO COOK      COOKING
    BIG BEAR AND LITTLE DOVE      CHILDREN
    HOW TO GET FASTER PIZZA      SELF HELP
    HOW TO MANAGE THE MANAGER      BUSINESS
    SHORTEST POEMS      LITERATURE
    14 rows selected.

    3. Provide a SQL statement that displays the TITLE and publisher NAME of each book in the “COMPUTER” CATEGORY.
    TITLE CATEGORY
    DATABASE IMPLEMENTATION COMPUTER
    HOLY GRAIL OF ORACLE COMPUTER
    HANDCRANKED COMPUTERS COMPUTER
    E-BUSINESS THE EASY WAY COMPUTER
    DATABASE IMPLEMENTATION COMPUTER
    HOLY GRAIL OF ORACLE COMPUTER
    HANDCRANKED COMPUTERS COMPUTER
    E-BUSINESS THE EASY WAY COMPUTER
    DATABASE IMPLEMENTATION COMPUTER
    HOLY GRAIL OF ORACLE COMPUTER
    HANDCRANKED COMPUTERS COMPUTER
    E-BUSINESS THE EASY WAY COMPUTER
    DATABASE IMPLEMENTATION COMPUTER
    HOLY GRAIL OF ORACLE COMPUTER
    TITLE CATEGORY
    HANDCRANKED COMPUTERS COMPUTER
    E-BUSINESS THE EASY WAY COMPUTER
    DATABASE IMPLEMENTATION COMPUTER
    HOLY GRAIL OF ORACLE COMPUTER
    HANDCRANKED COMPUTERS COMPUTER
    E-BUSINESS THE EASY WAY COMPUTER
    20 rows selected.
    Result is wrong - you have a catrtesian product between books and publisher i.e. each book is repeated for each publisher. You need to join books to publisher and you need to select the publisher name
    4. Provide a SQL statement that displays the CUSTOMER# and LASTNAME for each customer along with the ORDER# of any order that the customer placed. The statement should include all customers including those that have not placed any orders.
    SELECT LASTNAME,ORDER#
    FROM CUSTOMERS C, ORDERS O
    WHERE C.CUSTOMER#=O.CUSTOMER#
    ORDER BY O.ORDER#This is wrong, you need to use an outer join between customers and orders to satisfy the requirement:
    The statement should include all customers including those that have not placed any orders.
    5. Provide a SQL statement that displays the total QUANTITY of books ordered.
    SELECT CUSTOMER#, FIRSTNAME, LASTNAME
    FROM ORDERS NATURAL JOIN ORDERITEMS NATURAL JOIN CUSTOMERS
    HAVING SUM(QUANTITY)=ALL
    (SELECT MAX(SUM(QUANTITY))
    FROM ORDERS NATURAL JOIN ORDERITEMS GROUP BY CUSTOMER#)
    GROUP BY CUSTOMER#, FIRSTNAME, LASTNAME;
    CUSTOMER# FIRSTNAME LASTNAME
    1007 TAMMY GIANA
    I can't see a quantity here and you should avoid NATURAL JOINs like the plague:
    SELECT CUSTOMER#, FIRSTNAME, LASTNAME, SUM(QUANTITY)
    I'm not exactly sure what you're attempting with the
    HAVING SUM(QUANTITY)=ALL
    (SELECT MAX(SUM(QUANTITY))
    FROM ORDERS NATURAL JOIN ORDERITEMS GROUP BY CUSTOMER#)
    GROUP BY CUSTOMER#, FIRSTNAME, LASTNAME;bit.
    6. Provide a SQL statement that displays the TITLE of all books that COST more than the average cost of all books.
    SELECT TITLE,AVG(COST)
    FROM BOOKS
    GROUP BY TITLEThis doesn't do what was asked, it just selects the average cost of each book - which will be exactly the same as the actual cost of each book. You need to use a sub query here.
    8. Provide a SQL statement that displays each book CATEGORY in the database. The category should only appear once in the output.
    The title does not need to be in the output here and you need to use distinct.
    HTH
    David

  • TS1398 my iPod 2 gen says that I'm in range for wifi, but does not allow me to use it after all the times i have tried. it works on every other device, but mine. Need help please?

    HELP

    Have you:
    - Tried another network?
    - Does the iPod see the network?
    - Tried a reset.
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Powered off and then back on your router
    - Reset network settings: Settings>General>Reset>Reset Network Setting
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Changing the encryption on the router?

  • Still need help with case sensitive strings

    Hello guy! Sorry to trouble you with the same problem again,
    but i still need help!
    "I am trying to create a scrypt that will compare a String
    with an editable text that the user should type to match that
    String. I was able to do that, but the problem is that is not case
    sensitive, even with the adobe help telling me that strings are
    case sensitive. Do you guys know how to make that comparison match
    only if all the field has the right upper and lower case letters?
    on exitframe
    if field "t:texto1" = "Residencial Serra Verde"then
    go to next
    end if
    end
    |----> thats the one Im using!"
    There were 2 replys but both of them didnt work, and the
    second one even made the director crash, corrupting even previously
    files that had nothing to do with the initial problem..
    first solution given --
    If you put each item that you are comparing into a list, it
    magically
    makes it case sensitive. Just put list brackets around each
    item.
    on exitframe
    if [field "t:texto1"] = ["Residencial Serra Verde"] then
    go to next
    end if
    end
    Second solution given--
    The = operator is not case-sensitive when used on strings,
    but the < and > operators are case-sensitive.
    So another way to do this is to check if the string is
    neither greater than nor less than the target string:
    vExpected = "Residencial Serra Verde"
    vInput = field "t:texto 1"
    if vExpected < vInput then
    -- ignore
    else if vExpected > vInput then
    -- ignore
    else
    -- vExpected is a case-sensitive match for vInput
    go next
    end if
    So any new solutions??
    Thanks in advance!!
    joao rsm

    The first solution does in fact work and is probably the most
    efficient way
    of doing it. You can verify that it works by starting with a
    new director
    movie and adding a field named "t:texto1" into the cast with
    the text
    "Residencial Serra Verde" in the field. Next type the
    following command in
    the message window and press Enter
    put [field "t:texto1"] = ["Residencial Serra Verde"]
    You will see it return 1 which means True. Next, make the R
    in the field
    lower case and execute the command in the message window, it
    will return 0
    (true).
    Now that you know this works, you need to dig deeper in your
    code to find
    what the problem is. Any more info you can supply?

  • My adobe reader does not read my pdf files, I think it was screwed up by the other "PDF-READER". I deleted the other "PDF-READER" from my pc, but it still does not work.

    my adobe reader does not read my pdf filI think it was screwed up by the other "PDF-READER". I deleted the other "PDF-READER" from my pc, but it still does not work.

    Hi wellsfar,
    Which version of Adobe Reader you are using?
    Is it showing any error message?
    A screenshot of the error would be more helpful.
    Regards,
    Florence

  • Downloaded a pdf reader on ma fone but its still not opening pdf files

    Hello house I use a blackberry tour 9630 and I downloaded a pdf reader on ma fone but its still not opening pdf files ......wHat could be the problem pls I nid assistance

    Can you explain the problem in more detail - "not allowing me to access" isn't clear to me. If you get any errors, please give the full wording. If you just don't seem to have any useful functions under TOOLS, make sure you are NOT still running Adobe Reader.

  • HT1212 I got the message copied below in iTunes but I still need to keep my pics and videos. "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."

    I got the message copied below in iTunes but I still need to keep my pics and videos. Passcode has been wrongly entered 100 times by my little chiled. Is it possible to still keep the data?
    "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."

    PHONE LOCKED
    If your phone is locked because you have incorrectly entered the unlock passcode too many times then follow the steps in this article http://support.apple.com/kb/ht1212

  • Iso5 download error, network timed out, how do i stop this, all of my firewalls and security on my pc are currently swiched off but this still didnt help

    iso5 download error, network timed out, how do i stop this, all of my firewalls and security on my pc are currently swiched off but this still didnt help>
    trid multiple times over the last few weeks, after waiting 45 minutes for the download to comlete the network times out whilst processing the download

    The router is in your house.
    In a nutshell, a modem communicates with the Internet and brings a single communications link to your house,  The router takes that single link and divides it up among many links, both wired and wireless, to support many devices in your house.  The router and the modem may be separate physical boxes or, more commonly, they're in the same enclosure.
    Unfortunately, if there is a firewall in the router, you will need help.  I don't think that it's a good idea to try to walk you through it via the forum.  You should contact the router supplier and have them walk you through the investigation.

  • I HAVE DOWNLOADED FLASH PLAYER BUT WHEN I TRY TO WATCH A VIDEOS IT SAYS TO GET FLASH PLAYER,I ALREADY HAVE IT.I KEEP DOWNLOADING IT BUT IT STILL DOESNT HELP

    Question
    I HAVE DOWNLOADED FLASH PLAYER BUT WHEN I TRY TO WATCH A VIDEOS IT SAYS TO GET FLASH PLAYER,I ALREADY HAVE IT.I KEEP DOWNLOADING IT BUT IT STILL DOESNT HELP. THANKS

    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[Troubleshooting extensions and themes]]
    * Update All your Firefox Plugins -> https://www.mozilla.org/en-US/plugincheck/
    '''NOTE: When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''
    Check and tell if its working.

  • Still need help with flash player download

    I'm still having a problem with the flash player, please read my last post below:
    "I've tried everything here & still can't download the flash player. Anytime I try to download it asks me to install ADM add-on and then when I click on that, my computer freezes. How do I enable this add-on without my computer freezing? Can anyone help pls?"

    Thanks a lot for your help, it is truly appreciated.
    Date: Thu, 29 Oct 2009 18:52:38 -0600
    From: [email protected]
    To: [email protected]
    Subject: Still need help with flash player download
    You can set Flash Player to check for updates on the Global Settings Manager panel:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l
    >

  • I still need help with the Dictionary for my Nokia...

    I still need help with the Dictionary for my Nokia 6680...
    Here's the error message I get when trying to open dictionary...
    "Dictionary word information missing. Install word database."
    Can someone please provide me a link the where I could download this dictionary for free?
    Thanks!
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

    oops, im sorry, i didnt realised i've already submitted it
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

  • Hello. My mac can't connect to my time capsule. There is no response and I can't put it back to the originals definitions because all my files are there and I can´t loose them. (sorry about my bad english, but I really need help!)

    Hello. My mac can't connect to my time capsule. There is no response and I can't put it back to the originals definitions because all my files are there and I can´t loose them. (sorry about my bad english, but I really need help!)

    Your files are unaffected by a reset.. no reset via the reset button on the TC harms, deletes or does anything to your files.
    The Factory Reset universal
    Unplug your TC/AE. Hold in reset. and power the TC/AE back on..  all without releasing reset and keep holding in for about 10sec. The time is not important.. it is the front LED rapid flashing that indicates you are in factory mode.
    Release reset.
    If it doesn’t flash rapidly you have released reset at some point and try again.
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC/AE will reboot after a couple of minutes with default factory settings and will wipe out previous configurations.
    No files are deleted on the hard disk.. No reset of the TC deletes files.. to do that you use erase from the airport utility.
    Here is how to do a fully manual setup for TC which is sometimes necessary with Mavericks in particular.
    Airport Utility shows "unexpected error - please try again" when connecting to Time Capsule

  • I've searched and read 4gb vs 8gb discussions, but still need help.

    Hi again,
    I've done my due dilligance by searching and reading all discussions related to this matter- but I still have a question.
    I've decided on the 13" Air, 15, 256gb.  My last decision is the ever so debated 4gb vs 8gb.
    From ALL of the discussions I've read (here and elsewhere online) 4gb seems to be enough for the average person, and some have even tested the capacity by opening 16 applications and programs.  Most of the responders are also saying 4gb is enough "if you want to keep the computer 2-3 years".  Well- what if I'd like mine to last 5-7 years?  (I'm working on a 2006 dying MacBook Pro currently with 2gb memory and a 100gb harddrive). 
    This is a HUGE purchase for me, as I do not have money to spend often on replacing big ticket items.  I'd like to NOT spend the extra $136 unless I need to, to make this machine last longer than 3 years. 
    Thank you!  This community has been a great help to me today

    Since cost seems to be an issue for you, between the 128 and the 256,....go with the 128 and the 8 GIG of memory,.....such as you have detailed, it would be a better choice given what you have well explained what you want out of you computer. Just pack around a super slim HD 500GB drive in the laptop bag with your air,..they’re only 7mm thick HD, much thinner than the AIR.
    I have an 13” I5 128 gig, and have nearly ever APP imaginable installed, and still have 82 Gig of wiggle room for editing, and other space needed for work.
    IF ASKED which is the better upgrade choice for the money,….256 upgrade, or the 8GIG of memory, most here will agree that it’s the 8gig of memory.
    HD space is extremely cheap (except inside the AIR, its SSD). If you don’t mind packing around a tiny HD, 65$ will get you 1TB, or 500GB in a superslim HD

  • I had to remove Mavericks and do a reinstall on 10.8.5 but still need help...

    I have been trying to undo my Mavericks upgrade in October and after considerable effort I am mostly got back to 10.8.5 OS but still need a bit of help. I just want the previous OS back in place then I'll try Mavericks soon....
    1)               I never seem to pay attention so is 10.8.5 the last OSX prior?  As long as it isn't Mavericks, I want to get it installed.
    2)               I had to reformat my iMac so I have a residual elements from 10.9 and one issue that I had before was permissions. Every number of files either on other hard drives or sometimes in my same user folder was asking for permission and authentication to simply move a file.. A popular one you'll see at the bottom the person/whatever/ problem known as fetching.  Could someone just give me the general reason of this fetching and permissions problem that I ran into?  Better yet since I just want to avoid it altogether into the future tell me what's the best way to assure it disappears forever.
    3)          Another, which is kind of a big ticket item for me is the backup/restore/cover your (!!!) system. I was a good little iMac User and had Time Machine backed up for a period prior to the Mavericks install. I'm a little bit upset that TM isn't 100%....but what is...?  I need another backup/restore system in place and that's what I am looking for recommendations on.  An item that saved me a bit was that I had OS 10.8.3 on an external hard drive.  The problem with that one was it was on a partition, on one of the drives requiring to be reformatted.  It worked as a bridge consolidating files and all but was a big headache as a partition on the external. Recovery Disk did it's part but wasn't enough as well.   Is there a simple/easy idea...clone, disk images, boot from an external drive… ?
    4)          iPhoto (9.4.3) currently will not open the libraries which iPhoto (9.5) converted. Is there way to go back?  Seems the App Store and Software update don't like something. I'm getting into a loop with App Store, iPhoto and the OS. Either the software needs operating system ... then the App Store says it's incompatible or some other complaint.  Right now I have 9.4.3 iPhoto installed for OSX 10.8.5 and was only able to create a new library and the converted ones currently do not open.
    Thanks to your help

    10.8.5 is the lates ML edition.  I use TM and also carbon copy cloner as my second backup.  If I were you and you have a TM backup prior to Mavericks I would try another restore at bootup.  You should erase your drive first in that process using disk utitlites and then use TM to put back you apps and files.  The other choice is to do an internet recovery and then use TM to restore your apps and files.  That should fix the permissions issue.  I did the same thing and all was OK including getting my original iPhoto progam (9.4.3), iphoto11 and photos back.

Maybe you are looking for

  • How to make new jars available globally on the portal to all projects?

    Hello, I have downloaded few jar files which are needed for few projects and aren't comming with the portal by default. I would like to make these jars available globally to every project I will write in the future. What is the exact procedure I need

  • Org Chart  in WebDynpro

    I need to render an org chart using WebDynpro. Data should be retrieved from a recursive tree context node. IGS is not providing this chart type and I am not willing to write my own jpg chart renderer.... Any suggestions for the best approach to real

  • Machine Cost

    Dear all, I have a scenario in product costing like this: For 1 litre Finished Goods, the cost is Rs. 100=(Machine/Labour Cost Rs.20+Raw Material Cost Rs.80) and for 10 litres FG, the cost is Rs.820=(Machine/Labour Cost Rs.20+Raw Material Cost Rs.800

  • Why is it too easy to Clear history by mistake from safari in ipad2

    I need it

  • Benefit plan - rule issue

    Hello experts, We have an issue that I need your help with.  I am new to benefits so any help would be most appreciated. When an employee tries to enroll their spouse in the Spouse Life benefit plan, he/she cannot enroll them unless they themselves a