Can I make a Mobile site with Muse and then go through PhoneGap?

I would like to use Muse to design a mobile site then use phone gap build to package it as an app.  Is this possible?  I was thinking I could export as HTML and then use those files or even move those to dreamweaver then to phone gap...
Thanks in advance for any ideas/help.

I tried building an App through PhoneGap, but I keep getting a error when I try to create it for IOS.  It asks me for a key? Do I have to be an Apple Developer to create an App for IOS. I don't necessarily want my App going through the App Store, I just want my mobile site to prompt the visitor to click on a button to download the App to their home screen.
Thanks.

Similar Messages

  • Can i make a dating site with dreamweaver

    how can i make a dating site with Dreamweaver ?

    The major dating sites like match.com are the result of thousands of hours of work by many computer programmers, possibly hundreds. Computer programming is not the same as web design. It requires, as Bregent pointed out, significant technical training the generally means a four year college degree.
    When match.com tries to figure out who you should romance, when Google tries to figure out what you are really searching for, even when Netflix tries to give you movie recommendations, very serious database query algorithms go into play that are written by very smart database programmers.
    So if you want to create a dating site for fun, to entertain your friends, refer to some of the suggestions above. Otherwise, have the right skills or be prepared to pay significant money to those who can do.

  • Can you build a mobile website in Muse and redirect to a desktop website which is not built in Muse?

    Hi
    I am looking at the idea of extending my photoshop monthly subscription to one that will give me access to Muse and Illustrator etc. 
    I have been building mobile websites on a mobile platform and then redirecting these to clients desktop sites - this is an option for clients who don't want to go the whole hog with new web design.
    Is it possible to build a mobile website using muse and then redirect this mobile website to an existing desktop site that has not been built on Muse?
    Thanks in advance
    Michele

    You can certainly use Muse for hosting on other hosts as well. You do lose some of the functionality of Business Catalyst such as In Browser Editing. I just saw that you did your current one in Wordpress ... so I assume there is a blog?
    If so, keep in mind that Muse alone does not have a blog feature. You can integrate a Business Catalyst Blog into it with a bit of knowledge on how BC works.
    A couple videos you will want to check out are:
    https://my.adobeconnect.com/p843w8dk0w9?launcher=false&fcsContent=true&pbMode=normal
    and especially;
    https://my.adobeconnect.com/p6wv1sik1gq/?launcher=false&fcsContent=true&pbMode=normal

  • I have created my site with Muse and have uploaded to an external ftp hosting, now my secure log in will not work because I am not using BC. Is there a way to create a secure log in that will work with out being forced to use BC?

    I have created my site with Muse and have uploaded to an external ftp hosting, now my secure log in will not work because I am not using BC. Is there a way to create a secure log in that will work with out being forced to use BC?

    Hi
    Secure Zone login feature will only work if you host your website with Business catalyst.
    Please take a look to this as an alternative
    Password Protect Pages Widget for Adobe Muse
    Also, check this thread,
    Re: Can I create a login/password protection in Muse for a HTML5 page or two?

  • Resize mobile site with muse

    I'm creating a mobile site and I don't know why when I preview the mobile site it pushes the content to the left side of the screen. How can I resize it automatically? Designing the site everything is sized correctly.

    Hi
    Please check if there is any page content frame stretching the page , of if any header or footer item falls out of page area.
    Thanks,
    Sanjit

  • How can I make my Outlook sync with ical and address book on more than one mac?

    It currently syncs with my iMac through 'this computer' folder, but i dont have outlook on my macbook, so basically... how can i make my outlook automatically convert/sync to icloud enabled folders?
    Not too confusing i hope.

    Outlook won't work with iCloud. On your Mac.

  • How can I use my mobile number to send and receive sms through Messages Mac?

    How can I do this? I am in the Philippines. Thanks.

    You can only use your phone number with iMessage if you have got the iPhone. If you have got it, on the Mac, open Messages, go to Messages menu (on the menu bar) > Preferences > Accounts, and tick the phone number

  • How can I store a form name with path and then call form from a table

    Is it possible that any form that I built I store that form in some table in DB and then call that form from table, if yes, then how can i get this functionality. I am not very experience in form and do not know if it can be done because i think if it is possible then this can be a good security for application and easy to handle as well.
    Thanks in advance
    Maz

    If you have a Forms block based on this table:
    declare
      module varchar2(100);
    begin
      module := :block.column;
      call_form ( module ) ;
    end;If you don't have any blok based on that table
    declare
      module varchar2(100);
    begin
      select  module_name
      into module
      from ...
      where ...
      call_form ( module ) ;
    end;Francois

  • How can I make ANY vector  graphics with graphics2D and save on clipboard?

    I am at my wits end here, and need some help. Simply put, I have a program that creates a basic x-y graph, drawn in a jpanel. I want to create the graph as a vector (emf, eps, svg, I don't care anymore, any of them would be good). But, all I get is a jpg or bitmap.
    I tried using the infamous FreeHEP programs, but it won't recognize the output as anything but "image" which means bitmap/jpg.
         The user enters x/y data, clicks a button, which crreates a jpanel thusly:
    public class GraphMaker extends JPanel {
    static BufferedImage image = new BufferedImage(600, 500, BufferedImage.TYPE_INT_ARGB);
    GraphMaker(double[] xVals, double[] yVals, double[] sems){
    setPreferredSize(new Dimension (600,500));     
    symSize = 10;
    XminV = 0;
    XmaxV = 0;
    // code here just converts input x and y's to pixel coordinates, spacing of ticks, etc...
    for (int i =0;i < ArLn; i++){
    gX[i] = xO + (gX[i] * xRat);
    gX[i] -= xStart;
    gY[i] = gY[i] * yRat;
    gY[i] = yEnd - gY;
    semVal[i] = semVal[i]*yRat;
         Ymin = yEnd - (Ymin*yRat);
         Ymax = yEnd - (Ymax*yRat);
    BufferedImage anImage = new BufferedImage(600, 500, BufferedImage.TYPE_INT_ARGB);
    Graphics2D g2 = anImage.createGraphics();
    g2.setBackground(white);
    g2.setColor( Color.WHITE );
    g2.fillRect(0,0,600,500);
    g2.setStroke(stroke);
    // here I use the values to draw lines and circles - nothing spectacular:
              g2.setPaint(Color.blue);
              int ii = 0;
              for ( int j = 0; j < ArLn[ii]; j++ ) {
    g2.fill(new Ellipse2D.Float(LgX[ii][j] - symOffst, gY[ii][j]-symOffst, symSize,symSize));
    g2.draw(new Line2D.Float(LgX[ii][j],(gY[ii][j]-semVal[ii][j]),LgX[ii][j],(gY[ii][j]+semVal[ii][j])));
    g2.draw(new Line2D.Float(LgX[ii][j]-2.0f,(gY[ii][j]-semVal[ii][j]),LgX[ii][j]+2.0f,(gY[ii][j]-semVal[ii][j])));
    g2.draw(new Line2D.Float(LgX[ii][j]-2.0f,(gY[ii][j]+semVal[ii][j]),LgX[ii][j]+2.0f,(gY[ii][j]+semVal[ii][j])));
                        g2.draw(new Line2D.Float(xLoVal[ii],yLoVal[ii],xHiVal[ii],yHiVal[ii]));
    image = anImage;
    And, when the user clicks on the "copy" button, invokes this:
    public class Freep implements Transferable, ClipboardOwner {
         public static final DataFlavor POSTSCRIPT_FLAVOR = new DataFlavor("application/postscript", "Postscript");
         private static DataFlavor[] supportedFlavors = {
              DataFlavor.imageFlavor,
              POSTSCRIPT_FLAVOR,
              DataFlavor.stringFlavor
         private static JPanel chart;
         private int width;
         private int height;
         public Freep(JPanel theGraph, int width, int height) {
              this.theGraph = Graphs;
              this.width = width;
              this.height = height;
    //******This is the key method right here: It is ALWAYS imageFlavor, never anything else. How do I make this an EPS flavor?
         public Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException {
    if (flavor.equals(DataFlavor.imageFlavor)) {
    return GraphMaker.image;
    else if (flavor.equals(POSTSCRIPT_FLAVOR)) {
                   return new ByteArrayInputStream(epsOutputStream().toByteArray());
    else if (flavor.equals(DataFlavor.stringFlavor)) {
                   return epsOutputStream().toString();
              } else{
                   throw new UnsupportedFlavorException(flavor);
         private ByteArrayOutputStream epsOutputStream() throws IOException {
    EPSDocumentGraphics2D g2d = new EPSDocumentGraphics2D(false);
    g2d.setGraphicContext(new org.apache.xmlgraphics.java2d.GraphicContext());
    ByteArrayOutputStream out = new ByteArrayOutputStream();
         public DataFlavor[] getTransferDataFlavors() {
              return supportedFlavors;
         public boolean isDataFlavorSupported(DataFlavor flavor) {
              for(DataFlavor f : supportedFlavors) {
                   if (f.equals(flavor))
                        return true;
              return false;
         public void lostOwnership(Clipboard arg, Transferable arg1) {
    The same happens with FreeHEP - I want the flavor to be EMF, but the program sees an image so it is always imageFlavor. I know I am missing something, but what, I don't know.
    thanks for your help.

    I don't think there's a built-in solution. One workaround I've seen is to create a dummy graphics class that overrides the desired drawing functions. Instead of actually drawing pixels, the object writes postscript commands to a buffer. There also seems to be commercial code that does exactly this.

  • Can't connect to mobile broadband with NetworkManager and Huawei E1550

    Hi,
    I'm trying to connect to mobile broadband internet (3G) using my Huawei E1550 HSDPA USB Stick and NetworkManager but it won't work.
    At first, the LED on the usb device seems to indicate that the connection is established, but immediately afterwards it starts blinking again (which shows that no connection is established).
    nm-applet then tells me that I've been disconnected (although the connection was never established).
    I installed usb_modeswitch and modemmanager and enabled modemmanager with the systemctl command.
    The ID of the device is 12d1:140c, which is supposed to be right after the modeswitch.
    Here is the relevant log:
    [stecklars@Lars-NB ~]$ sudo NetworkManager --no-daemon --log-level=INFO
    NetworkManager[1450]: <warn> (cdc-wdm0): failed to look up interface index
    NetworkManager[1450]: <info> (cdc-wdm0): new Broadband device (driver: 'option1, qmi_wwan' ifindex: 0)
    NetworkManager[1450]: <info> (cdc-wdm0): exported as /org/freedesktop/NetworkManager/Devices/2
    NetworkManager[1450]: <info> (cdc-wdm0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    NetworkManager[1450]: <info> (cdc-wdm0): deactivating device (reason 'managed') [2]
    NetworkManager[1450]: <info> (cdc-wdm0): device state change: unavailable -> disconnected (reason 'none') [20 30 0]
    NetworkManager[1450]: <info> (cdc-wdm0) modem state changed, 'disabled' --> 'enabling' (reason: user-requested)
    NetworkManager[1450]: <info> (cdc-wdm0) modem state changed, 'enabling' --> 'registered' (reason: user-requested)
    NetworkManager[1450]: <info> WWAN now enabled by management service
    NetworkManager[1450]: <info> Activation (cdc-wdm0) starting connection 'Verbindung mit event.vodafone.de'
    NetworkManager[1450]: <info> (cdc-wdm0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    NetworkManager[1450]: <info> NetworkManager state is now CONNECTING
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 1 of 5 (Device Prepare) scheduled...
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 1 of 5 (Device Prepare) started...
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 1 of 5 (Device Prepare) complete.
    NetworkManager[1450]: <info> (cdc-wdm0) modem state changed, 'registered' --> 'connecting' (reason: user-requested)
    NetworkManager[1450]: <info> (cdc-wdm0) modem state changed, 'connecting' --> 'connected' (reason: user-requested)
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 2 of 5 (Device Configure) scheduled...
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 2 of 5 (Device Configure) starting...
    NetworkManager[1450]: <info> (cdc-wdm0): device state change: prepare -> config (reason 'none') [40 50 0]
    NetworkManager[1450]: <info> (cdc-wdm0): bringing up device.
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 2 of 5 (Device Configure) successful.
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 3 of 5 (IP Configure Start) scheduled.
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 2 of 5 (Device Configure) complete.
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 3 of 5 (IP Configure Start) started...
    NetworkManager[1450]: <info> (cdc-wdm0): device state change: config -> ip-config (reason 'none') [50 70 0]
    NetworkManager[1450]: <info> Activation (wwp0s26f7u3i1) Beginning DHCPv4 transaction (timeout in 45 seconds)
    NetworkManager[1450]: <info> dhcpcd started with pid 1596
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 3 of 5 (IP Configure Start) complete.
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 4 of 5 (IPv6 Configure Timeout) started...
    NetworkManager[1450]: <info> Activation (cdc-wdm0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
    dhcpcd[1596]: version 6.0.5 starting
    dhcpcd[1596]: wwp0s26f7u3i1: soliciting an IPv6 router
    dhcpcd[1596]: wwp0s26f7u3i1: ipv6rs_sendprobe: sendmsg: Cannot assign requested address
    NetworkManager[1450]: <info> (wwp0s26f7u3i1): DHCPv4 state changed nbi -> preinit
    dhcpcd[1596]: wwp0s26f7u3i1: soliciting a DHCP lease
    dhcpcd[1596]: wwp0s26f7u3i1: removing interface
    NetworkManager[1450]: <info> (wwp0s26f7u3i1): DHCPv4 state changed preinit -> stop
    NetworkManager[1450]: <info> (cdc-wdm0): device state change: ip-config -> unmanaged (reason 'removed') [70 10 36]
    NetworkManager[1450]: <info> (cdc-wdm0): deactivating device (reason 'removed') [36]
    dhcpcd[1596]: exited
    NetworkManager[1450]: <info> (wwp0s26f7u3i1): canceled DHCP transaction, DHCP client pid 1596
    NetworkManager[1450]: <warn> (12) failed to find interface name for index
    NetworkManager[1450]: nm_system_iface_flush_routes: assertion 'iface != NULL' failed
    NetworkManager[1450]: <warn> (12) failed to find interface name for index
    NetworkManager[1450]: <warn> (12) failed to find interface name for index
    NetworkManager[1450]: nm_system_iface_flush_routes: assertion 'iface != NULL' failed
    NetworkManager[1450]: <warn> (12) failed to find interface name for index
    NetworkManager[1450]: <info> (cdc-wdm0): cleaning up...
    NetworkManager[1450]: <info> (cdc-wdm0): taking down device.
    NetworkManager[1450]: <info> NetworkManager state is now DISCONNECTED
    NetworkManager[1450]: <warn> (pid 1596) unhandled DHCP event for interface wwp0s26f7u3i1
    NetworkManager[1450]: <warn> (cdc-wdm0) failed to disconnect modem: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface 'org.freedesktop.ModemManager1.Modem.Simple' on object at path /org/freedesktop/ModemManager1/Modem/1
    I'd be thankful if you could help me.
    Lars

    Here is the relevant part of dmesg, when the connection drops:
    [ 1300.891794] option1 ttyUSB0: option_instat_callback: error -108
    [ 1300.892296] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
    [ 1300.892316] option 4-3:1.0: device disconnected
    [ 1300.894497] qmi_wwan 4-3:1.1 wwp0s26f7u3i1: unregister 'qmi_wwan' usb-0000:00:1a.7-3, WWAN/QMI device
    [ 1300.906958] option1 ttyUSB1: usb_wwan_indat_callback: resubmit read urb failed. (-2)
    [ 1300.906966] option1 ttyUSB1: usb_wwan_indat_callback: resubmit read urb failed. (-2)
    [ 1300.906969] option1 ttyUSB1: usb_wwan_indat_callback: resubmit read urb failed. (-2)
    [ 1300.912513] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
    [ 1300.912535] option 4-3:1.3: device disconnected
    [ 1300.912830] option1 ttyUSB2: usb_wwan_indat_callback: resubmit read urb failed. (-2)
    [ 1300.912837] option1 ttyUSB2: usb_wwan_indat_callback: resubmit read urb failed. (-2)
    [ 1300.912840] option1 ttyUSB2: usb_wwan_indat_callback: resubmit read urb failed. (-2)
    [ 1300.917744] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
    [ 1300.917759] option 4-3:1.4: device disconnected
    [ 1301.787207] hub 4-0:1.0: Cannot enable port 3.  Maybe the USB cable is bad?
    [ 1302.653814] hub 4-0:1.0: Cannot enable port 3.  Maybe the USB cable is bad?
    [ 1303.520436] hub 4-0:1.0: Cannot enable port 3.  Maybe the USB cable is bad?
    [ 1304.387195] hub 4-0:1.0: Cannot enable port 3.  Maybe the USB cable is bad?
    [ 1304.387273] usb 4-3: USB disconnect, device number 20
    [ 1304.993295] usb 4-3: new high-speed USB device number 22 using ehci-pci
    [ 1305.132944] option 4-3:1.0: GSM modem (1-port) converter detected
    [ 1305.133319] usb 4-3: GSM modem (1-port) converter now attached to ttyUSB0
    [ 1305.137914] qmi_wwan 4-3:1.1: cdc-wdm0: USB WDM device
    [ 1305.138503] qmi_wwan 4-3:1.1 wwan0: register 'qmi_wwan' at usb-0000:00:1a.7-3, WWAN/QMI device, ea:38:f6:b1:32:0b
    [ 1305.138955] option 4-3:1.3: GSM modem (1-port) converter detected
    [ 1305.139320] usb 4-3: GSM modem (1-port) converter now attached to ttyUSB1
    [ 1305.139537] option 4-3:1.4: GSM modem (1-port) converter detected
    [ 1305.139717] usb 4-3: GSM modem (1-port) converter now attached to ttyUSB2
    [ 1305.139997] usb-storage 4-3:1.5: USB Mass Storage device detected
    [ 1305.140144] scsi33 : usb-storage 4-3:1.5
    [ 1305.143268] usb-storage 4-3:1.6: USB Mass Storage device detected
    [ 1305.144927] scsi34 : usb-storage 4-3:1.6
    [ 1305.183447] systemd-udevd[1917]: renamed network interface wwan0 to wwp0s26f7u3i1
    [ 1306.157713] scsi 33:0:0:0: CD-ROM            HUAWEI   Mass Storage     2.31 PQ: 0 ANSI: 2
    [ 1306.161464] scsi 34:0:0:0: Direct-Access     HUAWEI   MMC Storage      2.31 PQ: 0 ANSI: 2
    [ 1306.168217] sr0: scsi-1 drive
    [ 1306.168445] sr 33:0:0:0: Attached scsi CD-ROM sr0
    [ 1306.178582] sd 34:0:0:0: [sdc] Attached SCSI removable disk
    EDIT: Wow, got it working using wvdial. Would prefer to use NetworkManager and ModemManager, however. Any idea why it isn't working using those?
    Last edited by stecklars (2014-01-23 18:50:45)

  • Clarification about building a mobile site on muse to connect to a non muse site..

    Hi
    I thought that this was possible, as  I asked a while back and was kindly answered by Brad, a very helpful man at Adobe .
    What I would like clarified is if I build a mobile site on muse and then take it to another hosting platform and build a subdomain m.mywebsite.com, could I put the mobile site on this subdomain, so that it lives happily alongside mywebsite.com?  I realise that I would need a redirect script to make this work and I do realise I would lose some of the functionality that I would have had if keeping on business catalyst.
    I know that there are mobile website builders out there which could be used, but they cannot produce such diverse mobile websites as muse can.
    Looking forward to any feedback
    Thank you
    Michele 

    Hi Michele,
    First thanks for the compliment ;-) (I don't work for Adobe - just hang out here)
    What you can do if I understand correctly is:
    build your site as you normally would in Muse.
    go into your domain host and redirect the m.mysite.com to the 'phone' folder of the site
    by doing that site users that enter the domain with the mobile URL will go to the phone version
    One more step ... add the following code to the head meta of your mobile template
    <meta http-equiv="refresh" content="0;url=http://m.mysite.com"/>
    That should do what you want. Let me know how you make out.

  • Problem when i publish my web site with muse

    i have an erreur inconnu when i want to wruite my pass word
    i had changed my adobe ID
    it is reconise by BC

    Yes i had restart Muse and my mac. I have no more message than a red hexagon with an exclamation point and the message : "erreur inconnue" no number nothing more.
    Best regards
    Le 8 mai 2014 à 16:24, Aishvarya Raj Rastogi <[email protected]> a écrit :
    I can't publish my web site with Muse because of an "error inconnu . I have my ID Adobe and my pass word. But i have an error message " erreur inconnu" Business catalyst tell me that my ID and pass word are ok. so wath ?
    created by Aishvarya Raj Rastogi in Help with using Adobe Muse CC - View the full discussion
    Hi,
    Have you tried restarting Muse and your computer? If not, please try it. If you still face the problem, please provide us the complete error message and we'll look into it.
    Regards,
    Aish
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6365165#6365165
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • I want to make a new site in dreamweaver and host it on business cstalyst

    I want to make a NEW site in Dreamweaver CC and host it on the Business Catalyst platform.But it seems the only way to use dreamweaver in business Catalyst is to import a BC template into Dreamweaver then upload it to BC. I want to create an original site and use the BC platform, is that possible? This seems like it should be simple and automatic, even encouraged. But as of now the only way to create an original site is to use Adobe Muse. Which is weird, seems like Adobe missed this one somewhere...

    I don't think you understand: I want to open Dreamweaver and build a brand new site, then when I am done I want to host the dreamweaver site on the Business Catalyst platform. I dont want to use anything in BC to build the site, I just want to use the hosting platform. I do not want to import a BC site into dreamweaver or anything like that. I just want to use BC the same way I would use godaddy, or uhost or any other hosting provider. Based on your response you said that "of course its possible to build a BC site in Dreamweaver" I dont want to build a BC site, I want to build a Dreamweaver site and host it on the BC platform. Like I said before it doesnt seem like this is possible. As of now we can only build a new site in MUSE and integrate it into BC without using a BC template. Can you understand what I am saying. I DONT WANT TO USE A BC TEMPLATE, I WANT NOTHING TO DO WITH BC WHILE I AM BUILDING THE SITE WITH DREAMWEAVER, JUST LIKE MUSE DOES.

  • How make dynamic site with MUSE

    Howdy, i want ask how make dynamic site with muse, can it intergated with CMS like wordpress, joomla, drupal etc?
    Thanks,
    best regard,
    harles

    Hello Harles,
    The CMS functionality till now is only supported with Muse while using Business Catalyst as host.
    Please refer to forum posts : http://forums.adobe.com/message/4418294?tstart=0 and http://forums.adobe.com/message/4776241#4776241 .
    Hope this helps.
    Regards,
    Sachin

  • How Can I Make a Membership Website With Adobe Muse? Like Youtube, Facebook, Twitter.

    How Can I Make a Membership Website With Adobe Muse? Like Youtube, Facebook, Twitter. I need help!

    Yeah me too

Maybe you are looking for

  • External hardrive not workon on MacBook Pro

    I own a Seagate FreeAgent GoFlex that is 1TB and have had it for about 3 or 4 years. I used to be able to plug it in and with ease insert files (pictures, music, documents, etc .. basically everything in case my MacBook stops functioning.) Back in Ma

  • How do I create a local account from a network login from the command line?

    I am connecting to my organization's domain using 3rd party software which doesn't allow for using the GUI for creating local accounts.  How can I do this through the command line or is there a better way to script it?  Thanks in advance!

  • Same Output through BPM

    Hi, I have used the Switch condition in BPM to determine the receiver from the IDOC. 1) I am getting the same output(same content) for both the receivers though i have given the filter condition in the BPM. 2) In SXMB_MONI i get 3 messages, the first

  • Adding values

    Hi I have idoc to file scenario. Purchase order idoc. I want to add the line item values and populate a field on the header structure. Line item 10   100£ Line item 20   100£ Line item 30   200£ The field in the header is sum_item_value. The result a

  • App-V depreciate product for future used

    Hi, A Microsoft consultant yesterday is came to our office. We were planning to deploy a RDS form for RemoteApps, but to push the apps the RDS servers with App-V 5.0 sp2. The Microsoft Consultant had announced that App-V was at Microsoft now a deprec