I have a powerpoint that I created on PC.  I downloaded "Slideshark" to convert it so I can play it on ipad.  Worked well, EXCEPT for the music was not embedded.  Can anyone help me to find out why the music is not attached.

I have powerpoint that I created on my Pc.  I downloaded "slideshark" to convert it so i can play it on my ipad.  Everything was great (fonts, animations, colour)  EXCEPT the music did not come through..What is the reason for this??

Perhaps you should ask the developers of the app you used to convert this presentation?

Similar Messages

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • I've just hooked my 20" iMac up to my Toshiba 37" HDTV using a mini dvi-HDMI adapter, and works well, EXCEPT for the green tinge (or hue) that is showing up on my TV. Any suggestions or ideas?

    I've just hooked my 20" iMac display up to my Toshiba 37" HDTV using a mini dvi-HDMI adapter, and everything works well, EXCEPT for the green tinge (or hue) that is showing up. Everything else looks pretty good though..... The color that is on my iMac is still good, Its just green on the TV.
    Anyone have suggestions or ideas?

    Try opening the Display System Preferences, then click on the Color options in the Display preferences window that appeared on the Toshiba display. Click on the Calibrate button and follow the instructions for creating a custom ColorSync profile that will hopefully solve the green tinge issue. The Apple Display Calibrator Assistant software that launches when you click on the calibrate button will walk you through the process.Assuming that the green tinge is minor and that you don't have a more serious cable or hardware issue, I am hopeful the results will be worth it.

  • Unable to Locate Bridge CS6 for Download.  All I See Is the CC Version, which  Never Works Well With My School Assignments.  Please Tell Me Where I Go to Find this Cuz the PullDown Arrow Is No Longer Available.  BTW - I Didn't See It Listed Under Previous

    All I See Is the CC Version, which  Never Works Well With My School Assignments.  Please Tell Me Where I Go to Find this Cuz the PullDown Arrow Is No Longer Available.  BTW - I Didn't See It Listed Under Previous Versions Either.
    thanks!

    Lyleb64687719 have you utilized the steps listed in CC desktop lists applications as "Up to Date" when not installed - http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html to verify the Creative Suite 6 version was not available?  What type of a Creative Cloud membership do you have?
    You can also download the Creative Suite 6 installation files from Download CS6 products.  Installing any of the applications or suites which include Bridge CS6 should allow Bridge CS6 to install.

  • I have an IPhone 4S and am using the Phonak Icom with my hearing aids. All works well except for when I get an incoming call I can't hear the ringing/ringtone in my aids.  Any solution?

    I have an IPhone 4S and am using the Phonak Icom with my hearing aids. All works well except for when I get an incoming call I can't hear the ringing/ringtone in my aids.  Any solution?

    Did you get any answers?

  • Can anyone help me to find out the problem?

    My purpose is to do five time the product of two random number and user enter the answer each time,but it just keep running again whatever i enter the right or wrong answer,And it cannot verify my answer after the first running(At first time,it works)
    import java.awt.*;
    import javax.swing.*;
    public class Lab10 extends JApplet
    public void paint( Graphics g )
    int
    count = 0,
    num1,
    num2,
    getnum,
    numsum;
    String input,
    output;
    do {
    num1 = 1 + (int) (Math.random() * 9);
    num2 = 1 + (int) (Math.random() * 9);
    numsum = num1 * num2;
    input = JOptionPane.showInputDialog(" What is the product of " + num1 + " and " + num2 + "." );
    getnum = Integer.parseInt(input);
    super.paint( g );
    if (numsum == getnum) {
    g.drawString( "Very good!", 25, 25 );
    else {
    g.drawString( "No,please try again", 40, 40 );
    ++count;
    while ( count < 5);
    }

    This problem may be caused by recursively invocation of paint(Graphics g).
    When you call JOptionPane.showInputDialog, it shows a dialog. If this dialog is right upon the top of your applet, the paint method of your applet is called again. So JOptionPane.showInputDialog is recursively called.
    To test it, you can write down method paint as follows:
    public void paint(Graphics g){
    String input = JOptionPane.showInputDialog("hello");
    And make applet and dialog overlapped, you will see that this method will always run.
    By the way, it's not a wise way to write all the implementations in method paint.You should only write those code relevant to painting in it.

  • HT4897 I don't know previous icloud account  set up on my old ipad, but I think the password was only 6 digits. How do I find out?

    I had set a cloud name and a 6 digit password when I got my first iPad but don't remember name I used. Now I have a new mini ipod trying to give me a new one. What should I do?  Should my apple Id and password be the same as my icloud name and password for all my devices? (My iPhone 4, Apple TV, I touch, and new mini iPad) I'm so confused!!!! Help!?

    Assuming you want to share the same data (such as contacts and calendars) on all your devices, you should use the same iCloud account on all of them.  You can find out the account name by going to Settings>iCloud on your iPhone and looking at the account name listed there in the Account field.  That's the ID you want to use.
    Are you also saying you don't remember the password for the ID?

  • Different results with the same character array.. help me to find out why..

    Hi,
    The following code is giving some unexpected results can anyone explain it...
    *public class A1{*
         public static void main(String[] args)
              char[] a = {'1','2','3','4'};
              System.out.println(a);
    System.out.println(a+"")
    The Result is :
    *1234*
    *(some address of array)*
    Can anyone tell me why it happens that same aray is giving one time the string value and one time an address....
    Edited by: Shenshah on Jun 12, 2008 3:23 AM

    If you look at the API docs you will see that PrintStream has multiple println methods.
    Each of your println calls invokes different one.
    System.out.println(a);calls println(char[]) which according to the docs prints the characters in the array.. ("abcd" in this case)
    System.out.println(a+"") calls println(String). concatenating the empty string to a causes a.toString() to be invoked and the "address info" that you see is the result of that toString() call.

  • The sound of my macbook 10.6.4 is not working since friday, please help me to find out why and how to solve it.. please pleas..

    please help me to solve my problem. my macbook is just 8days old and suddenly the sound is gone..

    I do not know what Leopard Dock is....anything is possible though...
    ....try a NVRAM reset....
    http://support.apple.com/kb/HT1379?viewlocale=en_US

  • I have tried to load iTunes Match onto my computer but it tells me I have reached my 5 limit. I do not have 5 items however I did have one of them stolen. Please can anyone help me to find out what is being counted as my 5

    Please can you help me?
    I have tried to load iTunes Match onto my mac Pro but it tells me I have reached my 5 limit. I do not have 5 items with iTunes match on them so I am confused.
    I have two iMacs a phone and iPod and want to put match onto my pro. Is there anywhere I can go to see which items are actually on there?
    We had a burglary last year and did have an iMac taken is it possible I can see if that is one of the 5 and if so how and where do I look and how can I remove it?
    I will be so grateful if anyone can please help me.
    Many thanks Helen

    In your Itunes account.

  • TS1538 anyone up? cannot figure out why my itunes does not recognize my iphone 4s

    My device locked earlier and now I am trying to sync and restore via the cloud and have no idea. The itunes account is the newest version that came out today but I cannot get the device to be found anyone got some help please?

    Unable to Update or Restore
    http://support.apple.com/kb/HT1808

  • We recently purchased 26 iPads for an elementary lab. THe Apple Configuration tool does not do enough to help us lock students out of the settings folder to keep them from making changes. Is help on the way, or is there a third party solution available?

    If we do not find a viable solution quickly, our district is going to stop purchasing iPads. HELP!

    Unfortunately there isn't a way to completely lock out Settings. Apple designed iPads to be personal devices where user is "King"…which makes it a pain for school tech admins like you and I to manage. Apple only allows certain features and restrictions for 3rd party vendors to work with. So unfortunately there isn't a way to completely lock out Settings by a 3rd party vendor.
    What settings are the kids changing? Perhaps there's a workaround that could help (until Apple makes things more school/enterprise friendly).
    ~Joe
    (a fellow K12 tech)

  • Can't find out why my DB is that big

    I've got a database which is 260 GB in size. Since I know the application behind the DB, I know the DB should never be that big. Even more, one night I noticed that the DB has increased 30 GB where no obviously activity in the application happened.
    The database has multiple tables, but only one of them has the big size of ~260 GB (checked trough Object Explorer Details and by various TSQL-queries). So I know the table for sure, but not the reason of the size of it. It's actual not possible the data
    inside it needs the storage, because the table has only 120'000 rows and only 17 columns. Non of the columns are LOBs, there are only datatypes of uniqueidentifier, int, varchar, nvarchar and datetime. Even when I take the max of 8 KB for a row and multiplicate
    it by 120'000 rows, the database should be smaler than 1 GB.
    I already raised suspiction the index or the statistic could be that big as some queries a had run results a Index-size of 220 GB. Other queries on the other hand results a small index.
    However, meanwhile I've dropped that Index (moreover, the Primary Key behind it) and also dropped the statistics. There is no index at all at moment (I will recreate the PK_Index after the size issue is solved). I tried to shrink the database several
    times, but I doesn't work. The size remains 260 GB. Yesterday I run the sp_clean_db_file_free_space which took 6 hours (!) but also doesen't decrease the database file. At moment I run the sp_clean_db_free_space SP, but I don't believe this will help me.
    So my questions are:
    * How to find out why the database is that big?
    * How to decrease it?
    Has somebody an idea? Thanks...

    What is database recovery model? If it is full can backup the db then backup the log and then issue DBCC SHRINKFILE  to reduce the physical size fo the log file.
    What does it return?
    SELECT      @@SERVERNAME AS SqlServerInstance,
                db.name AS DatabaseName,
                SUM(CASE WHEN af.groupid = 0 THEN 0 ELSE 8192.0E * af.size / 1048576.0E END) AS DatabaseSize,
                SUM(CASE WHEN af.groupid = 0 THEN 8192.0E * af.size / 1048576.0E ELSE 0 END) AS LogSize,
                SUM(8192.0E * af.size / 1048576.0E) AS TotalSize
    FROM        master..sysdatabases AS db
    INNER JOIN master..sysaltfiles AS af ON af.[dbid] = db.[dbid]
    WHERE       db.name NOT IN('distribution', 'Resource', 'master', 'tempdb', 'model', 'msdb')       -- System databases
                AND db.name NOT IN('Northwind', 'pubs', 'AdventureWorks')                 -- Sample databases
    GROUP BY    db.name
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • I have files that may have been created in various versions of Illustrator. We need to be able to open them, but all we have is CS6 suite. I have called and been told that "technicians at adobe" could perform a paid service to find out what the files were

    I have files that may have been created in various versions of Illustrator. We need to be able to open them, but all we have is CS6 suite. I have called and been told that "technicians at adobe" could perform a paid service to find out what the files were created in and get them to be useable in InDesign 6, but I'd need an email address that was registered to our software to give the help desk person. After finding the correct email address, different adobe help number people told me to come here to ask as there is no phone support. Can anyone get me to an adobe technician that can provide a price quote for finding out what created these files and for getting them converted? Thanks.

    Sorry, I understood you to say you had the whole CS6 suite, which includes Illustrator.
    As far as finding out what the files are, sometimes you can look at them in a text editor to figure this out. See below; the, Creator Tool line. Not every software package makes it this easy, though.

  • HT1766 Whenever I try to backup my ipad to iCloud, I get the following error message and can't work out why " the last backup could not be completed" I am connected to my wi FI and iPad off and connected to power. Please can anyone help ?

    Whenever I try to backup my ipad to iCloud, I get the following error message and can't work out why " the last backup could not be completed" I am connected to my wi FI and iPad off and connected to power. Please can anyone help ?

    In settings>general> cellular do you have it  turned ON?

Maybe you are looking for

  • Slow urxvt launching after system migration

    Hi everyone! I've just migrated my arch system to a new computer (I kept my home partition and backed up pacman's cache and /etc as well as a list of packages installed). I manually installed the main packages needed to set up my system, I didn't re

  • No longer backing up to Time Capsule

    My TC is no longer backing up my iMac. When I open System Preferences the Time Machine is on and has the following data: Available 30.7 MB of 463.8 GB Oldest Backup: March 28,2008 Latest Backup March 23, 2009 The back up bar has been spinning for day

  • My ipod touch isn't being recognized by my windows8 computer... HELP!!!!!

    ***???? Why doesn't my Windows8 Computer recognize my ipod?

  • Migrate DB2 on an IBM OS390 VM/CMS mainframe to Oracle on NT

    The migration workbench documentation indicates that DB2 on an AS/400 can be converted to Oracle on NT. Has anyone attempted to convert DB2 on an IBM OS390 to Oracle on NT? Also, the workbench documentation indicates that stored procedures are not co

  • SAP HR Integration with Third Party System

    I want to create Integration between SAP HR and Third party System which will transfer data from SAP PA & OM module to Third Party sofware. The Requirement is ...... there is one TMP table in Third System which needs to be update whene ever there is